Skip to content

Instantly share code, notes, and snippets.

@adelin-b
Last active January 6, 2021 18:39
Show Gist options
  • Save adelin-b/cdce05c658f730bb466c319e54bda462 to your computer and use it in GitHub Desktop.
Save adelin-b/cdce05c658f730bb466c319e54bda462 to your computer and use it in GitHub Desktop.
Notion attempt in orgmode

[1/4] Media

La fin du monde en 80 jours

FIXME A random book not about randomness

PROGRESS Algorithms to live by

This book is so great I want to add it to my library and also generate flash card for it

link The Illustrated Transformer – Jay Alammar – Visualizing machine learning one concept at a time

CANCELED The illustrated transformer

http://jalammar.github.io/illustrated-transformer/ :Computer Science:

[0/1] Flash Cards

What is the author name of the most famous document about litteral computing ?

Donald Knuth

[0/1] Ideas

Do a bot to sort r/nlp and r/languageProcessing in reddit

[0/1] Shopping List

Algorithms to live by

Areas

Computer-science

Here is a short description of the topic im talking about

Ideas

LINKIDEATAGSTYPE
ShowDo a bot to sort r/nlp and r/languageProcessing in reddit:computer_science:Hello

Related Media

LINKITEMTODOTYPETAGSCLOSED
ShowLa fin du monde en 80 joursDONEPodcast:computer_science:[2020-04-26 Sun 13:59]
ShowAlgorithms to live byPROGRESSBook:computer_science:
Showlink The Illustrated Transformer – Jay Alammar – Visualizing machine learning one concept at a timeTODOArticle:computer_science:

Flash cards

LINKQUESTIONLEVELTAGS
ShowWhat is the author name of the most famous document about litteral computing ?2:computer_science:

Shopping list

LINKITEMTODOTYPETAGSCLOSED
ShowAlgorithms to live byTODO:computer_science:

Norgtion

Description

Norgtion is an attempt at getting a workflow based on linked databases and filtered view inside orgmode inspired by notion.so

Utils

Create a tag database that is automatically generated and generate Areas with all linked revelent tags

Find how to hide all properties, comments, codeblocks and tables directives

Before save

;; Assign Id to all items
(require 'org-id)
(save-excursion
  (goto-char (point-max))
  (while (outline-previous-heading)
    (org-id-get-create)))

;; Update all blocks
(org-update-all-dblocks)

;; The TBLFM directive are badly indented after code blocks evaluation and need to be fixed before save
(save-excursion
  (indent-region (point-min) (point-max) nil))

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment