https://github.com/zevlg/emacs-stuff
Emacs stuff i've written
https://github.com/zevlg/emacs-stuff
Last synced: 3 months ago
JSON representation
Emacs stuff i've written
- Host: GitHub
- URL: https://github.com/zevlg/emacs-stuff
- Owner: zevlg
- Created: 2011-10-21T18:57:39.000Z (over 14 years ago)
- Default Branch: master
- Last Pushed: 2018-04-27T11:27:27.000Z (about 8 years ago)
- Last Synced: 2025-03-12T21:49:13.059Z (over 1 year ago)
- Language: Emacs Lisp
- Homepage:
- Size: 329 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
README
Collection of Emacs major/minor modes, utilities and other stuff that
I've written.
* wordfreq.el - provides simple interface:
(wordfreq-find "word")
==> ("word" 336 275 0.0271)
Return word frequency index according to, i forgot which one,
criteria.
* eukleides.el - Major mode/interface to A Euklidean Geometry Drawing
Language (http://www.eukleides.org/)
Lots of features, screenshot -
http://lgarc.narod.ru/pics/eukleides.png
* sudoku.el - Simple yet powerful sudoku game.
Huge bunch of features, including game generation, puzzle editor,
step-by-step deducer, PostScript generator, etc etc.
Post about sudoku.el, with screenshots:
http://sxemacs-en.blogspot.com/2009/12/sudoku-for-sxemacs_27.html
* wand-button.el - Nifty buttons generator.
Buttons generator using ffi-wand
http://sxemacs-en.blogspot.com/2009/12/buttons-generator_6806.html
* wand-diagram.el - gnuplot like diagram generator.
Screenshot - http://lgarc.narod.ru/pics/wandiag1.png
* himarks-mode.el - Minor mode to highlight markers in the buffer.
* ofupd.el - One file updater.
Tracks remote file's version and updates it locally on request.
Example:
(ofupd-register "active-menu" "~/etp/active-menu.el"
"http://www.skamphausen.de/cgi-bin/ska/download/active-menu.el"
#'ofupd-ve-version-colon)
* pegc-ffi.el - FFI to pegc library. Example:
(let ((srules (pegc-intern-ruleset
'((sentence (and (opt article) subject verb
(and (opt preposition) (opt article)
(or object (and object preposition)))))
(article (and spaces (or (str "the") (str "an") (str "a"))))
(preposition (and spaces (or (str "on") (str "at") (str "to")
(str "with"))))
(subject (and spaces (or (str "man") (str "men") (str "dog")
(str "dogs") (str "cat"))))
(verb (and spaces (or (str "sat") (str "saw") (str "shot")
(str "gave"))))
(object (and spaces (or (str "cannon") (str "hat") (str "mat"))))
))))
(pegc-parse (pegc-create-parser "the cat sat on the hat") srules))
==>
t
... more stuff on the go ...