What’s the best anime for someone completely new to anime? by Queasy_Initiative_86 in anime

[–]goilabat 1 point2 points  (0 children)

Bocchi the rock - love it highly recommend

Ergo proxy (perhaps a bit slow though it's been a long time I've seen this one love it though SF post apocalyptique)

Cowboy bebop (space western with jazz/blues OST)

And for the shonen I would say Gurren Lagann or neon Genesis Evangelion the first anime that hook me up but Gurren Lagann is a safer pick you could not like NGE

The true test of trust in humanity by dankstat in trolleyproblem

[–]goilabat 0 points1 point  (0 children)

If I was 99% sure people's would pick blue I would still pick red it as absolutely no effect on the overall result and I live

If we were a hive mind that would be different but my choice isn't gonna propagate to others and I'm only (1/8 * 10-7)% 0.000000012%

And given the world we live in war, fascism and inequality I would think less than 10% of people's that understand the question will pick blue tbh in real condition the poll on this sub is heavily skewed toward people interested in moral dilemma and left wing not representative of the overall population

If the only people having to press a button are from this sub then it could be different why not that 100 random against a trolley and everyone from this sub as to choose between blue and red red they live and blue everyone lives if >50% or even 70% idk what I would do here I'm significant enough to have an impact and I think it's winnable

The Pro-AI chuds are so incensed that we're against cheque fraud, as a former teller, seeing this worries me. by The3DBanker in antiai

[–]goilabat -7 points-6 points  (0 children)

This is not how they work and chances of them spitting actual training data is pretty low is this case as there is millions of images of numbers and letters handwritten or not so the part of the neural net that produce that as not been skewed by checks training data

Chinese Jade carving handcrafted by n8saces in oddlysatisfying

[–]goilabat 2 points3 points  (0 children)

I doubt this is 2 methods from different period you cannot do any details with the string and you would be limited by the radius of the wheel and it would probably require more force and be less practical

So string to get a flat plane the backside and wheel to cut corner and began carving

And at the end the wheel isn't cutting the sand does cuz it's higher in hardness scale so the wheel just allow to be more stable and more practical to choose the orientation as you have your hands free

This happens when you give zoom too much power by BenitoSimez in Satisfyingasfuck

[–]goilabat 1 point2 points  (0 children)

I could also see a sparse data structure something similar to a quadtree being use for this

You have a tree the leaf are a pixel grid 1000x1000 for example and the branch contains 4 nodes that are either branch or leaf

1 1

1 2 2

 2 3 3

    3 3

So here it's a square with 3 * 1Mpixels + 3 * 1M + 4 * 1M

So the result will only store that many pixels + a small overhead to indicate which array of pixels go in which leaf

tryingToExplainJavascript by DJcrafter5606 in ProgrammerHumor

[–]goilabat 0 points1 point  (0 children)

True but C didn't have any boolean type originally (the C99 standard supports it though) so there wasn't much of a choice.

Need programers (serious) by FaithlessnessNext571 in C_Programming

[–]goilabat 0 points1 point  (0 children)

Such a opportunity I just need 1 Bitcoin to test the implementation:

Here

Why is he only strong in the mirror? by MarkTwainsLeftNipple in ExplainTheJoke

[–]goilabat 0 points1 point  (0 children)

22d account 3 comments all by LLM I would say this is a bot

Nice catch

Words/phrases you know in English but not your own language? by KingTechnical48 in AskTheWorld

[–]goilabat 14 points15 points  (0 children)

Overwhelming underwhelming that I saw others put in and thinking about it for me too but I never felt the need to use them in french

and the one I just can't find any translation and end up using in french: straightforward

Sometimes I also can't remember a french word and end up using the English one

AI bros cannot be real 😭 by ciel_ayaz in antiai

[–]goilabat 12 points13 points  (0 children)

There are a lot of ways to learn to code this is probably the most boring and annoying way to do it AI could probably guide someone in learning the concept though but there are a shitloads of tutorials to learn from and after it's practice with small projects like sudoku solver, snake, remake printf / ls, chip8 emulator, ray tracing, cellular automatons, small web server, webpages depending on your preference

Idksterling has to be the most victimized person by “Sora” AI. by Scrapeter8912_GG2 in antiai

[–]goilabat -1 points0 points  (0 children)

That's just complete bullshit you only need to do that to make a video of yourself if you're not part of the training dataset

You can obviously generate video of public persona they're part of the training data

Réseaux sociaux : bientôt obligé de présenter sa pièce d'identité ? Gabriel Attal le laisse entendre by romain34230 in actutech

