Live data from Hacker News

Emacs org-mode examples and cookbook

ehneilsen.net

101–110 of 166 posts

Re: Emacs org-mode examples and cookbook

#101
post #88

Earlier quoted context omitted.

This will be a tough sell. Org-mode is a fairly fast moving target, due to how easy it is to extend anything in emacs. For lots, you will actually be battling against all of the other extensions in emacs. (For me, as an example, you will have to replace flyspell, beacon, tramp, ace-jump, ido, and ggtags.) All of this is doable, of course. But it will be a tough sell. That said, I'd say go for it. Worst case, nobody u…

Yeah, it would be fairly difficult to build, which is why getting feedback would be useful, but there's a catch 22; people who already know what Org is are fairly comfortable using Emacs and I don't know how to find out if people not that found of Emacs itself would still find Org useful, or if combining apps like Ulysses and Omni Outliner is good enough for them - the worst part is that because they don't use Emacs,…

I've often about some sort of app that uses Org as a design basis, but stores data in a way that makes it easy to access remotely without having an Org parser, to be easy to sync and query programmatically, and is designed for the modern world in terms of connectivity and interface.

I think that could absolutely kill it.

Imagine writing extensions in js or lua or whatever, and having those extensions have clear DOM-like access to the outline, have full access to their stdlib, have access to built in services like notifications, etc.

Imagine being able to programmatically access and manipulate the outline from wherever: webhook to add an outline node from IFTTT, twilio access your notes? etc. Yes you _could_ do that with Emacs, but IMHO it would take an incredible amount of work to not suck, partly because all the various pieces necessary feel like hacks on top of hacks.

Sort of how Atom and VSCode provide _much_ better interfaces (both code and UI) to your source code, and are starting to make honest inroads against the established players (like Emacs and Vim).

Re: Emacs org-mode examples and cookbook

#102

Earlier quoted context omitted.

An even better Android client for org-mode: 1. Install the Termux app. 2. Install the Termux API app. 3. Install the Termux api CLI tools via apt. You now have access to clipboard. 4. Install Emacs within termux. Termux offers an apt-based package management system, and a substantial, though partial, set of Debian-based packages. (592 packages as I write this -- a full Debian archive is >60k packages now.) There are…

Very cool! Now how do I get Escape, Meta, Alt, Control, Shift? (Joking aside, serious question.)

You can install and use the hacker's keyboard.

Helm autocompletion also makes working with onscreen keyboards easier

Re: Emacs org-mode examples and cookbook

#103
post #37

I'm surprised that no one tried to replicate this in electron yet. Outlining alone is really powerfull and would be a great fit for a web based app !

Why use electron? emacs is already available. And it includes a pretty great news reader, mail reader, git interface, source-control interface, a thousand other nifty things — oh, yeah, and a text editor too.

Even if they should, not everyone needs to, or is inclined to learn and live in emacs. Thinking especially of technically inclined folks (or managers, etc) who don't really write code or have any reason to live in an editor, but get benefit from all the loads of other nifty things - just without the cognitive overhead of stuff like tweaking config files, learning all the keybindings, managing buffers and the like- again, just for the use of org as a powerful, text-based, personal information manager.

Re: Emacs org-mode examples and cookbook

#104

Org-mode is on my list of things I should probably learn better, but never seem to get around to. Here are some entries in that list: Emacs Regex Latex Bash/Terminal/Powershell Unicode APL/J/K Linear Algebra Category Theory

I've found that 3Blue1Brown's video series is a good introduction to linear algebra:

https://www.youtube.com/playlist?list=PLZHQObOWTQDPD3MizzM2x...

Re: Emacs org-mode examples and cookbook

#105
post #58

Question I've found myself running into with org-mode. How do you use it to collaborate and share notes with others? I work in a Windows shop (Microsoft data platform partner), and most of my coworkers don't even know what emacs is. I can always export my own notes to HTML or similar for others to consume, but most of my coworkers are using OneNote. I prefer org-mode to OneNote, but for convenience I use OneNote sinc…

Maybe take a look at Pandoc[1]? It converts between Org-mode and Microsoft formats.

[1] http://pandoc.org/

Re: Emacs org-mode examples and cookbook

#106

Earlier quoted context omitted.

An even better Android client for org-mode: 1. Install the Termux app. 2. Install the Termux API app. 3. Install the Termux api CLI tools via apt. You now have access to clipboard. 4. Install Emacs within termux. Termux offers an apt-based package management system, and a substantial, though partial, set of Debian-based packages. (592 packages as I write this -- a full Debian archive is >60k packages now.) There are…

Very cool! Now how do I get Escape, Meta, Alt, Control, Shift? (Joking aside, serious question.)

I have a Bluetooth hardware keyboard with esc, alt, control, and shift keys. No meta.

There are programming-oriented software keyboards.

Re: Emacs org-mode examples and cookbook

#107
post #4

It's worth noting a great Android client for org-mode has been recently open sourced: http://www.orgzly.com/ https://github.com/orgzly https://f-droid.org/wiki/page/com.orgzly It was a little annoyance we did not have anything as good as this before.

I was wondering just a few days ago whether building a nice Mac desktop app or maybe a web app, akin to Ulysses, but for Org file writing/editing, exporting etc. would be a viable idea and whether it could eat some of Markdown's marketshare by not being tied to Emacs, which is why I feel most people don't pick it up. Would that be something the HN crowd would be interested in?

[deleted]

Re: Emacs org-mode examples and cookbook

#108
post #4

It's worth noting a great Android client for org-mode has been recently open sourced: http://www.orgzly.com/ https://github.com/orgzly https://f-droid.org/wiki/page/com.orgzly It was a little annoyance we did not have anything as good as this before.

I sync my org files to gitlab. Is there a way to sync org files via git with orgzly?

Re: Emacs org-mode examples and cookbook

#109

Earlier quoted context omitted.

I was using spacemacs, but I didn't know emacs and lisp well enough to solve problems when I had them, and getting help was hard. Now I'm back to using plain old emacs, and I'm hoping I can learn from spacemacs to make emacs better by contributing back to it.

You can get help in the spacemacs gitter chat... there is usually someone around that can help you out for most things. https://gitter.im/syl20bnr/spacemacs

In my experience, it was kind of hard to get someone to reply back to me when I had a problem.

Re: Emacs org-mode examples and cookbook

#110

Earlier quoted context omitted.

You can do both: http://millejoh.github.io/emacs-ipython-notebook/

There is also https://github.com/gregsexton/ob-ipython which integrates a Jupyter kernel into org-mode's #+BEGIN_SRC/#+END_SRC blocks. It can display the results of the execution of such blocks much like Jupyter Notebook.

And to make it even better, export an org document to a notebook: http://kitchingroup.cheme.cmu.edu/blog/2017/01/21/Exporting-...
Post reply on HN