HackerTrans
TopNewTrendsCommentsPastAskShowJobs

SPascareli13

159 karmajoined 7년 전

comments

SPascareli13
·23시간 전·discuss
Just trying to learn C again, making things from scratch in a multiplatform way, interfacing with X11 on Linux and wasm on the browser.

It's been fun dealing with memory and C's weird design in this age of agentic coding.
SPascareli13
·4개월 전·discuss
Interesting aside, BYD (Chinese EV automaker) has took over production in the old Ford factory in Camaçari.
SPascareli13
·4개월 전·discuss
If the model is trained to be a interpreter, then that means that the loss should reach 0 for it to be fully trained?

Also, if it's execution is purely deterministic, you probably don't need non linearity in the layers, right?
SPascareli13
·4개월 전·discuss
My current stance with reviewing code is: It's not ok to make another human review the code you made with AI, if you used AI then you're the reviewer, so unless you come to me with a well defined question or decision to make, just merge it and take responsibility.

Obviously that could only work in a high trust environment, that why open source suffers so much with AI submissions.
SPascareli13
·5개월 전·discuss
Freeciv was what brought me too the civ world, I'm sure this project will be the same for many children of this generation.
SPascareli13
·7개월 전·discuss
I really dislike this idea of testing in go: only ever use an interface, never the real implementation + mockgen the mocks based on this interface + use the mocks to assert that a function is called, with exactly this parameters and in this exact order.

I find this types of tests incredibly coupled with the implementation, since any chance require you to chance your interfaces + mocks + tests, also very brittle and many times it ends up not even testing the thing that actually matters.

I try to make integration test whenever possible now, even if they are costly I find that the flexibility of being able to change my implementation and not break a thousand tests for no reason much better to work with.
SPascareli13
·7개월 전·discuss
Gemini is quite optimistic here thinking GTA VI will be released by 2035.
SPascareli13
·10개월 전·discuss
The last batch of juniors we hired just completed 4 years in the company, which I would say is a pretty successful batch, but sadly we haven't hired juniors since.

Edit: I must qualify that this is for software developers only, we did hired juniors for things like data engineers, security, IT and such.
SPascareli13
·11개월 전·discuss
Implement the simplest thing that works, maybe even by hand at first, instead of adding the tool that does "the whole thing" when you don't need "the whole thing".

Eventually you might start adding more things to it because of needs you haven't anticipated, do it.

If you find yourself building the tool that does "the whole thing" but worse, then now you know that you could actually use the tool that does "the whole thing".

Did you waste time not using the tool right from the start? That's almost a filosofical question, now you know what you need, you had the chance to avoid it if it turned out you didn't, and maybe 9 times out of 10 you will be right.