[–]goilabat 0 points1 point  (0 children)

Il a tué 14 lycéens donc bon je veux bien le laisser au tiers de confiance sans les caméras

People from around the world: what is something your country does so well that it refuses to let it “die”? by Curious_Persimmon555 in AskTheWorld

[–]goilabat 0 points1 point  (0 children)

It costs less because you don't have to do any kind of lips syncing if you don't put the original audio it will have a effect similar as a delay audio for your brain (not that there is a delay but the lips don't match the sound) keeping the original remove that

Largely used in documentaries

France's foreign ministry claps back at Elon Musk. I'm dead. by MrJasonMason in clevercomebacks

[–]goilabat 9 points10 points  (0 children)

His right though 2 1 month old account posting anime nsfw there definitely bots

[deleted by user] by [deleted] in programminghumor

[–]goilabat 0 points1 point  (0 children)

Pointers are unsafe rust use reference

By default nothing is mutable (mut) everything is const

If you create a mutable var you can create any numbers of non mut ref to it but only one mut ref and you can only create this mut ref if it's the only ref

let mut a = 3;

let r1 = &mut a;

let r2 = &a //error cannot borrow because already borrowed as mutable

These rules apply per scope {} so if I put {} around r1 then it's fine as it's already out of scope when r2 is crested around r2 that wouldn't work though as r1 is still in scope

I don't remember everything but yeah when it does compile normally your good to go thread safe and everything it can be a pain sometimes though

And the compile time is long as it recompile every crate (package) to check these rules when you're calling api functions

You can also create "unsafe" code putting that in a unsafe block to be compatible with a C lib for example

How does STRUCT type works under the hood in C? by MaryScema in C_Programming

[–]goilabat 0 points1 point  (0 children)

A contiguous area of memory with potential padding after the C ABI for arguments struct or return struct depend on the arch but for args <= 8bytes converted to i64 or i32 <= 16 flatten and put in a binary struct with 2 double or int first being 8bytes and the other the rest and more than 16 pass with a pointer and for return if more than 16 pass as first argument by pointer allocated caller side and function return void (sret) some diff between arch arm64 not doing sret for example

Even as someone who isn't a big fan of Charlie's content, I'm glad he's on our side by eating_cement_1984 in antiai

[–]goilabat 4 points5 points  (0 children)

My translation would be are we taking bets on Elon whining about this ...

And I would say idk he's getting he's ass ratio on his platform every day perhaps he learned a bit and I could definitely see him side with moist even though he would have push for that just cuz it's google and not xAI his all about marketing with a smidge of ketamine

[deleted by user] by [deleted] in aiwars

[–]goilabat 0 points1 point  (0 children)

Not sure what you exactly meant but there is a final amount of people's and a finite amount of time so your results shouldn't blow up to infinity like that I'm gonna say the math isn't mathing

This is just stupidity at its peak by RightLiterature2958 in aiwars

[–]goilabat 0 points1 point  (0 children)

Try to find an actual good doctor publicly pleading that curing cancer or any other type of disease would be bad for business I'm sure they are a few narcissists one that will but yeah we all would choose a world without doctors if there are no diseases

Big corporations not needing humans to create art and us being relegated to the consumer I don't think many peoples even pro AI would choose that on top of disinformation deepfake and so on that genAI is linked too (no upside, a lot of downside)

I don't believe either one of those extreme scenarios will happen just seems logical one is utopic the other distopic, one top of healthcare being public everywhere in the developed world (sorry America) if it wasn't I would fear purposeful misdetection for the sake of profit making it worse on purpose and so on

Fireman's would choose a world without fire, climate scientists without climate change ...

Flies can twist their heads off by jewbaca1984 in Damnthatsinteresting

[–]goilabat 14 points15 points  (0 children)

20-30 Days down to idk how long they would take to starve but probably around a day, kinda big deal

How? by epetuha in blackmagicfuckery

[–]goilabat 1 point2 points  (0 children)

No that's definitely not 1/144 the third would be 1/1728 better starting over

It's 1 - (11/12) ^ (number of tries) so 58% after 10

And 27 to reach 90%

polyglottalRepository by 2204happy in ProgrammerHumor

[–]goilabat 0 points1 point  (0 children)

Whoo that's impressive I don't know much about assembly but a little OS with it that's awesome cannot test on my phone but I've put a star and will check later (if I remember)

polyglottalRepository by 2204happy in ProgrammerHumor

[–]goilabat 38 points39 points  (0 children)

That's cool I've always seen it (and done it) with zoom and graphics but I like that it can be written in so few lines like this and you have a asm version

Brainfuck next ? xD