Programming should be exercising the brain, not the fingers. Ideally not the part of the brain that can handle irregular verbs.
miniblog.
There are still interesting unsolved problems in live programming. Most live systems ignore multithreading and low level hardware access.
Another great post by @Ngnghm, this time discussing why kernels are poor abstraction: https://ngnghm.github.io/blog/2015/11/28/chapter-6-kernel-is-as-kernel-does/
Profound (if rather odd) comparison between ants and labour coordination in developer teams: https://ubiquity.acm.org/blog/why-cant-programmers-be-more-like-ants-or-a-lesson-in-stigmergy/
calloc has a copy-on-write feature that can produce surprising speedups: https://blogs.fau.de/hager/archives/825
I'm beginning to understand org-mode. It's basically markdown on steroids with a great set of commands for manipulating it.
If you're using zsh then substring history: https://github.com/zsh-users/zsh-history-substring-search and highlighting: https://github.com/zsh-users/zsh-syntax-highlighting/blob/master/INSTALL.md are huge timesavers.
Houyhnhnm Computing: Non-Stop Change https://ngnghm.github.io/blog/2015/09/08/chapter-5-non-stop-change/ (thought provoking discussion on live programming and mutating programs)
LLVM's undef value can have surprising behaviour and even inhibit useful optimisations! https://www.playingwithpointers.com/problem-with-undef.html
Installed a new Arch Linux system today! Full disk encryption, LVM, Gnome, WiFi all straightforward. The wiki is wonderfully clear.
Mind-expanding worked example of partial evaluation, exploring the interpreter/compiler divide, in Scheme: https://www.ymeme.com/hackers-introduction-partial-evaluation.html
'The success of Unix is due to its design of small composable tools.' Is this true, or was it the lack of other open source options?
(let fac ([n 10])
(if (zero? n)
1
(* n (fac (sub1 n)))))
Interesting, I've never seen this style of let before. I believe it's Scheme-only.
'Fold is better than looping because the loop is incidental' yes, but using lambda is incidental too! Perhaps an accumulate macro is better?
Emacs tip of the day: you've probably got C-x C-s in muscle memory, but https://github.com/bbatsov/super-save will save you all that typing. Automate!
TIL that interlaced PNGs get sharper as the file loads, otherwise they render top-to-bottom (more intuitive!). https://blog.codinghorror.com/getting-the-most-out-of-png/
There's a numpy/scipy style package for Smalltalk! https://github.com/SergeStinckwich/SciSmalltalk Seems every language with a REPL eventually wants fast matrices.
Python will be moving to GitHub! https://mail.python.org/pipermail/core-workflow/2016-January/000345.html It will definitely help new contributors.
Today's novelty git argument: --patience. Example usage: `git diff --patience` and it can produce friendlier diffs: https://bramcohen.livejournal.com/73318.html
Reachability and error diagnosis in LR(1) parsers https://gallium.inria.fr/~fpottier/publis/fpottier-reachability-cc2016.pdf —interesting discussion of syntax error messages, used in compcert
Showing 901-920 of 922 posts