We still think of apps and websites separately. I've only ever added one website to my home screen.
I'm not if this is due to limited support, or just users not thinking about websites as 'installable'.
miniblog.
7
Another kernel written in Rust!
https://github.com/hermitcore/libhermit-rs
Rust tooling/docs must be making operating system development more accessible, as there is an impressive number of these projects.
1
Measuring the effectiveness of debug info in gcc and clang by comparing how often a variable is known to be defined vs how often you can access it:
Sometimes metaprogramming (macros etc) is a useful technique for refactoring, simply because you can try and then discard different designs: https://blog.metaobject.com/2018/11/refactoring-towards-language.html
(I've certainly written then thrown away macros when writing Lisp!)
The Web Design Museum is a fascinating set of screenshots of early websites:
317
The esoteric language BF was designed to be a language where you could write a very small compiler. Self-hosting BF is significantly harder though.
If we designed languages to minimise total LOC for a project plus its compiler, what would end up with?
When your blog is already hosted by GitHub, you can even have your comment backend on GitHub too! https://utteranc.es/
(I've decided to trial it on my blog: https://www.wilfred.me.uk/)
Persisting editor and mental state across debugging sessions is really hard. It's often easier to have a single, longer debugging session.
Ever wondered what the (interactive) function does at the C level of Emacs? It's just been ported in Remacs! https://github.com/Wilfred/remacs/pull/1022/files
1
It's easy to use lots of different versions of Rust nightly. Remacs requires a specific version. The https://autogen.sh/ scripts are admirably defensive, to help you get on the right version!
12
I'm not sure about teaching OO in terms of shape hierarchies or animal species hierarchies. It might help intuition, but doesn't reflect typical usage IME.
If you did model animals in an OO style, you'd be more likely to have base classes or interfaces like IFarmable, IHuntable.
4
There are technologies that are arcane, time consuming to learn, but extremely helpful to know.
Have you encountered any that fit these criteria?
3
The latest Read Eval Print Love discusses rules engines!
https://leanpub.com/readevalprintlove004/read
I'm also interested to learn that Clojure has a unification library in its stdlib.
2
There's a seedy underbelly of refactoring tools that work most of the time.
For example, grep and sed can perform function renaming. For a small codebase, this works well (you can test or eyeball the result).
Ideally we'd only use fully correct tools, but simplicity often wins.
Mid stack inlining in Go: https://go.googlesource.com/proposal/+/master/design/19348-midstack-inlining.md
(Interesting implementation details: the inliner is AST based, how to preserve existing stack reflection APIs, and how to show good tracebacks.)
Showing 2,491-2,505 of 7,583 posts

