Viewing profile — valcron1000
valcron1000
HN member- Joined
- Wed, Dec 08, 2021, 6:00 AM UTC
- HN karma
- 346
- Public activity
- 172 items
- HN profile
- View on Hacker News ↗
About valcron1000
No profile information was provided.
Recent public activity
-
comment
Comment #49129955
22 years late, but better late than never.
-
comment
Comment #49106095
Care to share your setup? I'm currently working on pretty much the same thing and it's looking good so far, but having a single user makes it hard to get enough feedback.
-
comment
Comment #49077495
> what should be done about open weight bioweapon and cyber-offense capabilities? Is it simply the cost of freedom that we should allow attackers to access these tools? Yes, in the…
-
comment
Comment #48874559
Had no nuke the `target` folder a couple of weeks ago, +400 GB ...
-
comment
Comment #48646431
This guy has been preaching against crypto for years, to the point of leaving the Haskell ecosystem just because the language was being used by Cardano. At some point you have to w…
-
comment
Comment #48275045
Damn, that looks awful.
-
comment
Comment #48207974
Where can we read the code?
-
comment
Comment #48042437
> if it’s a solo greenfield project That's a big if. I don't have numbers but most professional engineers are not working on such projects
-
comment
Comment #47316943
I've been thinking of doing the exact same thing. Preserve context as images and die. Expose a single tool called "eval". You could have a extremely tight editor integration using …
-
comment
Comment #46873920
Still nothing to compete with GPT-OSS-20B for local image with 16 VRAM.
-
comment
Comment #46583654
> When something breaks, I SSH in, ask the agent what is wrong, and fix it. > I am spending time using software, learning What are you actually learning? PSA: OP is a CEO of an AI …
-
comment
Comment #46481574
If international law had any effect people would believe in it. You're mixing cause/effect. This situation has been going on for years and the lack of response by international org…
-
comment
Comment #46362395
I'm unfortunately on the same situation. We made a consultation with people from Baptist Health Miami and it seems like there are several non trivial requirements for such treatmen…
-
comment
Comment #46332720
One of the first things I tried in Rust a couple of years ago coming from Haskell. Unfortunately it's still not stabilized :(
-
comment
Comment #46028196
> Memory safety is not that sacred. In fact, for many applications malfunctioning is better than crashing Yeah, just another data leak, no biggie.
-
comment
Comment #45943723
Not at the same level. TRAMP is way behind feature-wise.
-
comment
Comment #45880492
> Zig must also be good for eliminating the same ones. But Zig does not eliminate them, but rather it might catch them at runtime. The difference here is that Rust promises that it…
-
comment
Comment #45828131
Yes, but instances require the user to provide shrinking while Hypothesis does not: shrinking is derived automatically.
-
comment
Comment #45818439
In the sense that you only need to work with the standard IO monad to get the benefits of the runtime.
-
comment
Comment #45791491
You don't need "monads" (in plural) since GHC provides a runtime where threads are not 1:1 OS threads but rather are managed at the user level, similar to what you have in Go. You …
-
comment
Comment #45788445
> async/await is also available in a bunch of other languages, including F#, C#8, Haskell[...] Haskell (GHC) does not provide async/await but uses a green thread model.
-
comment
Comment #45782877
> Knowing if a function will yield the thread is actually extremely relevant knowledge you want available. When is this relevant beyond pleasing the compiler/runtime? I work in C# …
-
comment
Comment #45774944
> I mean, Haskell has like what, 2, 3, 4? Major build systems and package repositories? It's a quagmire. Don't know when was the last time you've used Haskell, but the ecosystem is…
-
comment
Comment #45774374
} catch (exception: Exception) { // log exception throw exception } Probably the most harmful snippet ever written. Every blog post about errors has something similar written, rega…
-
comment
Comment #45143029
> that data flowing between them consists of simple, agreed-upon formats > HTTP servers and clients, email systems, DNS resolvers—they all interoperate based on simple protocols Ye…