├── .gitignore ├── README.org └── posts.org /.gitignore: -------------------------------------------------------------------------------- 1 | notes/ 2 | emacs/ 3 | org-mode/ -------------------------------------------------------------------------------- /README.org: -------------------------------------------------------------------------------- 1 | #+TITLE: Posts 2 | #+AUTHOR: Tony aldon 3 | 4 | * About 5 | 6 | The posts about "emacs/elisp" that I publish on the subreddit 7 | [[https://www.reddit.com/r/emacs/][r/emacs]] in an org document. 8 | 9 | * Install 10 | 11 | The posts are in the file [[./posts.org]] and this file is meant to be 12 | read inside Emacs. 13 | 14 | To make the internal local links to Emacs and Org-mode repositories 15 | work correctly, make sure to clone those repositories. 16 | 17 | A clean procedure to get started with this document is: 18 | 19 | #+BEGIN_SRC bash 20 | git clone https://github.com/tonyaldon/posts 21 | cd posts 22 | git clone git://git.sv.gnu.org/emacs.git 23 | git clone https://git.savannah.gnu.org/git/emacs/org-mode.git 24 | #+END_SRC 25 | 26 | * Read the posts on Reddit 27 | 28 | - [2022-05-11 Wed] [[https://www.reddit.com/r/emacs/comments/une2d8/orgmode_links_in_2022_implementation_packages/][org-mode links in 2022: implementation, packages, articles and videos | THIS IS EMACS]] 29 | - [2022-05-06 Fri] [[https://www.reddit.com/r/emacs/comments/ujpq3s/orgstorelink_powerful_and_flexible_this_is_emacs/][org-store-link... powerful and flexible | THIS IS EMACS]] 30 | - [2022-05-04 Wed] [[https://www.reddit.com/r/emacs/comments/ui8eiq/orgmode_links_everywhere_not_only_in_orgmode/][org-mode links everywhere, not only in org-mode buffers | THIS IS EMACS]] 31 | - [2022-04-29 Fri] [[https://www.reddit.com/r/emacs/comments/uenjjs/link_to_a_git_commit_from_org_mode_using_magit/][Link to a git commit from Org mode using Magit | THIS IS EMACS]] 32 | - [2022-04-27 Wed] [[https://www.reddit.com/r/emacs/comments/ud75wt/full_example_of_orgmode_links_internal_links_and/][FULL example of org-mode links: internal links and search options]] 33 | - [2022-04-22 Fri] [[https://www.reddit.com/r/emacs/comments/u9e9r3/programming_with_elisp_is_magic/][Programming with Elisp is magic]] 34 | - [2022-04-19 Tue] [[https://www.reddit.com/r/emacs/comments/u6yibf/if_you_have_never_used_wgrep_with_rgel_to_rename/][If you have never used wgrep with rg.el to rename a function in several files, try it | that will blow your mind]] 35 | - [2022-04-15 Fri] [[https://www.reddit.com/r/emacs/comments/u4c5rc/ripgrep_is_fantastic_emacs_is_fantastic_boom_you/][Ripgrep is fantastic | Emacs is fantastic | BOOM you get the fantastic rg.el]] 36 | - [2022-04-13 Wed] [[https://www.reddit.com/r/emacs/comments/u2u229/dont_explain_show_me_examples_a_tour_of_the/][Don't explain, show me examples! A tour of the catch/throw pattern in the Emacs source code]] 37 | - [2022-04-09 Sat] [[https://www.reddit.com/r/emacs/comments/tznia8/did_you_know_that_org_links_in_property_drawers/][Did you know that Org links in property drawers are not links?]] 38 | - [2022-04-04 Mon] [[https://www.reddit.com/r/emacs/comments/tw3fpu/search_options_in_file_links_link_abbreviations/][Search options in file links | link abbreviations | COME WITH ME on this JOURNEY into the heart of the command org-open-at-point]] 39 | - [2022-03-22 Tue] [[https://www.reddit.com/r/emacs/comments/tk8qou/org_speed_keys_boom_great_orgmodes_feature_and_a/][Org Speed Keys! BOOM! Great org-mode's feature! And a good OPPORTUNITY to talk about self-insert-command]] 40 | - [2022-03-11 Fri] [[https://www.reddit.com/r/emacs/comments/tblodh/did_you_know_that_orgmodes_source_code_contains/][Did you know that org-mode's source code contains more than 5000 examples?]] 41 | - [2022-03-05 Sat] [[https://www.reddit.com/r/emacs/comments/t7doal/i_bet_you_use_hllinemode_do_you_know_how_it_works/][I bet you use hl-line-mode... Do you know how it works? Overlays, post-command-hook and only 5 functions!!!]] 42 | - [2022-02-26 Sat] [[https://www.reddit.com/r/emacs/comments/t1r2wq/have_you_ever_wondered_how_orgmode_toggles_the/][Have you ever wondered how org-mode toggles the visibility of headings?]] 43 | - [2022-02-20 Sun] [[https://www.reddit.com/r/emacs/comments/swvbmm/you_want_to_write_a_custom_org_backend_lets_write/][You want to write a custom org backend? let's write onlybold backend together to get you started]] 44 | - [2022-02-11 Fri] [[https://www.reddit.com/r/emacs/comments/sq1esz/some_examples_on_closures_and_lexicalbinding/][Some examples on closures and lexical-binding]] 45 | --------------------------------------------------------------------------------