Eyy somebody else watched the new Climate Town vid haha
Traister101
Yo whatup
- 2 Posts
- 110 Comments
Douno off the top of my head. To take a wild guess they might just wrap a file handle and give it s nice api? If that’s what they do then moving from the file zeros out he handle for basically the same reason smart pointers set their internal pointer to nullptr, so they don’t delete it (or close the file in this case) underneath the new object.
Depends on the object what happens when they are moved from. Some objects are put into a valid moved from state (usually depends on if doing so is free or required anyway. For example to satisfy the invariant of the moved to unique pointer the moved from pointer needs to be set to nullptr in order to prevent the moved tos unique pointer being deleted from underneath it)
I caught up, chapter 50. Um so frankly put this is just porn. I’m genuinely kind of invested now though so fuck it, this is going on my trackers
Hmmmmmmmm
Half way through the first chapter and it hasn’t hooked me yet but I am still… intrigued.
Okay so chapter two down and I think I’m noticing a pattern in who is bothering to translate this Manga so far. Both chapters were done by totally different people and neither was super high quality (though not terrible). Wonder if pattern persists since there’s 50 chapters at least where I’m sourcing it from.
Lol this dudes a trooper they learned not just English but also Japanese competently enough to translate it well enough. Hats off to you Chekov
Chapter 6
Damn she snowballed him lmao
I’m not sure why exactly but the fact they are going to research more “lewd sounds” is incredibly funny to me
Alright so chapter 8 kind of hooked me, been about half an hour of time investment so far including updating this here comment so if anyone else is also curious there ya go.
Traister101@lemmy.todayto Manga@ani.social•Manga General Discussion Thread - RIP MangaDex Edition [2025, Week 21]English4·2 months agoYeah I’m not sure why it shits the bed so badly. If it helps you can move the folder under
local
(rather thandownloads/<source>
) and it’ll show it again
Please, I don’t want Okay Buddy Hololive brain rot on lemmy
I genuinely don’t know why people are confused about the Demons in frieren. They are fundamentally incompatible with humanity. There is no Grey zone. They are monsters, not your happy friendly fantasy where some monsters are good monster monsters. The only connections they are capable of understanding is strength. The only language they truly understand is power. They learned the human tongue not to communicate but to manipulate. The anime and the Manga make it exceptionally clear, the Demons in Frieren are just monsters. There is no redemption. Just like how you can’t genocide a lion, or a mosquito you cannot genocide the demons in frieren.
Until you’ve paid hundreds of dollars into using your own internet to play online (on servers your console company doesn’t even pay for)
No you can’t? Do you even know what the steam deck is? It’s a hand held gaming device, like the Nintendo Switch. Adding a computer monitor to the steam decks price tag is nonsensical. Like the Switch you’d be using a TV if your hooking it into something. A wireless controller? Why? It’s a steam deck it has a controller built in. Joystick grips? The fact you think those are needed goes to show how shit the standard console controllers are lmao.
They’re supposed to but well, you know
Traister101@lemmy.todayto Anime@ani.social•Any one else here have watched RE:Zero Season 2 anime subbed?English3·2 months agoSubs are usually on screen for as long as people are saying the words. When they talk quickly they go by quickly. Also it just depends? There’s a bunch of different Re:Zero subs a particular legal one standing out as being awful (good ol Crunchyroll). You probably just read slowly, you’ll speed up with practice
Even Java has streams and stuff. Course Java so it’s kind of weird (iterators are mutable and internally iterate the collection/whatever lazily) streams are lazy and only go through all the operations, mapping, filtering ect when you collect the elements somehow (like rust). JS is wild lol
Traister101@lemmy.todayto Programming@programming.dev•Vibe Coding is not an excuse for low-quality work9·3 months agoWhat ramdon ass language could they possibly be pulling out of their ass for you to he completely unable to write a for loop? I’ve yet to see a for loop, or really any sort of loop that doesn’t look pretty much exactly like the standard C style for loop
for(int x = 0; x < z; x++) { }
If you have a C style language with iterator for loops like C++, Java and friends you almost certainly have this syntax
for(int x : numbers) { }
Python has exclusively iterator for loops with this syntax
for x in range(z)
The only real difference is that instead of a colon
:
you use thein
token.At best I can see the need for a quick refresh on what the exact syntax is but if your a senior any languages you actually use should have a template for junk like this. I don’t think I’ve manually written a loop in ages, I just type out
iter
for an iterator for loop or when I rarely need an indexfori
and the rest gets stamped out for me.If your being tested on random languages you can simply just not be familiar with a language. I haven’t touched Zig once but I’d totally be down to learn it. Everybody whos got a couple languages under their belt knows how easy it is to pick up new ones.
Traister101@lemmy.todayto Anime@ani.social•WIT Studio Producer Calls Out Netflix For Not Promoting Moonrise Anime ProperlyEnglish3·3 months agoI mean Netflix, they do this shit all the time even to their own shows it’s so strange
I mean would it? You’d have a dude making eyes at some girls dad.
Traister101@lemmy.todayto Anime@ani.social•Media Do Distributor Sells MyAnimeList Site to Web3/AI Company GaudiyEnglish3·3 months agoMAL sync does other trackers like Anilist (and will go through and sync it for you)
And it’s in the same tier as “Subaru dies” after you’ve seen the first episode. If I wanted to purposefully spoil you I can do so in 2 words and you’d be real fuckn mad. Season 3 is great, quit putting it off
I mean she’s an Archbishop, the only one who’s sort of sane is Regulus and he’s got his own brand of insanity
LLMs making you code faster means your slow not LLMs fast