20 random bookmarks
Bookmarks and whatnot. Закладки и всякое.
Bookmarks and whatnot. Закладки и всякое.
Как в России летают на воздушных шарах. Фестиваль в Переславле-Залесском
gwit is a minimalist system for a Web of replicated, host-neutral, lightweight sites backed by Git.
cute pixtures
Throughout history, people have bathed in public rather than in private. Should we bring back the public bathhouse for the sake of sustainability?
I can hardly imagine myself using one daily. I'm late for work every day,having to go to a yet another place just to clean my meat case sounds ridiculous. Also, I wouldn't particularly enjoy bathing in public. And let's not forget about hygiene. Modern people barely manage using public toilets, and you expect them to manage something even more complex?
But energy-wise, communal bathing is indeed effective.
Ещё один клон старого ВК. Мне дали доступ к какому-то аккаунту. Автор проекта заметил, что я в сети, и начал со мной разговор. Обсудили чуток, прикольно. Пожелал ему удачи и попросил сделать RSS-ленту, чтобы я подписаться мог.
Archive.today is a time capsule for web pages! It takes a 'snapshot' of a webpage that will always be online even if the original page disappears. It saves a text and a graphical copy of the page for better accuracyand provides a short and reliable link to an unalterable record of any web page
The coolest thing I've seen today!
Project Xanadu as a pattern language, rather than a failed software project
Статья о 585
Nobody gets it nowadays :-( This article is very old and probably lying. The microformats wiki is not even up-to-date, full of cruft.
GRR Martin has a nice way of captivating the readers while still killing the characters all around the story. Usually, that wouldn't work, but he has a trick.
A static site, that claims to be a wiki. It is old and fun.
Gophernotes is a Go kernel for Jupyter notebooks and nteract. It lets you use Go interactively in a browser-based notebook or desktop app. Use gophernotes to create and share documents that contain live Go code, equations, visualizations and explanatory text. These notebooks, with the live Go code, can then be shared with others via email, Dropbox, GitHub and the Jupyter Notebook Viewer. Go forth and do data science, or anything else interesting, with Go notebooks!
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.