[-] Feyd@programming.dev 9 points 2 months ago

I literally know nothing about Vincent other than that he's a bad dude. I just find the scenario as it has been laid out believable. If it becomes a pattern then I'll join you with my pitchfork.

[-] Feyd@programming.dev 9 points 2 months ago* (last edited 2 months ago)

Even standard boiler plate I can typically bang out faster than asking the AI to do it

The people that claim it helps with boilerplate clearly never took the time to learn how to sed/awk, mustache templates, write a perl/python/etc script, use the regex find/replace in their editor, use the keyboard macro in their editor, use snippets in their editor and I'm sure other ways that aren't immediately coming to mind that have existed forever and won't hallucinate. They're the ones that were not highly skilled in the first place and they're vexingly successful at convincing newbies and laymen to listen to them about LLMs instead of the actual skilled people that actually know what they're talking about.

[-] Feyd@programming.dev 9 points 4 months ago

You're agreeing with the comment you replied to. Why the fuck are you trying to be so smug???

[-] Feyd@programming.dev 9 points 6 months ago

OCI has a very generous free tier that doesn't even require credit card info. While for instance AWS has a free tier, the resources that are free are mostly the serverless stuff that only applies to their ecosystem, whereas OCI lets you use a significant amount of VM compute and even a decent amount of block storage. You can do a lot with it without ever paying a cent or having to learn OCI specific tech

[-] Feyd@programming.dev 9 points 10 months ago

Would you look up something if you didn't suspect it was anything more than a random skull and crossbones? Why do you think people told him it was a nazi thing? I dunno this actually seems like a totally feasible story to me, especially when you see how shitty the thing looks.

People are acting like this is a well known symbol but I didn't know it nor has anyone in real life I've talked to about this

[-] Feyd@programming.dev 9 points 11 months ago* (last edited 11 months ago)

The joke exists because there are people out there that do feel shame for their body,

Yeah. Because society is body shaming them. Like in this comic. It's baffling to me that people are so attached to their small dick jokes they'll do these mental gymnastics to try to assert it's not body shaming. If you want to be an asshole at least be honest and own it.

[-] Feyd@programming.dev 9 points 1 year ago

I'm sorry but you just straight up don't know what incident is being discussed here. Go look it up instead of talking about unrelated bullshit.

[-] Feyd@programming.dev 9 points 1 year ago

Same thing as when CEO salaries for publicly traded companies became public 📈

[-] Feyd@programming.dev 9 points 1 year ago

Your MyUnionType is defining an array (of any length) that only contains 1s and 2s. Setting values to [1,2] doesn't narrow the type down to a tuple of 2. I'm not sure why you think it would, but feel free to explain your reasoning and maybe I can clarify your misunderstanding.

In any case, it seems like you might be looking to use tuple types

// this is an array that can contain 1s and 2s
type ArrayOf1or2 = (1 | 2)[];
  

// fine, because regardless of the length, it only contains 1s and 2s
const ok1: ArrayOf1or2 = [1,1,1,2,2,2,1,2];

// no good, because it can't have a 3
const notok1: ArrayOf1or2 = [3];

type Size2ArrayOf1sAnd2s = [(1 | 2), (1 | 2)];

// has 2 so is fine
const ok2: Size2ArrayOf1sAnd2s = [1,1];

// has 1 so is not fine
const notok2: Size2ArrayOf1sAnd2s = [1];

// has 3 so is not fine
const notok3: Size2ArrayOf1sAnd2s = [1,1,1];
[-] Feyd@programming.dev 9 points 1 year ago

What you're looking for is the history of "computer vision"

[-] Feyd@programming.dev 9 points 1 year ago* (last edited 1 year ago)

The only thing that is lacking for compatibility is drivers. If that's what you meant you should have said so instead of saying hardware needs to be designed. If that's not what you meant then you don't know what you're talking about.

[-] Feyd@programming.dev 9 points 1 year ago

Is this childfree or parent hating? Some introspection might be in order - just saying

view more: ‹ prev next ›

Feyd

0 post score
0 comment score
joined 3 years ago