

Oh i know
I’m more blaming the system than the user. The system is designed to be as addicting as possible. Literally a century of addiction research into drugs and gambling, all used to squeeze every drop of engagement from the user


Oh i know
I’m more blaming the system than the user. The system is designed to be as addicting as possible. Literally a century of addiction research into drugs and gambling, all used to squeeze every drop of engagement from the user


Anything to get that dopamine drip from the Black Rectangle


It’s not about what the user wants. It’s about what will make the most profit for Microsoft


Federated git hosting platform when?
Something about this composition is giving AI, but the line art says hand made…
Traced AI art, perhaps?


Not wanting to maintain a multi-language repo, and not wanting to maintain support for rust integration
Edit: I kinda assumed the guy in the pic was that kernel maintainer who kept throwing a stink about Rust code, but it’s apparently not
I like solving puzzles, and I have a knack for programming specifically


Python
It’s an amazing scripting language, and my goto for writing automation scripts.
It’s the most lenient of the 3 with dynamic typing and managed memory. It’ll let you learn the basics of reading / writing / running code as well as basic control flow and logic
C is also great to learn, as it teaches you how computers work at a fundamental level, but it’s more stuff to learn up front, and can lead to some very difficult to fix bugs
Java is good as an “application” language. Being memory managed like Python, but statically typed like C. Static typing makes it easier to manage larger code bases


Once i have a solid implementation, I wanna morph it into a custom scripting language for generating diagrams (a la graphviz or mermaid js)


I literally just wrote this a few hours ago (line 55)



That doesn’t mean anything. They can request your browsing history directly from your ISP


Me: I wonder how they know it was staged
But investigators later concluded Greene had staged the attack, alleging she paid a body modification artist earlier to make it look like she was injured. Officers also found zip ties in Greene’s vehicle similar to those used on her, and the co-conspirator’s phone had been used two days earlier to search “zip ties near me."
Lol


IIRC, kernel level anti cheat works for linux. It’s at the company’s discretion if they enable support for Linux clients


Waydroid doesn’t intend on supporting it. It’s a piece of code that checks for evidence of “tampering” (such as an unlocked bootloader, or root access), and sends those bits of data off to Google’s servers for verification
It’s antithetical to Waydroid and device freedom, and is used by banking apps for “security” reasons, as well as media apps for piracy reasons
And is a massive pain for anyone who root’s their devices


Never make things more “impressive”
Make them more comprehensible
Reduce the cognitive load required to understand and reason about a piece of code. Honestly, the more you can express complicated ideas simply, the more impressive you are


I did this once
I was generating a large fake dataset that had to make sense in certain ways. I created a neat thing in C# where you could index a hashmap by the type of model it stored, and it would give you the collection storing that data.
This made obtaining resources for generation trivial
However, it made figuring out the order i needed to generate things an effing nightmare
Of note, a lot of these resource “Pools” depended on other resource Pools, and often times, adding a new Pool dependency to a generator meant more time fiddling with the Pool standup code


Separate out those “concerns”, into their own object/interface, and pass them into the class / function at invocation (Dependency Injection)
public Value? Func(String arg) {
if (arg.IsEmpty()) {
return null;
}
if (this.Bar == null) {
return null;
}
// ...
return new Value();
/// instead of
if (!arg.IsEmpty) {
if (this.Bar != null) {
// ...
return new Value();
}
}
return null;
}
Because that’s how most people implicitly frame headlines like this one: a generalization of the public