https://webapps.stackexchange.com/questions/105958/find-the-most-liked-tweet-from-an-account
https://twitter.com/search?q=from%3Atheshawwn%20min_faves%3A60&src=typed_query&f=live
https://orgmode.org/worg/org-tutorials/org4beginners.html
;------------------------------------------------------------ ; org mode ; https://orgmode.org/worg/org-tutorials/org4beginners.html#org9825076 ;------------------------------------------------------------ ;; Enable transient mark mode (transient-mark-mode 1) ;;;;Org mode configuration ;; Enable Org mode (require 'org) ;; Make Org mode work with files ending in .org ;; (add-to-list 'auto-mode-alist '("\\.org$" . org-mode)) ;; The above is the default in recent emacsen ;; https://www.reddit.com/r/emacs/comments/4golh1/how_to_auto_export_html_when_saving_in_orgmode/ (defun toggle-org-markdown-export-on-save () (interactive) (if (memq 'org-md-export-to-markdown after-save-hook) (progn (remove-hook 'after-save-hook 'org-md-export-to-markdown t) (message "Disabled org markdown export on save for current buffer...")) (add-hook 'after-save-hook 'org-md-export-to-markdown nil t) (message "Enabled org markdown export on save for current buffer..."))) (add-hook 'org-mode-hook #'toggle-org-markdown-export-on-save) ;; https://emacs.stackexchange.com/questions/19945/command-to-insert-code-block ;; <s then TAB (require 'org-tempo)
https://www.reddit.com/r/emacs/comments/4golh1/how_to_auto_export_html_when_saving_in_orgmode/
https://emacs.stackexchange.com/questions/19945/command-to-insert-code-block
(require 'org-tempo) ;; then type <s followed by TAB
https://orgmode.org/guide/Hyperlinks.html
[[example.com][Example]]
http://members.optusnet.com.au/~charles57/GTD/gtd_workflow.html
Usually org-mode only exports up to 3 nestings deep. To export all headlines, no matter how deeply, add this to the top of the org file:
#+OPTIONS: H:10
Deeply nested ToC test
Deeply nested ToC test
Deeply nested ToC test
Deeply nested ToC test
Deeply nested ToC test