frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

Open in hackernews

Org tutorials

https://orgmode.org/worg/org-tutorials/index.html
86•dargscisyhp•7h ago

Comments

hodanli•3h ago
i like logseq as somewhat modern iteration of org-mode
account-5•3h ago
What lead you to choose that over say obsidian, notion, Joplin, and the many others that pretty much do the same thing?
innocentoldguy•3h ago
I switched from Obsidian to Logseq because Logseq has better block-level support, better embedded image previews, and more functionality out of the box without having to rely on plugins

Why not Notion or Joplin? I like Logseq's outline format better than Joplin's long-form note taking format, and I just don't like Notion at all for purely subjective reasons.

jcynix•2h ago
Orgmode is more than just a note keeping tool, it is a complete and complex toolbox. I can use tables like a spreadsheet, include source code snippets, etc.

Joplin is fine, especially for shared note keeping. We store its notes on a private WebDAV server and everyone in the family can access these notes from their laptops or mobile devices.

But the editing capabilities of Joplin are dismal. Try to swap lines (on a smartphone, no mouse), change the same term in a number of notes, or do some more complex editing operations. These are easily done in emacs/orgmode, even on a smartphone or tablet ... ,at least with emacs running in Termux under Android.

solarkraft•8m ago
They do not do the same thing.

Logseq is an outliner (though it does have a document mode), which means a deep interaction with the document‘s hierarchy: You can zoom into blocks, collapse them (not ephemerally, it’s saved in the document) and link to them.

I’d probably use Obsidian if it had those features (since Logseq is still as buggy as it was years ago), but the last time I checked it did not.

uludag•3h ago
I'm on my seventh year of using org-mode for my task management. My system has slowly evolved over time but I'm pretty much still using the same single text file to manage everything. My main getting-things-done org-mode file is now at 6k lines long.

Before org-mode, I was always downloading different software to manage tasks and notes. The tool churn was very degrading to my productivity but I feel that commercial interests would keep turning the churn machine: new UI changes, enshitification, monthly subscriptions, etc.

It's such a refreshing feeling, sitting back, and feeling assured that for the next presumably 25 years of my career, and perhaps for the rest of my life, I can still be using org-mode, and it will always work as I learned it, but it's flexible enough to easily implement extensions.

thecsw•3h ago
Orgmode got me through college, research, and at work, it really is the perfected markup language that can do a lot more than just being a markup language. The extensibility and out of the box export to other formats makes it immediately useful for at least 80% of common tasks.

It has ingrained itself so deeply into my muscle memory that I built out a whole website builder [1] and extended the language to support all kinds of nice QoL things for my website [2].

Something that as the other commenter here noted—I can rely on orgmode for many decades to come.

[1] https://github.com/thecsw/darkness [2] https://sandyuraz.com

jhoechtl•2h ago
I have on gripe, that is the mixture between org structure and org document heradings. I know, they are the same, and such a distinction doesn't exist.

You can start a "document" at any place in the org hierachy. I would rather prefer a distintion between these two concepts.

eviks•36m ago
> As of 2025-02, there is no formal Org-mode syntax definition.

is very far away from perfection

Nesco•3h ago
To people using org mode, how does it help you more than Markdown? Genuinely curious because I tried at some point and it felt too heavy.

Maybe because I am a vim user instead of eMacs?

stevekemp•2h ago
First of all "emacs" rather than "eMacs".

But to answer your main question, markdown is used for writing text which can then be converted to HTML, PDF, etc, etc. It's used just to format things. org can be used in that way, and it might feel better/worse depending on what you feel about the choices used for various formatting styles.

However the big gain of org is that you can use it to format dynamic tables, handle todo-lists, have deadlines, recurring tasks, etc, etc. It makes no sense to compare org-files with markdown-files. It's like saying "I use notepad how does Excel help you do more?" - they do different thigns.

Now, much like excel, most people don't do everythign with org, but they can if they want to. It is extraordinarily flexible, and can be extended with custom lisp code if necessary.

I track rental properties with an org-document for each property, and I get per-year profit/loss statements in a neat format with graphs too. You can't do that with markdown.

impulsivepuppet•2h ago
Org mode offers so much more than just syntax. You can use org files as a calendar, a todo/issue tracker with time accounting, a diary/knowledge base (zettelkasten, org-roam), as a literate programming tool (think jupyter code notebooks but for practically any programming language with org-babel), or a publishing tool (static site generator, latex/pdf export) all at the same time.

