Viewing profile — SPascareli13
SPascareli13
HN member- Joined
- Sun, Aug 25, 2019, 4:57 AM UTC
- HN karma
- 160
- Public activity
- 87 items
- HN profile
- View on Hacker News ↗
About SPascareli13
No profile information was provided.
Recent public activity
-
comment
Comment #49230998
You need some JS in the middle but yes, you write your image to a buffer and share it with JS, then in the JS you put it in the canvas.
-
comment
Comment #48885350
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 we…
-
comment
Comment #47473644
Interesting aside, BYD (Chinese EV automaker) has took over production in the old Ford factory in Camaçari.
-
comment
Comment #47366526
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 …
-
comment
Comment #47292915
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…
-
comment
Comment #46920719
Freeciv was what brought me too the civ world, I'm sure this project will be the same for many children of this generation.
-
comment
Comment #46375742
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 …
-
comment
Comment #46208419
Gemini is quite optimistic here thinking GTA VI will be released by 2035.
-
comment
Comment #45108031
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 qua…
-
comment
Comment #45069194
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 m…
-
comment
Comment #42270895
As far as I know there is no way to do Promise like async in go, you HAVE to create a goroutine for each concurrent async task. If this is really the case then I believe the submit…
-
comment
Comment #41888182
Go is a great tool for simulating network concepts, I've done it too.
-
comment
Comment #41765756
I think I tested very casually some time ago with Go maps and up to like one hundred items the linear search on array was faster than map lookup. Considering that many times when w…
-
comment
Comment #41731981
Not sure about this particular instance. LTT got a video taken down by community guidelines violation just the other day, and they are much bigger than Jeff.
-
comment
Comment #41703259
> Isn't Jai still vapourware after a decade ? Yes, I guess. I wouldn't be surprised to see "Jai inspired" languages coming out before Jai itself, since some of the ideas look prett…
-
comment
Comment #41693456
I don't know if there's ever been a language that was announced 10 years before its first closed beta. I don't even know if having a "closed beta" for a language is something that …
-
comment
Comment #41692539
I was thinking about that just the other day, who it would be really cool if Go had compile time code execution. I think Jai is making that a very prominent feature of the language…
-
comment
Comment #41665964
This looks absolutely amazing and absurd at the same time. All IO is synchronous? Writes don't actually write when they say they do? Running 201 queries is as "fine" as running a s…
-
comment
Comment #41643242
Only 3.4k of C code for a full http and https server? I honestly thought you would need a lot more for it to be fully compliant with the spec.
-
comment
Comment #41569413
I remember a few years ago a very good engineer in our company shared a very similar article about hexagonal architecture in golang, and a lot of people started using it, including…
-
comment
Comment #41471421
You need a separate package to actually serialize protobuf from a congen'd struct, so it uses reflection.
-
comment
Comment #41088359
Someone said that the word "delve" is a favourite of AI and a sign that something was AI written.
-
comment
Comment #41016093
If the orq instruction was really a noop then there would be no problem as well?
-
comment
Comment #40871245
That's 402Tbps. I don't know why the title uses this weird "402M Mbps".
-
comment
Comment #40738877
The thing about your comment is that it seems that you believe containers are something you use for added security, and that is very much not the case. But I don't disagree about r…