20 random bookmarks
Storage for the links
Storage for the links
Explore the differences between RocksDB and SQLite, including data models, use cases, and performance. Learn which database fits your needs with examples.
Owncast-tweaks - A (to-become) collection of usefule(?) tweaks/tricks for Owncast users
The King's Field making tool, Sword of Moonlight downloads, translations, installers, games and resources. Includes our forum and wiki.
An overview on how to optimize cache utilization in Docker builds.
Your looking glass into a strange chaotic world
Flexible level editor. Contribute to mapeditor/tiled development by creating an account on GitHub.
I want to be able to login to a remote via ssh without having to enter the password all the time.
How do I set it up?
Is a different command required to execute a password-less session?
Federate Identity Provider
Mostly 3D printed strong crossbow but some additional parts are needed. Mainly metric bolts and 3030 aluminium profile. | Download free 3D printable STL models
Убей в себе графомана - статья Олега Волкова, которая отвечает на вопрос "Кто такой графоман?" и какими признаками обладает графоманская проза.
Desktop and Mobile HTML5 game framework. A fast, free and fun open source framework for Canvas and WebGL powered browser games.
Wez's Terminal Emulator
Мы привыкли получать электрическую энергию из внешних источников — главным образом, из городских сетей. Когда речь заходит об альтернативных источниках, то первое, о чем вспоминают — это, конечно, солнечные панели и ветрогенераторы. Но сегодня мы хотим рассказать про более интересные источники, из которых вы сможете в домашних условиях извлечь электроэнергию.
Mostly 3D printed strong crossbow but some additional parts are needed. Mainly metric bolts and 3030 aluminium profile. | Download free 3D printable STL models
I made a medieval crossbow from PLA, it shoots pretty far and kinda hard so don't aim it at anything with eyes. | Download free 3D printable STL models
This blog series creates a small operating system in the Rust programming language. Each post is a small tutorial and includes all needed code.
Hey everyone, new to Rust and just checking my high level understanding of String vs str. A String type is a container for a str that is stored on the heap. String keeps the ownership, str is simply a reference and will most commonly be seen as &str. The heuristic I have in my head is that a String type should only be seen as part of the type that owns it. For example, as part of a struct definition. When being passed into methods, or returning data from a method, then use an &str type as thi...