programming

"Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearPR
programming Imnecomrade Now 100%
Tengine: open-source web server, originated by Taobao, based on Nginx
https://tengine.taobao.org/
4
0
"Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearPR
programming git Now 100%
GitHub - WinampDesktop/winamp: Iconic media player
github.com
9
5
"Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearPR
programming git Now 100%
Slowly booting full Linux on the intel 4004 for fun, art, and absolutely no profit
dmitry.gr
18
0
"Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearPR
programming git Now 100%
Keyhole | Forge your own Windows Store licenses
massgrave.dev
13
0
"Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearPR
programming git Now 100%
Plain X11 emoji keyboard
github.com
12
0
"Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearPR
programming git Now 100%
PySkyWiFi: completely free, unbelievably stupid wi-fi on long-haul flights | Robert Heaton
robertheaton.com
36
3
"Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearPR
programming git Now 100%
I Have No Constructor, and I Must Initialize
consteval.ca
12
0
"Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearPR
programming git Now 100%
Detecting a PS2 Emulator: The VU0 Pipeline
https://fobes.dev/ps2/detecting-emu-vu0-pipeline
8
0
"Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearPR
programming darkmode Now 100%
Recommended Setup for FOSS OCR

Hi, I need to read handwriting off scanned documents and then file them digitally. What's the best way to approach this? I've done some searching myself but I'm curious what you nerds think. Ty.

13
3
"Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearPR
programming git Now 100%
Amber: Programming language compiled to Bash
amber-lang.com
22
11
"Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearPR
programming git Now 100%
Halo 2 in HD: Pushing the Original Xbox to the Limit
icode4.coffee
6
0
"Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearPR
programming Llituro Now 100%
[New Rust Version] Announcing Rust 1.77.0 | Rust Blog
blog.rust-lang.org
15
1
"Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearPR
programming kota Now 100%
Redis switched to a proprietary license - a reminder not to trust non-copyleft software
github.com

Pretty much what is says in the title. Redis had been using the BSD-3 license for years to encourage developers to write code for them for free and now they've gone and switched to some custom proprietary license in order to secure their theft of the labor of everyone who has contributed to the project over the years. It's the same age old story. A harsh, but important reminder to never write code for projects with these weak open source licenses. These licenses ONLY exist so that your labor can be stolen, either by them re-licensing at some point in the future or other companies taking it right now. That's the only reason they use BSD/MIT-style licenses. As an aside it's a shame we're stuck with the GPL given the person who wrote it.

28
3
"Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearPR
programming git Now 100%
teable: A Super fast, Real-time, Professional, Developer friendly, No code database
github.com
7
1
"Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearPR
programming git Now 100%
Byte-sized Swift: Building Tiny Games for the Playdate
www.swift.org
9
0
"Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearPR
programming FunkyStuff Now 100%
What's a good way to send binary (audio/mpeg) data alongside some numerical data?

