20 random bookmarks
Bookmarks and whatnot. Закладки и всякое.
Bookmarks and whatnot. Закладки и всякое.
Even though we often hear terms like L1, L2, cache block size, etc., most programmers have a limited understanding of what cache really is. This is a beginner-friendly primer on how cache works.
A collection of web pages from across the Internet that have a curated collection of bookmarks and/or links.
I'll apply.
A paper about the old NoteCards program. I printed it out on an office printer and read it, unlike most other papers I saved in this Betula.
Organizing data in notecards, linking them. Notecards are not scrollable. Fileboxes and Browsers, special notecards. They state the system is programmable, but no detailed description of programmability is given. Interface is not really detailed.
Overall, this paper is not enough. I shall look for more.
A project to review and talk about the essential games you should play on Game Boy to understand its appeal and its success.
База.
A classic pattern in technology economics, identified by Joel Spolsky, is layers of the stack attempting to become monopolies while turning other layers into perfectly-competitive markets which are commoditized, in order to harvest most of the consumer surplus; discussion and examples.
When a player starts a session, they are the car driver, and each person that joins is seated in one of the other three passenger seats.
Players are automatically connected via voice chat.
The radios stations are real-life internet radio streams and several of them are available in the game world.
Exobiotica is a world-building project that envisions how life may evolve in different places across the universe.
Classic MacOS & GS/OS widget library for linux (and other?) - buserror/libmui
Yay jQuery 4! I don't do such things nowadays, but this release made me glad. I wish it an even brighter future.
Гришка учит Активитипабу. Вовремя!
Overcoming limitations of text email.
There are several tens of members. New members are accepted.
Not so good.
I am sorry for linking such a ridiculously made website.
Once a year I visit them.
SQLite is a wonderful piece of software and it is completely meaningful to use it in a project written in Go even though SQLite itself is in C. Though people has been hitting lots of issues with it, mostly "database is locked" error that seems to appear out of nowhere.
First of all, SQLite allows concurrent readers but only a single writer. Unlike most places where you may encounter some sort of synchronization SQLite does not wait for the write lock to become available - instead it just returns an error, letting the caller deal with it. This is why you are getting "database is locked" errors.