20 random bookmarks

Storage for the links

2025-11-05

335.

QGIS Interactive Map : r/gis

www.reddit.com/r/gis/comments/f76p4a/qgis_interactive_map

2025-08-29

296.

hatniX

codeberg.org/hatniX

Codeberg is a non-profit, community-led organization that aims to help free and open source projects prosper by giving them a safe and friendly home.

2025-08-13

281.

Insert data

xorm.io/docs/chapter-04/readme

4.Insert data # You can insert objects to database via Insert method.
Insert one object user := new(User) user.Name = "myname" affected, err := engine.Insert(user) After inserted, user.ID will be filled if ID is an autoincremented column.
fmt.Println(user.Id) Insert multiple objects by Slice on one table users := make([]User, 1) users[0].Name = "name0" ... affected, err := engine.Insert(&users) Insert multiple records by Slice of pointer on one table users := make([]*User, 1) users[0] = new(User) users[0].

2025-07-16

261.

Наконечники под арбалетный болт. Краткое руководство

lastdayclub-1001865.ingress-baronn.ewp.live/nakonechniki-pod-arbaletnyj-bolt-kratkoe-rukovodstvo

Какие существуют в продаже наконечники под арбалетный болт (стрелу). Их назначение, отличительные характеристики, примеры и полезные советы.

2025-05-21

237.

native-dialog - crates.io: Rust Package Registry

crates.io/crates/native-dialog

A library to display dialogs. Supports GNU/Linux, BSD Unix, macOS and Windows.

2025-05-16

235.

Sōzu - HTTP Reverse Proxy in Rust for Immutable Infrastructures

www.sozu.io

Hugo & Tailwindcss Starter

2025-05-02

222.

water pulverizer nozzle

cults3d.com/en/3d-model/tool/water-pulverizer-nozzle-kinhannibal91

replacement nozzle for pressure sprayer

2025-04-07

169.

Ender 3 Filament Bowden Tube Guide by Heerozh | Download free STL model | Printables.com

www.printables.com/model/246460-ender-3-filament-bowden-tube-guide

Filament Guide using PTFE Tube | Download free 3D printable STL models

2025-04-03

167.

GitHub - ValveSoftware/gamescope: SteamOS session compositing window manager

github.com/ValveSoftware/gamescope

SteamOS session compositing window manager. Contribute to ValveSoftware/gamescope development by creating an account on GitHub.

2025-03-27

153.

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

github.com/screego/server
152.

GitHub - mholt/caddy-ratelimit: HTTP rate limiting module for Caddy 2

github.com/mholt/caddy-ratelimit

HTTP rate limiting module for Caddy 2. Contribute to mholt/caddy-ratelimit development by creating an account on GitHub.

2025-03-09

132.

Ender 3 Tool Holder by kawayanan | Download free STL model | Printables.com

www.printables.com/model/174866-ender-3-tool-holder/files

I made this version of a tool holder for my Ender 3. There are many different versions available, but I didn't find… | Download free 3D printable STL models

131.

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

aliexpress.ru/item/1005006142985067.html

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

2025-03-02

116.

Pill Blister Packs Holder 3D Printer Model Free Download - 3axis.co

3axis.co/pill-blister-packs-holder-3d-printer-model/7zj5v3l42o

The Pill Blister Packs Holder 3D Printer Model is stl file type, size is 375.0KB.

2025-02-24

98.

Zerochan HQ Anime Imageboard

www.zerochan.net

2025-02-02

57.

Serving Static Files With Axum

benw.is/posts/serving-static-files-with-axum

Perhaps you'd like to run a fileserver with Axum, or maybe just serve static content in a folder. It's a bit trickier in Axum than you might expect

2025-01-24

45.

Glossary of BitTorrent terms - Wikipedia

en.wikipedia.org/wiki/Glossary_of_BitTorrent_terms

2025-01-16

28.

ergo/docs/MANUAL.md at stable · ergochat/ergo

github.com/ergochat/ergo/blob/stable/docs/MANUAL.md#productionizing-with-systemd

A modern IRC server (daemon/ircd) written in Go. Contribute to ergochat/ergo development by creating an account on GitHub.

26.

Example: Cockpit - Wiki - Caddy Community

caddy.community/t/example-cockpit/8283

Cockpit is a web interface for managing a server. It creates it’s own self signed certificate by default. Here is how to configure cockpit behind caddy to have real certificates instead. sub-domain (https://cockpit.example.com) /etc/cockpit/cockpit.conf [WebService] Origins = https://cockpit.example.com wss:cockpit.example.com ProtocolHeader = X-Forwarded-Proto /etc/caddy/Caddyfile cockpit.example.com { reverse_proxy https://localhost:9090 { transport http { tls_...

2025-01-13

12.

Как поднять OpenVPN сервер на Ubuntu 22.04? / Хабр

habr.com/ru/articles/744974