I'm building a system where I'll have some embedded devices sending audio data to my server via HTTP, along with a small amount of numerical data. It's important that before these are sent to the database, they're bundled together. Another point, the client needs to authenticate to upload data. The naive solution would be to send everything together as a JSON object and just base 64 encode the audio, with a single backend endpoint for receiving both the audio and the other data. My concern is, base64 adds a pretty significant amount of overhead (4 bytes of base64 for every 3 bytes of audio) and that is a problem for me, it's more power usage and it's a medium amount of data, a 33% tax is non-trivial. Network encoding might reduce that problem, but I can't be entirely sure until I test. The other solution would be setting up a different endpoint for audio that can receive the binary data directly, maybe through a stream. This probably is the most efficient way to go about it, but it introduces some complexity as to how I'm supposed to match up the audio with the other data. I'm not very familiar with backend engineering so I'm not sure if there's a straightforward solution that is just an unknown unknown for me. Maybe I can hash the audio data in the client, include it in the header for both requests, then keep a record of incoming requests along with their hashes in a dictionary in the server (push them as they're received) so they can efficiently be matched up with each other? ![three-heads-thinking](https://hexbear.net/pictrs/image/15281eb0-5ffc-465a-8459-169a156c578f.png "emoji three-heads-thinking") Feels like a cool solution, but IDK, thoughts? Should I just eat the 33% overhead from the simple solution and accept that premature optimization is the root of all evil?

15
7
"Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearPR
programming git Now 100%
Hyperdiv – Reactive, immediate-mode web UI framework for Python
github.com
5
0
"Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearPR
programming git Now 100%
So you think you know C?
https://wordsandbuttons.online/so_you_think_you_know_c.html
25
14
"Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearPR
programming git Now 100%
Doing First Grade Math in Rust's Type System
https://fprasx.github.io/articles/type-system-arithmetic/
9
0
"Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearPR
programming git Now 100%
Learning Golang. First impressions (song)
https://www.youtube.com/watch?v=raJGZaIPhOc
6
0
"Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearPR
programming git Now 100%
NPM registry prank leaves developers unable to unpublish packages
www.scmagazine.com
17
2
"Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearPR
programming git Now 100%
Go: What We Got Right, What We Got Wrong
commandcenter.blogspot.com
10
1
"Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearPR
programming git Now 100%
Red Blob Games: Introduction to A*
www.redblobgames.com
3
0
"Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearPR
programming git Now 100%
A* Tricks for Videogame Path Finding | Tim Mastny
https://timmastny.com/blog/a-star-tricks-for-videogame-path-finding/
15
0
"Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearPR
programming kleeon Now 93%
The Worst API Ever Made
caseymuratori.com
13
5
"Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearPR
programming git Now 96%
4 billion if statements
https://andreasjhkarlsson.github.io//jekyll/update/2023/12/27/4-billion-if-statements.html
23
4
"Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearPR
programming zongor Now 100%
lemmyfs prototype for plan9

Playing around with plan9’s webfs, have a prototype for reading/writing to the lemmy api as if it were a series of files. The program creates the files dynamically and it can then be mounted to wherever, in the case of the example here I just mounted it to the /n directory. Currently I only have one api endpoint but this is good enough for a proof of concept.

12
7
"Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearPR
programming tetrabrick Now 100%
What would be a good web framework to use as a beginner for my project?

I have being wanting to experiment to recreate the game battleship as a website, I have already made some proyects with JSPs (Jakarta). At first i thought of using htmx and go because i like the idea of building the interface in the backend, the thing is i'm a little stuck is server-client comunication, for example when the server notifies the client that it is their turn. I saw the concepts of server side events and i don't know if there is another way that i haven't thought. Thank you for reading this

8
3
"Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearPR
programming blakeus12 Now 100%
Best IDE/Text Editor for writing Kotlin on Linux?

Hello! I want to write Kotlin for something to keep my brain busy during my spare time. I am aware of IntelliJ, but I would like to avoid it due to telemetry and a general distrust of JetBrains (I downloaded IntelliJ back when I had windows and after i deleted it i found a "JetBrains" or "IntelliJ" folder in a new spot in my computer once a week). IntelliJ community is open source, so is there any telemetry-free forks a la LibreWolf? If not, what do you reccomend for writing Kotlin code? Thank you comrades!

9
6
"Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearPR
programming git Now 100%
Exploring The Halo 1 System Link Protocol | hllmn.net
https://hllmn.net/blog/2023-09-18_h1x-net/
1
0
"Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearPR
programming git Now 100%
Fixing QuickLook
https://foon.uk/fixing-quicklook/
1
0
"Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearPR
programming davel Now 100%
Paul Cockshot: Materialism and number theory
https://www.youtube.com/watch?v=x6ExkJhk7lA

A refutation of Cantor’s idealist [diagonal argument](https://en.wikipedia.org/wiki/Cantor's_diagonal_argument) using Turing’s materialist theory of computation.

1
2
"Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearPR
programming FunkyStuff Now 100%
How do we feel about static vs dynamic typing?

And how would you describe your political tendencies? I have a theory that more MLs are gonna be into static typing and more anarchists are gonna be into dynamic typing.

1
0
"Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearPR
programming zongor Now 100%
I finally have place to post this amazing scheme flavor
github.com
2
0
"Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearPR
programming privatized_sun Now 100%
What is the political economy of self-hosting? Is it neoliberalism to decentralize corpo apps into atomized individualism? What's the alternative to utopian free market reddit PMC anarchism?
https://en.wikipedia.org/wiki/Self-hosting_(web_services)

https://lemmy.world/c/selfhosted https://old.reddit.com/r/selfhosted/ >Self-hosting is the practice of running and maintaining a website or service using a private web server, instead of using a service outside of someone's own control. "private" a radlib is someone who pretends to be radical but are simply just another neoliberal, like the freakish class of Xeni Jordan ass technocratic redditors lol >Self-hosting allows users to have more control over their data, privacy, and computing infrastructure, as well as potentially saving costs and improving skills "improving skills" (neoliberal Obama PMC eye lasers meme) MORE SKILLS??? Wow! That means these filthy working class creatures are less worthy of liquidation. Historical progress is truly incredible ![matt](https://www.hexbear.net/pictrs/image/fd48e2aa-8e01-4fba-9e49-160a49c5e4e1.png "emoji matt") >The practice of self-hosting web services became more feasible with the development of cloud computing and virtualization technologies, which enabled users to run their own servers on remote hardware or virtual machines. The first public cloud service, Amazon Web Services (AWS), was launched in 2006 these allegedly anti-capitalist redditors only exist because of the most demonic neofeudal corpos gave birth to them, really makes you think --- "Marxism is outdated, decentralized individualist praxis will win, google Bookchin!" - anarchist PMC university students at Occupy Wall Street (13 years later) Hexbear: "nooo anarcho-neoliberalism isn't real!!! Actually true Marxism is free association between free producers in a free market, my incredibly niche and exclusive e-anarchist praxis of forming a small cell with like 10 people in it is literally communism" ![maybe-later-kiddo](https://www.hexbear.net/pictrs/image/f778a7ca-0453-4eae-85d0-75814bb712f1.png "emoji maybe-later-kiddo")

2
11
"Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearPR
programming KimJongGoku Now 100%
pro std::variant aC++tion

Imagine paying your union dues and not even being typesafe as a union member

2
1
"Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearPR
programming moondog Now 100%
Hello, world!

we're not legally allowed to have anything else as the first post ![freeze-peach](https://www.hexbear.net/pictrs/image/2e218d49-4c3f-484f-b9fd-eeee92d43af3.png "emoji freeze-peach")

2
0