To be quite frank, Org mode is a lifestyle which existed long before Notion or Obsidian did. Saying that it has a barrier to entry is a bit of an understatement.

Having said all that, quite ironically, I've migrated over to Obsidian because I started using Intellij more for work, meaning that I don't need Emacs for its other capabilities all that much.

jcynix•2h ago
Markdown is a markup tool, i.e. you decorate your text. Orgmode on the other hand is a complete toolbox where you can add tags to notes, filter on these tags, manage calendars, etc. You can enter tables both for formatting and spreadsheet like calculation.

And you can insert snippets of code into your notes, like

    #+BEGIN_SRC shell
       ls | wc -l
      find . -type f -name "*foo*" 
    #+END_SRC
(or javascript, elisp, html, ... instead of shell) where the markup is changed appropriately in these regions.

You can even augment orgmode with elisp code if you are so inclined.

myaccountonhn•1h ago
I don't use it anymore but org-babel allows you to execute commands in code blocks. I would use that to build interactive explorations when learning how APIs work for example. I didn't find that nearly as seamless with Markdown.

Combined with org-agenda you also unlock a calendar with recurring events, task priorities and more.

NoboruWataya•1h ago
I hear so many people rave about orgmode on HN, all of them emacs users. This seems obvious since it is an emacs feature after all, but if orgmode is so good, has it not been implemented outside of emacs? Is there a standalone orgmode implementation that non-emacs users should look into?
doctor_blood•1h ago
What would be the point? Without emacs all you're left with is another markup language.
sligor•56m ago
What makes org mode tied to emacs ? I really need to try org mode to understand it. If only I had time...
stevekemp•1h ago
There is an implementation for neovim, and some "viewer" applicatrions for android, etc:

https://orgmode.org/tools.html

Basics are easy to replicate, but one of the reasons why org is so useful is because it is tied into the emacs ecosystem, so you can write extensions/configuration tweaks in lisp. You can hookup agenda (calendars), etc, etc, and those things don't really translate so well to external tools.

If you had to write a lisp interpreter, and fake "bare minimum" compatability? At that point you'd be better off just running emacs for real.

amelius•11m ago
> You can hookup agenda (calendars), etc, etc, and those things don't really translate so well to external tools.

Sounds like a replication of Unix inside an editor if you ask me.

pydry•53m ago
orgzly revived for android is pretty great.

more tooling would be good though, especially command line tools to get data in and out.

bananapub•47m ago
1. it has, there's various mobile apps and a reimplementation for vim and vscode at least

2. it's very very good and having access to it is enough reason for some people to become emacs users, much like magit

nurumaik•34m ago
Standalone orgmode implementation is called emacs with org mode. I'm that person that uses emacs solely for orgmode and write code in other editors (vscode/zed/cursor), we also exist
eadmund•27m ago
> if orgmode is so good, has it not been implemented outside of emacs

Org Mode is that good, but part of its goodness is due to being in Emacs.

Emacs is not really an editor: it’s an easily user-extensible operating environment with a remarkably shallow learning curve (seriously: one can go years just setting variables before moving up to simple functions and then starting to explore). Having all that power so easily accessible is a part of what makes Org Mode great. It’s what means that each Org Mode user can mold his experience to his needs.

anthk•1h ago
Org-Mode with Hyperbole it's like doing computing in 2070, but without bullshit AI LLM's. Try it and you'll understand.

https://www.youtube.com/watch?v=cFdgpb0TeQo

