https://github.com/akicho8/memo_station
Emacs synchronized memo management rails application
https://github.com/akicho8/memo_station
emacs emacs-lisp memo memo-application rails ruby
Last synced: 2 months ago
JSON representation
Emacs synchronized memo management rails application
- Host: GitHub
- URL: https://github.com/akicho8/memo_station
- Owner: akicho8
- Created: 2013-05-18T15:24:35.000Z (about 13 years ago)
- Default Branch: main
- Last Pushed: 2025-12-23T08:53:01.000Z (6 months ago)
- Last Synced: 2025-12-24T22:55:09.457Z (6 months ago)
- Topics: emacs, emacs-lisp, memo, memo-application, rails, ruby
- Language: Ruby
- Homepage:
- Size: 1.78 MB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 14
-
Metadata Files:
- Readme: README.org
Awesome Lists containing this project
README
* MemoStation
Emacs synchronized memo management rails application.
** Setup
#+BEGIN_SRC shell
setup
open http://localhost:3000/
#+END_SRC
** Deployment
#+BEGIN_SRC shell
cap production deploy
#+END_SRC
** Emacs Interface
#+BEGIN_SRC shell
(load "~/src/memo_station/lib/memo-station.el")
#+END_SRC
[[https://github.com/tkf/emacs-request][request.el]] and [[https://github.com/magnars/s.el][s.el]] installation not installed.
#+BEGIN_EXAMPLE
M-x package-install request
M-x package-install s
#+END_EXAMPLE
Add the following in your =.emacs= file: (example)
#+BEGIN_SRC elisp
(require 'memo-station)
(setq memo-station-url "http://memo/")
(global-unset-key "\C-j")
(global-set-key (kbd "C-j w") 'memo-station-create)
(global-set-key (kbd "C-j s") 'memo-station-search)
#+END_SRC