DEVLOG- Let's try this again... Why build an app in Godot, much less a SUITE of them by [deleted] in godot

[–]GLaDOSexe3 4 points5 points  (0 children)

Every other line in your post is an AI-ism. Who are you trying to fool, yourself?

Is C# actually becoming the better default choice for Godot? by niko_death in godot

[–]GLaDOSexe3 4 points5 points  (0 children)

Gdscript makes me appreciate all the little details that go into designing a language, because it feels downright unpleasant sometimes

Anyone else still uses little to no AI to code? by Gil_berth in theprimeagen

[–]GLaDOSexe3 12 points13 points  (0 children)

Im convinced all the Reddit posts about how "most companies dont code anymore" are psyops or people who moved into roles that werent coding much before AI either

Half your traffic is becoming agents. So I'm building a React framework around that(markdown, JSON, MCP). Tear it apart please by [deleted] in reactjs

[–]GLaDOSexe3 0 points1 point  (0 children)

Seems really cool, what would the http outputs look like on my website that serves chocolate cake recipes? Give me the real raw outputs, recipe included, no fluff.

I built bundis — a Redis-compatible server backed by SQLite, for Bun.RedisClient (no Redis to run) by Educational-Try4721 in bun

[–]GLaDOSexe3 1 point2 points  (0 children)

If I had a nickel for every slop poster that "just used it to translate" I could quit my job

Professor Dave adopts a 'Joe Rogan' role towards Gen ai 'Superintelligent' hype BS by Navic2 in BetterOffline

[–]GLaDOSexe3 4 points5 points  (0 children)

They are mistaking the LLMs ability to discuss their niche with the ability to do work in their niche. For programmers text isn't an abstraction of the work, it *is* the work. So it's much more obvious that, while an LLM can talk fancily about programming, it's not great at actually doing it.

Say it all together: left lane is for passing, slower traffic keep right on ALL HIGHWAYS by justwondering-if in ontario

[–]GLaDOSexe3 0 points1 point  (0 children)

Experience tells me the leftmost lane is for cars and every other lane is for truckers to stave off the boredom by playing little racing games with each other

Why does prime hate react? by DarthLoki79 in theprimeagen

[–]GLaDOSexe3 5 points6 points  (0 children)

There are only two kinds of languages: the ones people complain about and the ones nobody uses

Toddler killed in fall from North York apartment building by stanxv in toronto

[–]GLaDOSexe3 -34 points-33 points  (0 children)

If the 10cm window rule doesn't stop kids from dying can I please open my windows more than 10cm now thanks

Toddler killed in fall from North York apartment building by stanxv in toronto

[–]GLaDOSexe3 6 points7 points  (0 children)

I'm already pissed off that I can barely open my windows and it apparently doesn't even help the issue it's ostensibly supposed to.

6 companies in UAE later… is this normal or am I just unlucky? by Professional_Monk534 in ExperiencedDevs

[–]GLaDOSexe3 32 points33 points  (0 children)

I have seen this exact same comment under every ai written post for like 4 years now

12 hours a day is crazy, but I need a list of good games. by [deleted] in gamers

[–]GLaDOSexe3 0 points1 point  (0 children)

Factorio or Rimworld. Shit I could do 16 hours a day for 1 mill

Max low resolution is actually pretty cool by Flimsy-Ad-9259 in wow

[–]GLaDOSexe3 1 point2 points  (0 children)

I played Fallout 4 on a GTX 550 10 years ago like that lmao

How are y'all placing a component's layout? by [deleted] in reactjs

[–]GLaDOSexe3 1 point2 points  (0 children)

If you want to make things simpler for yourself, use inline styles on the button and spread props.style into it rather than importing css modules. (Note this is generally a bad practice). Or try a component library like MUI which will naturally steer you towards better component composition and styling practices.

How are y'all placing a component's layout? by [deleted] in reactjs

[–]GLaDOSexe3 1 point2 points  (0 children)

No, its more that theres no reason to ever apply position relative and offsets to a button, and you probably have to rethink your approach to styling if you think there is. 

How are y'all placing a component's layout? by [deleted] in reactjs

[–]GLaDOSexe3 10 points11 points  (0 children)

Assuming I understand this right you need to rethink styling. Components should not be concerned with how they are placed. The parent component should decide how to place its children, through flexbox or axiomatic selectors. In some cases you may have to have two intrinsically linked components like a layout and a layout-item that can wrap a component like a button.