KindaABigDyl

joined 2 years ago
[–] KindaABigDyl@programming.dev 4 points 2 months ago* (last edited 2 months ago) (3 children)

Yes. The only way to send patches without something like Github is over email. I don't mind all the other stuff, but there's no other way to do PRs than over email, and I hate email. I didn't see that he gave alternatives. His preferred solution was an email

The formal PR button in a forge is a way to do that with one click, but a short email with all the same information is just as good.

Like, dawg, no it aint

[–] KindaABigDyl@programming.dev 6 points 2 months ago (5 children)

I wouldn't mind doing a self-hosted git repo and only using cli if I didn't have to also use email to do so.

Seriously the worst part. Email is a technology that should be left in the past. It's just awful. There's no good way to do email.

[–] KindaABigDyl@programming.dev 2 points 2 months ago

does represent /ð/ in this romanization, yes.

As for being thou or tu, I'd have to check my design document.

[–] KindaABigDyl@programming.dev 3 points 2 months ago (2 children)

I did once make a conlang that was what an Old English-Old French creole would be like.

Here's the Sermon on the mount:

[–] KindaABigDyl@programming.dev 8 points 2 months ago (1 children)

Isn't anarchy just against imposed hierarchy? Most anarchists I've met are okay with heirarchies that form naturally, and believe those hierarchies to be enough for society to function, hence why they call themselves anarchists, not minarchists.

[–] KindaABigDyl@programming.dev 2 points 3 months ago* (last edited 3 months ago) (2 children)

Bro what? TI has like... the best docs. What are you talking about? They have the Microsoft C# docs of the semiconductor world. Clear examples, every little detail, well organized. Darn near perfect example of what to do

[–] KindaABigDyl@programming.dev 1 points 3 months ago

I mean, it's fine. And if you can't find something the NixOS subreddit is usually pretty helpful

[–] KindaABigDyl@programming.dev 10 points 3 months ago

I have another one:

30min of fighting with an LLM can save you 10s of boilerplate

[–] KindaABigDyl@programming.dev 12 points 3 months ago* (last edited 3 months ago) (1 children)

❌ Imperative

❌ Functional

❌ Object-oriented

❌ Stack-oriented

❌ String-replacement

✅ Rat-Oriented

[–] KindaABigDyl@programming.dev 23 points 4 months ago

GLFW is a C library, not a C++ one, and an old one at that, and so the reason is that a long time ago, there was no bool in C. Every library would make their own true and false bc it's handy to have.

Nowadays, the type _Bool has been added to C, and C++ has built-in bool, but you can still see the legacy of no boolean in C as to use the type name "bool" as well as the key words "true" and "false" for 1 and 0, you have to include "stdbool.h," as well as in custom types in these old GL-adjacent libraries.

view more: ‹ prev next ›