miniblog.

Neither mobile Firefox nor Chrome (as far as I can tell) have a View Source feature. I think this is a loss though I'd never noticed before.
Good software testing takes a 'guilty until proven innocent' approach.
I've written my first company backend! The API is a little unusual (you have a function where the arg varies) but it's nice to work with.
Joy (the programming language) can be very pretty. Qsort: DEFINE qsort == [small] [] [uncons [>] split] [enconcat] binrec.
HolonU is an interesting, quirky IDE that stores source code in a database with a hypertext interface: http://t.co/31oaPd14WP
Updating all *ELPA packages gave me: 3495 files changed, 436904 insertions(+), 423268 deletions(-). That's a lot of elisp -- hard to test!
The lisp macro -> is more powerful than function composition. For example, this is legitimate elisp: (-> 100 (goto-char) (save-excursion))
Emacs' ielm is invaluable for playing with elisp snippets. Tip: use * to access the result of the previous expression.
Handy Emacs command of the day: 'M-x foo' -> jump to foo.el. It's replaced much of my use of 'C-h f'.
I'm also extremely impressed with the release tooling in Rust. Bors and Crater are both fantastic for keeping the language reliable.
I'm acquiring a taste for the Rust numeric types. usize usually represents an index, i64 a quantity, and Wrapping<u8> an emulation of hw.
I really like diff-hl-mode https://github.com/dgutov/diff-hl It shows lines added/modified/removed since last commit, which is useful contextual info.
Using LLVM with very dynamic languages is hard. A discussion of using LLVM for Smalltalk VMs: https://clementbera.wordpress.com/2014/05/28/the-sista-chronicles-viii-integrating-llvm-in-cog/
Great deep dive into Emacs' string implementation: http://t.co/y6Xsk82ZGw (strings are crucial in an editor so it has some unusual features)
Really interesting LLVM RFC on improving performance of instrumented binaries: http://t.co/b04txi6Nhk Interaction with inlining is subtle.
The excellent 'linked lists in Rust' has a section on lifetimes: http://t.co/ndcTrTMUIb It compares lifetimes with pointers to scopes.
Scary example of MITM against http://t.co/gC9yMtJTuN with faked HTTPS: https://cryptostorm.org/viewtopic.php?f=67&t=8713
Fascinating article on building a great Perforce workflow with Emacs: http://t.co/gp1ds4RlUZ
Handling different error types in Rust: http://t.co/ywrmQDghpA (a hurdle for new Rust programmers)
Computational Thinking: The Subtle Effect of Hidden Dependencies on the UX of VCS https://static.googleusercontent.com/media/research.google.com/en/us/pubs/archive/42942.pdf Interesting and sobering.
Showing 261-280 of 650 posts