|
You are here |
piotr.is | ||
| | | | |
ejenner.com
|
|
| | | | | 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
|
|
| | | | | Generic description | |
| | | | |
notes.neeasade.net
|
|
| | | | | [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
|
|
| | | 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: | ||