- 1 Post
- 13 Comments
drjkl@programming.devto Programming@programming.dev•Critical Rust flaw enables Windows command injection attacks11·1 year agoI’ve run into bizarre behavior with windows command lines plenty of times before, but I’d never put all the pieces together and realized that:
a) windows really does pass around unadorned monolithic strings containing the entire command line of an executed command, and
b) there’s no parsing standard for command lines in windows
sigh, windows
drjkl@programming.devto Technology@beehaw.org•Threads Has Begun Federating Via ActivityPub10·2 years agoI see we’ve hit the first E: Embrace. I’m betting it’ll only be a few months until they’re Extending the protocol. Any wagers on how long until we hit Extinguish? 3 years maybe?
drjkl@programming.devto Gaming@beehaw.org•EU court rules people can resell digital games21·2 years agoNeed someone who knows more about EU law to chime in here: does this mean valve et al will be forced to implement a way for users to resell/transfer games to other users?
drjkl@programming.devto World News@lemmy.ml•Russia urges progress in Nord Stream pipelines sabotage probe0·2 years agoFrom wikipedia:
China Daily is an English-language daily newspaper owned by the Central Propaganda Department of the Chinese Communist Party.
Ah good, a trustworthy source.
drjkl@programming.devto World News@beehaw.org•Orlando police officer accused of reckless driving, fleeing traffic stop in patrol cruiserEnglish1·2 years agoYes he did. And 99% of the time, he’d be right in his assumption. Because he’s a cop.
drjkl@programming.devto World News@beehaw.org•Met says Just Stop Oil protests have cost it more than £4.5m in six weeks5·2 years agoThose are rookie numbers; gotta pump those numbers up.
drjkl@programming.devto Gaming@beehaw.org•Star Wars Outlaws Announced - Coming 2024English0·2 years agoDo we know anything about genre/gameplay beyond “open-world”?
Is there not a search button at the top-right? It has options to search subscribed/local/all and seems to work fine for me. I’m on an instance website, for clarity. Haven’t tried Jerboa yet.
This is actually quite strange to me - that lemmy doesn’t use permalinks by default. When viewing from a non-source instance, there’s a link button between the comment count and the save button that takes you to the post on the source instance, but that seems inadequate. I guess the post on the origin instance is its own permalink, but I don’t like that it’s not distinct in some way.
drjkl@programming.devto Technology@beehaw.org•what would Reddit need to do to get you to go back2·2 years agoAt this point, me run out of alternatives worth trying. Just signed up for a lemmy instance today, and liking what I’m seeing so far (even if communities are quite a lot smaller than I’m used to at the moment), but there are other sites that might scratch the reddit itch that I’ll try even if the fediverse stuff doesn’t take off. Reddit has shown that that they’re a) greedy, and b) incompetent at being greedy. And I’m not going to contribute to them again until I’m well and truly out of other options.
This reminds me of something (far, far simpler) that I did long ago. I wrote a small webapp that continually queried various servers and would keep the connection open to push new <div> blocks as the server-side async queries completed. I ran into output-buffering issues (probably from the reverse-proxy server, but I can’t be certain at this point) and ended up appending a 1K block of commented-out non-printing unicode characters to ensure it would get flushed to the browser. I called it the plunger. Probably not the best solution 😅