Plurrrr

Tue 24 Aug 2021

Using Emacs in an IDE world

I remember the sad day that I finally gave up on using Emacs for Java development at work. I had spent hours trying to configure it to properly index all of the files so that I could go to definition easily. My mentor, the old Lisp guy with the insane init.el file who I would pester with questions, told me: “Just use IntelliJ”.

Source: Using Emacs in an IDE world, an article by Andrew Judson.

Daily Rust: Iterators

Iterators are part of Rust’s secret sauce. They power things from the humble for-loop to the elegant iterator chain, but have you ever stopped to think how they work?

Let’s find out more about Rust’s iterators by implementing our own versions of common iterators and reading the standard library’s source code.

Source: Daily Rust: Iterators, an article by Michael F. Bryan.