1364 bookmarks

Bookmarks and whatnot. Закладки и всякое.

2024-10-02

1535.

Sound UI

www.makeworld.space/garden/Computers/Sound UI.html

I think sound is a dramatically underutilized way to communicate with the user in modern software tools. Using sound for a notification is just annoying, but using other properties (pitch, timbre, length, etc) or producing varying drone sounds across time presents new ways to passively inform users of things. A classic example of this is fan sounds alerting users that their computer is under heavy load, and perhaps something is going wrong. As modern fans get quieter, computer programs should offer similar interfaces to provide all kinds of information.

2024-09-28

Reposted 1533.

Artifacts: Image + Link Organizer app for macOS/iOS

artifacts.app

Artifacts is an image + link organizer app for macOS and iOS. A
completely native, local first way to save all that stuff you find
across the web.

2024-09-27

1532.

nkanaev/yarr: yet another rss reader

github.com/nkanaev/yarr

yarr (yet another rss reader) is a web-based feed aggregator which can be used both
as a desktop application and a personal self-hosted server.

The app is a single binary with an embedded database (SQLite).

1531.

NoteCards in a Nutshell

dl.acm.org/doi/10.1145/29933.30859

A paper about the old NoteCards program. I printed it out on an office printer and read it, unlike most other papers I saved in this Betula.

Organizing data in notecards, linking them. Notecards are not scrollable. Fileboxes and Browsers, special notecards. They state the system is programmable, but no detailed description of programmability is given. Interface is not really detailed.

Overall, this paper is not enough. I shall look for more.

2024-09-25

1530.

Israel’s Pager Attacks and Supply Chain Vulnerabilities - Schneier on Security

www.schneier.com/blog/archives/2024/09/israels-pager-attacks.html

2024-09-24

1525.

2022-03-26 Projects for the benefit of others

alexschroeder.ch/view/2022-03-26_Projects_for_the_benefit_of_others
1524.

The sad evolution of wikis

apenwarr.ca/log/20100901

Wikipedia ruined the spirit.

2024-09-21

1521.

My Wet, Hot, Off-grid Summer

cupofsquid.com/post/wet-hot-summer

Yurt don't fit every climate.

Reposted 1520.

KDE Eco – Handbook

eco.kde.org/handbook

Applying The Blue Angel Criteria To Free Software

2024-09-20

1519.

Measure execution time in Go (Golang)

gosamples.dev/measure-time

A good snippet. I used it at work.

func track(name string) func() {
    start := time.Now()
    return func() {
        log.Printf("%s, execution time %s\n", name, time.Since(start))
    }
}

func main() {
    defer track("main")() // do not forget about the second parentheses
    time.Sleep(2 * time.Second)
}

2024-09-19

1517.

Слова в моей голове про связь между линзами и чечевицей

t.me/slova_v_mojej_golove/428

Lentils и lenses родственные слова. В русском когда-то линзы чечевицами называли.

2024-09-18

1516.

The Small Internet has Already Succeeded

cheapskatesguide.org/articles/small-internet-succeeded.html

Finally, somebody said this.

1515.

Communal Luxury: The Public Bathhouse

solar.lowtechmagazine.com/2024/09/communal-luxury-the-public-bathhouse

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.

2024-09-15

1514.

pub.solar

pub.solar

We're a friendly community creating a digital corner pub.

Our goal is to enable more people to use free software, have secure digital communications, and to take control over their private data.

We host online services for you and all the people you love. We do this transparently and democratically.

1513.

ViaVersion/ViaFabricPlus: Fabric mod to connect to EVERY Minecraft server version (Release, Beta, Alpha, Classic, Snapshots, Bedrock) with QoL fixes to the gameplay

github.com/ViaVersion/ViaFabricPlus

Fabric mod to connect to EVERY Minecraft server version (Release, Beta, Alpha, Classic, Snapshots, Bedrock) with QoL fixes to the gameplay - ViaVersion/ViaFabricPlus

