mirror of
https://github.com/not-kennethreitz/convore.json.git
synced 2026-06-21 15:40:58 +00:00
1 line
11 KiB
JSON
1 line
11 KiB
JSON
[{"user_id": 242, "stars": [{"date_created": 1297149679.9840989, "user_id": 561}, {"date_created": 1297281769.4244249, "user_id": 1642}], "topic_id": 1621, "date_created": 1296683734.94806, "message": "https://github.com/dreid/emacs-config It's an attempt at minimal. All external package dependencies are fetched using el-get.", "group_id": 83, "id": 43009}, {"user_id": 242, "stars": [], "topic_id": 1621, "date_created": 1296684552.4716699, "message": "Also I find el-get recipes very intuitive. el-get's main page also gave way more information that package.el's.", "group_id": 83, "id": 43049}, {"user_id": 218, "stars": [], "topic_id": 1621, "date_created": 1296684281.083034, "message": "@dreid why el-get rather than package.el?", "group_id": 83, "id": 43038}, {"user_id": 242, "stars": [], "topic_id": 1621, "date_created": 1296684613.438261, "message": "But as I've said, there is nothing to prevent me from using the two together. el-get just seemed like less work at the exact instance I rewrote my 10 year old emacs configs.", "group_id": 83, "id": 43054}, {"user_id": 242, "stars": [], "topic_id": 1621, "date_created": 1296684513.5751109, "message": "When I first looked at them both el-get had more recipes for stuff I cared about and el-get can also use elpa as a source.", "group_id": 83, "id": 43047}, {"user_id": 218, "stars": [], "topic_id": 1621, "date_created": 1296684556.3289411, "message": "http://marmalade-repo.org/ -- fwiw", "group_id": 83, "id": 43050}, {"user_id": 277, "stars": [], "topic_id": 1621, "date_created": 1297170297.6169169, "message": "or, you could define this macro", "group_id": 83, "id": 49233}, {"user_id": 278, "stars": [], "topic_id": 1621, "date_created": 1297138867.3077171, "message": "a relatively new emacsen. I've got a comfy set up. I open to suggestions like `you're doing it wrong` github.com/softprops/em", "group_id": 83, "id": 48923}, {"user_id": 561, "stars": [], "topic_id": 1621, "date_created": 1297149699.7762139, "message": "I'm giddy for pretty-mode", "group_id": 83, "id": 49179}, {"user_id": 218, "stars": [], "topic_id": 1621, "date_created": 1297167664.963814, "message": "@softprops You should likely not be checking in your *.elc files", "group_id": 83, "id": 49210}, {"user_id": 218, "stars": [], "topic_id": 1621, "date_created": 1297167785.2883511, "message": "also, instead of", "group_id": 83, "id": 49212}, {"user_id": 218, "stars": [], "topic_id": 1621, "date_created": 1297167786.990979, "message": "(add-to-list 'auto-mode-alist '(\"\\\\.js$\" . js2-mode))\n(add-to-list 'auto-mode-alist '(\"\\\\.json$\" . js-mode))", "group_id": 83, "id": 49213}, {"user_id": 218, "stars": [], "topic_id": 1621, "date_created": 1297167790.236799, "message": "you can do...", "group_id": 83, "id": 49214}, {"user_id": 218, "stars": [], "topic_id": 1621, "date_created": 1297167833.197386, "message": "(add-to-list 'auto-mode-alist '((\"\\\\.js$\" . js2-mode) (\"\\\\.json$\" . js-mode)))", "group_id": 83, "id": 49215}, {"user_id": 218, "stars": [], "topic_id": 1621, "date_created": 1297167843.196079, "message": "errr.", "group_id": 83, "id": 49216}, {"user_id": 218, "stars": [], "topic_id": 1621, "date_created": 1297167886.7966161, "message": "(setq auto-mode-alist (append '((\"\\\\.js$\" . js2-mode) (\"\\\\.json$\" . js-mode)))", "group_id": 83, "id": 49217}, {"user_id": 277, "stars": [], "topic_id": 1621, "date_created": 1297169294.5689969, "message": "(setq auto-mode-alist (append ...)) will kill the original auto-mode-alist, so that's not good.", "group_id": 83, "id": 49225}, {"user_id": 277, "stars": [], "topic_id": 1621, "date_created": 1297169632.8002319, "message": "You could however do (setq auto-mode-alist (append '((\"\\\\.js$\" . js2-mode)) '((\"\\\\.json$\" . js-mode)) auto-mode-alist))", "group_id": 83, "id": 49226}, {"user_id": 218, "stars": [], "topic_id": 1621, "date_created": 1297170213.064563, "message": "yea, that's what I have on mine.", "group_id": 83, "id": 49227}, {"user_id": 218, "stars": [], "topic_id": 1621, "date_created": 1297170217.7595861, "message": "Just a pain in the ass to type here.", "group_id": 83, "id": 49228}, {"user_id": 218, "stars": [], "topic_id": 1621, "date_created": 1297170238.2559171, "message": "http://i.imgur.com/p0hEh.png", "group_id": 83, "id": 49229}, {"user_id": 218, "stars": [], "topic_id": 1621, "date_created": 1297170242.6211009, "message": "bah!", "group_id": 83, "id": 49230}, {"user_id": 218, "stars": [], "topic_id": 1621, "date_created": 1297170259.1800561, "message": "http://i.imgur.com/C7Faf.png", "group_id": 83, "id": 49231}, {"user_id": 218, "stars": [], "topic_id": 1621, "date_created": 1297170268.6524601, "message": "/me grumbles at imagemagick", "group_id": 83, "id": 49232}, {"user_id": 277, "stars": [], "topic_id": 1621, "date_created": 1297170298.6506369, "message": "(defmacro add-all-to-list (l &rest rest)\n (let ((adds (mapcar (lambda (x)\n `(add-to-list l ,x))\n rest)))\n `(progn ,@adds)))", "group_id": 83, "id": 49234}, {"user_id": 277, "stars": [], "topic_id": 1621, "date_created": 1297170343.7540159, "message": "and then do (add-all-to-list auto-mode-alist '(\"\\\\.js$\" . js2-mode) '(\"\\\\.json$\" . js-mode))", "group_id": 83, "id": 49235}, {"user_id": 277, "stars": [], "topic_id": 1621, "date_created": 1297170366.0519061, "message": "which will expand into an (add-to-list ...) call for each argument", "group_id": 83, "id": 49236}, {"user_id": 218, "stars": [], "topic_id": 1621, "date_created": 1297170497.8218279, "message": "I should really attempt to figure out macros one of these days.....", "group_id": 83, "id": 49237}, {"user_id": 277, "stars": [], "topic_id": 1621, "date_created": 1297170664.9206779, "message": "shows: (progn (add-to-list l (quote (hello))) (add-to-list l (quote (world))))", "group_id": 83, "id": 49242}, {"user_id": 277, "stars": [], "topic_id": 1621, "date_created": 1297170972.661375, "message": "and use: (add-all-to-list 'ttt 'hello 'world)", "group_id": 83, "id": 49247}, {"user_id": 277, "stars": [], "topic_id": 1621, "date_created": 1297170560.7410851, "message": "the concept is simple. it's a program that writes other programs at compile time.", "group_id": 83, "id": 49238}, {"user_id": 277, "stars": [], "topic_id": 1621, "date_created": 1297170606.8086569, "message": "the great thing is that you can use all the other stuff defined, like mapcar in this example to construct the forms you want to output.", "group_id": 83, "id": 49239}, {"user_id": 277, "stars": [], "topic_id": 1621, "date_created": 1297170638.8766561, "message": "if you do (setq ttt '()) first...", "group_id": 83, "id": 49240}, {"user_id": 277, "stars": [], "topic_id": 1621, "date_created": 1297170641.093605, "message": "(macroexpand '(add-all-to-list ttt '(hello) '(world)))", "group_id": 83, "id": 49241}, {"user_id": 277, "stars": [], "topic_id": 1621, "date_created": 1297170808.2111361, "message": "it'd probably be better to define add-all-to-list as a function in all honesty, but whatever", "group_id": 83, "id": 49243}, {"user_id": 277, "stars": [], "topic_id": 1621, "date_created": 1297170961.3063979, "message": "which, you could define:", "group_id": 83, "id": 49245}, {"user_id": 277, "stars": [], "topic_id": 1621, "date_created": 1297170961.950429, "message": "(defun add-all-to-list (l &rest rest)\n (dolist (elt rest l)\n (add-to-list l elt)))", "group_id": 83, "id": 49246}, {"user_id": 216, "stars": [], "topic_id": 1621, "date_created": 1297173000.7286141, "message": "lisp is the cat's meow. So powerful", "group_id": 83, "id": 49251}, {"user_id": 218, "stars": [], "topic_id": 1621, "date_created": 1297174650.0606511, "message": "I get the concept of macros.. just haven't written one before (or rather don't know when I should write one)", "group_id": 83, "id": 49278}, {"user_id": 242, "stars": [{"date_created": 1297191503.5431299, "user_id": 561}, {"date_created": 1297193977.329011, "user_id": 277}], "topic_id": 1621, "date_created": 1297188833.1019571, "message": "Clearly convore needs to support auto embedding of gists. Reading your non indented non-syntax-highlighted elisp is making my head hurt.", "group_id": 83, "id": 49378}, {"user_id": 561, "stars": [], "topic_id": 1621, "date_created": 1297191501.2019441, "message": "@dreid *excellent* idea.", "group_id": 83, "id": 49402}, {"user_id": 218, "stars": [], "topic_id": 1621, "date_created": 1297191611.5484951, "message": "I totally said that first ;)", "group_id": 83, "id": 49408}, {"user_id": 561, "stars": [], "topic_id": 1621, "date_created": 1297191635.5107191, "message": "oh. my bad.", "group_id": 83, "id": 49410}, {"user_id": 218, "stars": [], "topic_id": 1621, "date_created": 1297191640.874717, "message": "https://convore.com/feedback/code-formatting/", "group_id": 83, "id": 49411}, {"user_id": 218, "stars": [], "topic_id": 1621, "date_created": 1297191648.1693201, "message": ":-P no worries. not like it actually matters.", "group_id": 83, "id": 49412}, {"user_id": 222, "stars": [], "topic_id": 1621, "date_created": 1297219590.234565, "message": "@dreid oembed! ;)", "group_id": 83, "id": 50118}, {"user_id": 2583, "stars": [], "topic_id": 1621, "date_created": 1297292731.3121531, "message": "Would love to get feedback on my config: http://github.com/bkudria/dotfiles. See .emacs and .emacs.d/", "group_id": 83, "id": 59735}, {"user_id": 218, "stars": [], "topic_id": 1621, "date_created": 1297304026.489774, "message": "@bkudria You should move ~/.emacs to ~/.emacs.d/init.el", "group_id": 83, "id": 63149}, {"user_id": 218, "stars": [], "topic_id": 1621, "date_created": 1297304050.530797, "message": "also, marmalade has lots of good elpa packages", "group_id": 83, "id": 63154}, {"user_id": 278, "stars": [], "topic_id": 1621, "date_created": 1297367862.3619621, "message": "thanks for the tips guys. you rock", "group_id": 83, "id": 73576}, {"user_id": 277, "stars": [], "topic_id": 1621, "date_created": 1297368792.4117141, "message": "@justinlilly re: when to use a macro. \"never use a macro when a function will do\"", "group_id": 83, "id": 73699}, {"user_id": 2583, "stars": [], "topic_id": 1621, "date_created": 1297379272.6635571, "message": "@justinlilly Good idea, thanks.", "group_id": 83, "id": 75754}, {"user_id": 3276, "stars": [], "topic_id": 1621, "date_created": 1298255894.821548, "message": "@dried: Thanks for the motivation, I've got a git branch with my Emacs config that is half converted to using el-get. I should get back to that. I want moving my Emacs configuration and setup to a new machine be a lot easier than it currently is.", "group_id": 83, "id": 155658}, {"user_id": 16058, "stars": [], "topic_id": 1621, "date_created": 1298666745.465879, "message": "https://github.com/myfreeweb/emacs - all packages are git submodules, lots of textmate-inspired cool stuff", "group_id": 83, "id": 211162}] |