20 random bookmarks

Storage for the links

2026-02-09

408.

1 сезон 1 серия: Зима близко

site-of-thrones.net/sez-1/4-1-sezon-1-serija-zima-blizko.html

Итак, 1 сезон 1 серия телесериала "Игра престолов". Настоятельно рекомендуется начать знакомство с сериалом именно с неё. В данном эпизоде происходит знакомство зрителей с некоторыми главными героями, среди которых: лорд Винтерфелла Эддард "Нед" Старк и его семья, король Роберт

2026-01-14

400.

How to move/resize windows with only the keyboard? : r/hyprland

www.reddit.com/r/hyprland/comments/11c2lie/how_to_moveresize_windows_with_only_the_keyboard

2025-12-16

367.

NCurses Disk Usage

dev.yorhel.nl/ncdu

2025-12-02

354.

Domains Project: Processing petabytes of data so you don’t have to

domainsproject.org

World’s single largest Internet domains dataset

2025-11-29

347.

Default Key Assignments - Wez's Terminal Emulator

wezterm.org/config/default-keys.html

Wez's Terminal Emulator

2025-09-11

314.

Portable RPi 5 PDA cyberdeck Box : r/raspberry_pi

www.reddit.com/r/raspberry_pi/comments/1j69hjp/portable_rpi_5_pda_cyberdeck_box

2025-08-25

290.

Зувемби — Википедия

ru.wikipedia.org/wiki/Зувемби

2025-08-09

273.

Anarchy Tube

anarchy.tube

Your looking glass into a strange chaotic world

2025-08-06

271.

Dice Set (d4, d6, d8, d10, d12, d20) by Tha177c

www.thingiverse.com/thing:94738/files

Other dice set weren't slicing properly for me so I created my own.

2025-06-15

253.

rc(8) - OpenBSD manual pages

man.openbsd.org/rc.8

2025-05-13

231.

sevenz-rust - crates.io: Rust Package Registry

crates.io/crates/sevenz-rust

A 7z decompressor/compressor written in pure rust

2025-04-28

217.

Убей в себе графомана

avtoram.com/kto_takoi_grafoman

Убей в себе графомана - статья Олега Волкова, которая отвечает на вопрос "Кто такой графоман?" и какими признаками обладает графоманская проза.

2025-03-27

153.

GitHub - screego/server: screen sharing for developers https://screego.net/

github.com/screego/server

2025-03-17

136.

Glock 3D Printable Virtual Build Kit

defcad.com/library/45126050-4c80-46ec-879e-d116f1248adf

====== PP Virtual Build Kit ====== These files contain dies that will help transform your demented ideas into fully functioning 3d printable firearms. Cut the die from the shape of your choice and voila! You've got a new Glock. Dies for the following are included: G43X/48 - DD43.1 rails G43X/48 - SS80 rails G19, G19X - DD19.2 rails G17 - DD17.2 rails G26, G26X - DD26.2 rails For the G17/19/26 designs, both left and right handed versions are included, as well as versions for both gen3 and gen5 slide lock springs. Also included: Modified G43X magazine release. I highly recommend using this if you plan to run Shield S15 magazines. Left handed G19 mag release. This is required for left handed G19 frames since left handed gen 3 Glocks don't really exist. Right handed G19 mag release. Included for completeness, but also handy if you want to customize how far the mag release sticks out.

2025-02-27

112.

Dampering Printer foot by tuono1k

www.thingiverse.com/thing:4651519

I love these foot they remember me the AT-AT walker star wars vehicle.unfortunately the design do not allow to install on my ender 3 pro.I rebuild upper part and tried to create a close copy of the lower part.upper and lower parts are in PETG , the pad is made in TPU for better gripSprings comes from bed leveling systemwhile drawing had no idea on how to assembly lower with pad so I decided just to glue them

2025-02-16

88.

outline-sdk/x/examples/http2transport/README.md at main · Jigsaw-Code/outline-sdk

github.com/Jigsaw-Code/outline-sdk/blob/main/x/examples/http2transport/README.md

SDK to build network tools based on Outline components. - Jigsaw-Code/outline-sdk

2025-02-14

87.

3D printed medieval crossbow V1 by Moreno | Download free STL model | Printables.com

www.printables.com/model/740562-3d-printed-medieval-crossbow-v1

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

2025-02-11

78.

Tinkercad

www.tinkercad.com

Tinkercad is a free, easy-to-use app for 3D design, electronics, and coding.

2025-02-04

65.

Introduction - The Redox Operating System

doc.redox-os.org/book

This book carefully describes the design, implementation, direction, and structure of Redox, the operating system.

2025-01-30

53.

How do you declare an interface in Rust?

stackoverflow.com/questions/45633269/how-do-you-declare-an-interface-in-rust

I have multiple types with similar methods. I want to abstract over them by writing an interface, like I would in Java:
public interface Shape {
public float area();
}

class Circle implements ...