2024-09-13

Reposted 1512.

ametameric - color contrast for all

pippin.gimp.org/ametameric

A 16 color palette for dichromats and trichromats

Ametameric is as a system palette that provides the standard CGA/ANSI colors accomodating various forms of human color blindness/color vision deficiencies. 16 colors (including white, black and two grays) that all provide sufficient contrast for all common types of color vision. When working as intended, TUIs made to work well with the system colors (rather than 256/true color) should become accesible for color vision deficient users without further tweaks needed.

2024-09-11

1511.

BPM Analyzer

viktorgordienko.com/bpm-analyzer

BPM Analyzer - A simple tool for scanning audio files and managing your music library

1510.

How to Lose Time and Money

paulgraham.com/selfindulgence.html
1509.

Why Nerds are Unpopular

paulgraham.com/nerds.html

The main reason nerds are unpopular is that they have other things
to think about. Their attention is drawn to books or the natural
world, not fashions and parties. They're like someone trying to
play soccer while balancing a glass of water on his head. Other
players who can focus their whole attention on the game beat them
effortlessly, and wonder why they seem so incapable.

1508.

Carpentopod: A walking table project

www.decarpentier.nl/carpentopod

Back in 2008, I wrote some software for fun to generate various optimized walking mechanisms. And when I also picked up some electronics and wood working skills in more recent years, I was able to turn one of these mechanisms into an actual wireless walking wooden coffee table: the Carpentopod. This post briefly covers this project from start to end.

2024-09-10

1505.

1OPS - One Operation Per Statement

blog.pwkf.org/2023/08/17/one-sloc.html

The 1OPS principle is the single principle that had the biggest impact in my entire coding career. I gave some hints about it in a previous post, but I was suggested that it might warrant a post on its own to go more in depth.

1504.

Always Optimize for Junior Devs

blog.pwkf.org/2022/09/18/always-optimize-for-dummies.html

There is a single advice I would give to anyone writing software, and specially to great devs : Always optimize your code for your most junior developers. I agree that it is not a very popular advice, but it is the one that, in my experience, give the biggest bang for the buck.

2024-09-08

1503.

Game Boy Essentials

gameboyessentials.com

A project to review and talk about the essential games you should play on Game Boy to understand its appeal and its success.

1502.

Game Boy Camera

gameboyessentials.com/articles/mgb-006
1501.

OSDL - A guide to homebrew development for the Nintendo DS

osdl.sourceforge.net/main/documentation/misc/nintendo-DS/homebrew-guide/HomebrewForDS.html
1500.

Пишем на Java для Nintendo DS

habr.com/ru/articles/468971
Reposted 1499.

WebAIM: History of the browser user-agent string

webaim.org/blog/user-agent-string-history

how user agents became a lying mess

2024-09-07

1498.

Is Linux collapsing under its own weight? On Rust for Linux - the sporks space

sporks.space/2024/09/05/is-linux-collapsing-under-its-own-weight-on-rust-for-linux
Reposted 1497.

Iceberger

joshdata.me/iceberger.html
1496.

Mondragon as the new City-State

www.elysian.press/p/mondragon-as-the-new-city-state

Coop in Basque Country.

2024-09-06

1495.

Mastogram - Bridge your Telegram and Mastodon

mastogr.am

Mastogram helps you to keep your audience in Telegram, and your profile in Mastodon, thus boosting your capabilities.

1494.

dear-ladybird

codeberg.org/ronak69/dear-ladybird

Dear ImGui frontend for the Ladybird browser engine from SerenityOS.

2024-09-04

1491.

Encyclopedia Pathologica

encyclopatia.ru
1490.

Расстрельный список препаратов — Encyclopedia Pathologica

encyclopatia.ru/wiki/Расстрельный_список_препаратов

База.

2024-09-03

1489.

slash pages

slashpages.net