If you are a Lisp programmer, you can OFC use ob-lisp with it (and maybe there's ob-elisp to learn Elisp in a literate way).

This is like a Jupyter netbook, with steroids. Org Babel:

https://orgmode.org/worg/org-contrib/babel/

Supported languages:

https://orgmode.org/worg/org-contrib/babel/languages/index.h...

Lumo, the AI where every conversation is confidential

https://proton.me/blog/lumo-ai
1•pentagrama•31s ago•0 comments

How ant queens are made

https://www.rockefeller.edu/news/38067-how-ant-queens-are-made/
1•hhs•32s ago•0 comments

Open Sauce is a confoundingly brilliant Bay Area event

https://www.jeffgeerling.com/blog/2025/open-sauce-confoundingly-brilliant-bay-area-event
1•rbanffy•1m ago•0 comments

What is X-Forwarded-For and when can you trust it? (2024)

https://httptoolkit.com/blog/what-is-x-forwarded-for/
2•ayoisaiah•5m ago•0 comments

Has Brazil Invented the Future of Money?

https://paulkrugman.substack.com/p/has-brazil-invented-the-future-of
3•Qem•6m ago•0 comments

I tried vibe coding for 30 days (YouTube)

https://www.youtube.com/watch?v=PDMxbbejgcA
2•djaychela•11m ago•1 comments

AI Sandboxes: Daytona vs. Microsandbox

https://pixeljets.com/blog/ai-sandboxes-daytona-vs-microsandbox/
1•jetter•12m ago•0 comments

A new TUI for managing app store reviews

https://github.com/parthematics/rustpond
1•parthchopra•13m ago•1 comments

SV AI Startups Are Embracing China's Controversial '996' Work Schedule

https://www.wired.com/story/silicon-valley-china-996-work-schedule/
2•AndrewDucker•16m ago•0 comments

Choosing the rijght .NET container image for your workload

https://medium.com/@mfundo/all-the-net-core-opsy-things-37b2e21eabb4
1•mfund0•19m ago•0 comments

Edward Snowden is a CIA intelligence asset

https://wisewolfmedia.substack.com/p/the-greatest-intelligence-assets
1•douchecoded•20m ago•1 comments

Show HN: Breakout game from GitHub contributions graph

https://github.com/cyprieng/github-breakout
2•cyprien_g•21m ago•0 comments

Sparse Matrix Library with Compressed Row Storage

https://github.com/uestla/Sparse-Matrix
1•klaussilveira•24m ago•0 comments

Checking Out CPython 3.14's remote debugging protocol

https://rtpg.co/2025/06/28/checking-out-sys-remote-exec/
1•ingve•25m ago•0 comments

Firefox 141 Released

https://www.firefox.com/en-US/firefox/141.0/releasenotes/
7•AshleysBrain•27m ago•0 comments

Ask HN: What's the Next AI Trend?

1•kokorikooo•27m ago•0 comments

Apkbuild strict – utility to parse and validate APKBUILD files

https://github.com/melezhik/apkbuild-strict
2•melezhik•28m ago•2 comments

I built a compiler in C from scratch with lexer, parser, and C codegen

https://github.com/pandaadir05/shaynefro-compiler
2•Pandaadir•32m ago•1 comments

Teens say they are turning to AI for advice, friendship 'to get out of thinking'

https://www.aol.com/teens-turning-ai-advice-friendship-041044870.html
3•Bluestein•32m ago•0 comments

Musk is messing with Cosmic Dawn. Will alien hunters save the day for mankind?

https://www.theregister.com/2025/07/23/opinion_column_starlink_interference/
1•defrost•35m ago•0 comments

New YugabyteDB Functionality for Ultra-Resilient AI Apps

https://www.yugabyte.com/blog/new-yugabytedb-functionality-for-ultra-resilient-ai-apps/
2•3littlefish•37m ago•0 comments

KeePassXC two factor authentification suddenly fails everywhere

2•nilslindemann•42m ago•2 comments

Show HN: Chrome Extension – Edit webapp internationalization keys in context

https://www.prismy.io/chrome-extension
1•allard_eric•42m ago•0 comments

Is Your Car a Moving Data Center Yet?

https://spectrum.ieee.org/car-cameras-kd-automotive-vision
1•pseudolus•42m ago•0 comments

New research says AI Overviews cause drop in search clicks

https://arstechnica.com/ai/2025/07/research-shows-google-ai-overviews-reduce-website-clicks-by-almost-half/
2•liquid99•46m ago•0 comments

The New Hot Topic in European Politics Is Air Conditioning

https://www.wsj.com/world/europe/europe-air-condition-heat-waves-politics-24aceab4
2•impish9208•46m ago•3 comments

YajuzhenCloudPhone: AddressContent Shadowban Issues for Overseas TikTok Accounts

1•yt1314•46m ago•0 comments

I built a privacy-first chat platform–now with"Continue Chat"(stranger-meet.com)

https://stranger-meet.com
1•Your_Stranger•49m ago•0 comments

Brave blocks Microsoft Recall by default

https://brave.com/privacy-updates/35-block-recall/
1•XzetaU8•49m ago•0 comments

HTML Day 2025

https://twitter.com/htmlenergy/status/1946123935512142090
1•cookingoils•51m ago•0 comments