reabsorbthelight

joined 1 week ago

I loved python when I was a junior dev. Now I hate it (except for things like computational math). I have to add debug statements to figure out that someone snuck in the wrong type into the code.

 

I have been experimenting to treat my SAD. So far light seems to be the most important, but anecdotally when I take melatonin at night, I feel more awake in the morning.

Is this known to help? I couldn't see any research on it in my search. I'm wondering if the melatonin usage helps control my rhythm better.

They should honestly just wrapper the majority of the code base in rust unsafes and then slowly very slowly migrate sections of the code to rust. This is the right way to do it imo

Will they do that? Nope.

[–] reabsorbthelight@lemmy.world 4 points 2 days ago (1 children)

Nobody is truly reviewing that stuff. Would you if you were in that job? Just blame mistakes on AI

[–] reabsorbthelight@lemmy.world 4 points 2 days ago (1 children)

Are there any instances of this? It looks promising

 

My LongFast message history keeps disappearing. Is this expected?

I'm on Android with GrapheneOS

[–] reabsorbthelight@lemmy.world 2 points 4 days ago (3 children)

Is there an alternative way to contribute to them? I would happily send money directly to the artists, but I don't know how

[–] reabsorbthelight@lemmy.world 3 points 1 week ago (1 children)

I find that it basically can't do decent architecture. My last attempt to use it ended with it using casbin, but then rewriting it's own authorization framework and trying to use both at the same time 😶.

I think there is a lot of power here, but it needs very heavy guidance and handholding to do it well. Otherwise it makes very stupid intern level decisions

[–] reabsorbthelight@lemmy.world 10 points 1 week ago (7 children)

Ideally they'd compare time to write + time to fix. My experience is that if you use test driven development, LLM isn't too bad. No worse than an intern.

I think it comes down to who is using the LLM. I had a junior dev once "presumably" AI gen a ton of code (broken trash). Then to fix it, they wrapped each function in a try catch block that dropped the error. Unit tests were mocked out to the extent they didn't test anything.

When I use an LLM, I have tests and hard constraints on the LLM. It isn't good enough to do everything, but it can generate about 80% of a simple app