Slash pages are common pages you can add to your website, usually with a standard, root-level slug like /now, /about, or /uses. They tend to describe the individual behind the site and are distinguishing characteristics of the IndieWeb.

2024-09-02

1488.

iipc/awesome-web-archiving: An Awesome List for getting started with web archiving

github.com/iipc/awesome-web-archiving

An Awesome List for getting started with web archiving - iipc/awesome-web-archiving

1487.

Mage :: Mage

magefile.org

Something like make, but magefiles are written in Go instead. Pretty funny.

1486.

go-shiori/obelisk: Go package and CLI tool for saving web page as single HTML file

github.com/go-shiori/obelisk
  • Embeds all resources (e.g. CSS, image, JavaScript, etc) producing a single HTML5 document that is easy to store and share.

  • In case the submitted URL is not HTML (for example a PDF page), Obelisk will still save it as it is.

  • Downloading each assets are done concurrently, which make the archival process for a web page is quite fast.

  • Accepts cookies, useful for pages that need login or article behind paywall.

Might actually be a good choice for Betula archival. Might need to fork it, though.

2024-09-01

1484.

Minimal Social Markup · Jens Oliver Meiert

meiert.com/en/blog/minimal-social-markup

Every website and app these days relies on so-called “social markup,” metadata for a richer and prettier display in social media and messaging tools. On the absolute minimum you may need.

1483.

Jin

page.hyoo.ru#!=4ynowz_qskrm7

Realtime personal pages

1482.

man!( C => D )

page.hyoo.ru#!=bgoowm_2w48kc

Сравнение частых паттернов в си и ди. Ди получше получается.

1481.

BrowserPub · A browser for exploring ActivityPub and the fediverse

browser.pub

Explore the open social web through the lens of ActivityPub and the fediverse.

1480.

erkkah/tigr: TIGR - the TIny GRaphics library for Windows, macOS, Linux, iOS and Android.

github.com/erkkah/tigr

TIGR - the TIny GRaphics library for Windows, macOS, Linux, iOS and Android. - erkkah/tigr

1479.

Privacy or Accessibility... Most People Can't Have Both - Chris Wiegman

chriswiegman.com/2021/10/privacy-or-accessibility-most-people-cant-have-both

Commercial projects are often more accessible, and relying people get trapped.

1478.

Зарплаты разработчиков в первом полугодии 2024: языки и квалификации

habr.com/ru/companies/habr_career/articles/839252

Работаем.

1477.

edent/Tweet2Embed: Convert a public Tweet into embedded semantic HTML

github.com/edent/Tweet2Embed

Convert a public Tweet into embedded semantic HTML - edent/Tweet2Embed

2024-08-31

1476.

QRSVG

fietkau.software/qr

QRSVG is a small JavaScript project to render a two-dimensional bitmask (mostly assumed to be a QR code) to an SVG element as a collection of SVG paths with defined purposes.

You can pick funky logos like the ones of the Fediverse or RSS.

2024-08-29

Reposted 1475.

There can't be only one

www.b-list.org/weblog/2024/aug/27/highlander-problem

There's a concept that I've heard called by a lot of different names, but my favorite name for it is …

Reposted 1474.

Mycopunk Principles | Mycopunk principles

mycopunks.gitbook.io/mycopunk-principles

A work-in-progress to explore the principles of mycelial networks applied in socio-technical systems.

2024-08-28

1472.

BlueMap-Minecraft/BlueMap: A Minecraft mapping tool that creates 3D models of your Minecraft worlds and displays them in a web viewer.

github.com/BlueMap-Minecraft/BlueMap

BlueMap is a program that reads your Minecraft world files and generates not only a map, but also 3D-models of the whole surface.
With the web-app you then can look at those in your browser and basically view the world as if you were ingame!
Or just look at it from far away to get an overview.

2024-08-27

1471.

charmbracelet/soft-serve

github.com/charmbracelet/soft-serve

The mighty, self-hostable Git server for the command line

2 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22