20 random bookmarks

Storage for the links

2026-05-05

439.

Merveilles

hub.merveilles.town

2026-03-11

420.

Когда реальность становится частью браузера: глубоко про WebXR и AR

habr.com/ru/sandbox/242248

Если кто-то вам скажет, что дополненная реальность — это сложно, он прав. Но если он скажет, что это невозможно в браузере — он отстал от жизни. WebXR API делает реальное расширяемым буквально в два...

2025-12-22

374.

podman-systemd.unit — Podman documentation

docs.podman.io/en/latest/markdown/podman-systemd.unit.5.html

2025-12-05

356.

outline-server/src/shadowbox at master · Jigsaw-Code/outline-server

github.com/Jigsaw-Code/outline-server/tree/master/src/shadowbox#access-keys-management-api

Outline Server, developed by Jigsaw. The Outline Server is a proxy server that runs a Shadowsocks instance and provides a REST API for access key management. - Jigsaw-Code/outline-server

2025-12-02

352.

Favorites - ContentDB

content.luanti.org/collections/Gregoire Derrough/favorites

My favorites

2025-11-18

343.

GitHub - infernojs/inferno-typescript-example: An example of using TypeScript with Inferno

github.com/infernojs/inferno-typescript-example

An example of using TypeScript with Inferno. Contribute to infernojs/inferno-typescript-example development by creating an account on GitHub.

2025-10-16

329.

Bone Golem by MZ4250 | Download free STL model | Printables.com

www.printables.com/model/29019-bone-golem/files

2025-09-15

315.

My Little Pony: A Amizade é Mágica [T01E01] - Friendship is Magic (Part 1) - Pony.Tube

pony.tube/w/p/t5khNGDa5PWZwWJgm21X1L?playlistPosition=1

Pony.Tube is a PeerTube-enabled video streaming platform using P2P (Pony-to-Pony) technology to deliver the latest pony videos directly to you.

2025-09-10

312.

W3Schools.com

www.w3schools.com/python/python_ml_normal_data_distribution.asp

W3Schools offers free online tutorials, references and exercises in all the major languages of the web. Covering popular subjects like HTML, CSS, JavaScript, Python, SQL, Java, and many, many more.

310.

RocksDB vs SQLite Comparing Key Features and use Cases

www.w3resource.com/sqlite/snippets/rocksdb-vs-sqlite.php

Explore the differences between RocksDB and SQLite, including data models, use cases, and performance. Learn which database fits your needs with examples.

2025-08-21

287.

Can't pass Environment variables from docker-compose.yml to Dockerfile · Issue #5600 · docker/compose · GitHub

github.com/docker/compose/issues/5600

2025-07-24

264.

Schema.org - Schema.org

schema.org

Schema.org is a set of extensible schemas that enables webmasters to embed
structured data on their web pages for use by search engines and other applications.

2025-04-09

172.

Safety Ratched Gear @ Pinshape

pinshape.com/items/37022-3d-printed-safety-ratched-gear

Download and 3D print this file (and many more) from Pinshape today!

2025-04-03

163.

draw.io

www.drawio.com

2025-03-17

137.

SpringFactory Magazine Spring Bending Jig

defcad.com/library/ea152887-942e-4355-954e-ae5b3ea8892d

The SpringFactory from HW Enterprises revisits a concept which has not seen development since early 2020 - the home manufacture of magazine springs. This printable tooling allows you to bend piano wire into rectangular springs using a single moving rotary part. The factory can be easily adjusted for different coil dimensions. The coil rise is determined by installing a printed slope which can be swapped out to change the rise. The parts included in the data package are designed for a specific diameter wire (1.3mm) but even this can be customized by modifying the included STEP files. Documentation is included to explain how to print, assemble, calibrate and use the factory. This  project is the first of several planned iterations in spring bending technology, and was motivated to help reduce the community’s reliance on commercial spring designs and the limitations this places on magazine development. Home builders can now design magazines with spring dimensions totally different from what is available commercially!

2025-03-10

133.

PET Filament Mini Factory by shoaibkhan786

www.thingiverse.com/thing:6946909

2025-03-09

131.

Creality Ender 3 V3 SE/Ender 3 V3 KE 3D-принтер на AliExpress

aliexpress.ru/item/1005006142985067.html

Смотри, что есть на AliExpress! И еще более 200 миллионов товаров со всего мира с возможностью поиска по фото и большими скидками. Погрузись в увлекательный мир шопинга без границ!

2025-02-27

104.

Mini SD card and USB Holder by akxsxx

www.thingiverse.com/thing:6932250

3 usb 4 micro sd 3 big sd

2025-02-03

61.

creativcoder

www.creativcoder.dev/blog/rust-on-arduino-uno

2025-01-30

54.

Understanding when to use String vs str - help - The Rust Programming Language Forum

users.rust-lang.org/t/understanding-when-to-use-string-vs-str/103746

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...