this post was submitted on 12 Sep 2023
983 points (97.8% liked)

Programmer Humor

18255 readers
643 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 1 year ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 11 points 9 months ago (3 children)

I’m vaguely aware of Org-mode but only as an alternative to Markdown. Last time I looked into it, though (years ago), Markdown seemed like a much better option for me for various reasons. Do you have a good argument for why Org-mode is a better choice for common use cases than the relatively universal GitHub-flavored Markdown?

[–] [email protected] 7 points 9 months ago

depending on what you do there are large benefits, for me they are executable code blocks (i.e. jupyter like experience) and way better latex support (if you type equations that are more involved this is rather important).

[–] [email protected] 5 points 9 months ago* (last edited 9 months ago) (1 children)

Much better ToDo list system with calendar integration and notifications via mobile apps.

[–] [email protected] 1 points 9 months ago (1 children)

Do you happen to have more info on mobile integration? I can only find one or two apps which claim to support org-mode notes at all, so I'm interested. Kinda assumed it wasn't much of a thing, honestly.

[–] Chobbes 2 points 9 months ago

Org mode is great, particularly if you're already in the Emacs ecosystem because it can do a lot of stuff. Calendars, executable code blocks, spreadsheets, time tracking, org-roam for more ad-hoc notes and searching, capture templates for ingesting data...

I like org mode's markup format a lot better than markdown's. It's a bit easier to do complicated things with escaping and stuff, and it supports syntax highlighting for different languages in code blocks, and LaTeX markup and stuff (which it can even display inline if you want).

As far as I am concerned the only reason to use markdown is that more people are familiar with it and there's better support for it on certain platforms. These are certainly good enough reasons to use markdown, but in my experience if you're in the position to use org-mode it's just so much better.