Explore >> Select a destination


You are here

piotr.is
| | ejenner.com
2.4 parsecs away

Travel
| | Emacs has some really amazing features for writing LaTeX; this post gives an overview of some of them, either to convince you to give Emacs a try, or to make you aware that these features exist if you're already using Emacs but didn't know about them.
| | michaelneuper.com
2.4 parsecs away

Travel
| | Generic description
| | notes.neeasade.net
2.8 parsecs away

Travel
| | [AI summary] The author expresses a deep appreciation for Emacs, highlighting its programmable state, blended environment, and extensive customization capabilities, while also sharing various customizations and integrations they've implemented.
| | blog.oddbit.com
31.2 parsecs away

Travel
| Overview I was recently working with someone else's C source and I wanted to add some basic error checking without mucking up the code with a bunch of if statements and calls to perror. I ended up implementing a simple must function that checks the return value of an expression, and exits with an error if the return value is less than 0. You use it like this: must(fd = open("textfile.txt", O_RDONLY)); Or: