Viewing profile — vexna
vexna
HN member- Joined
- Mon, Mar 16, 2020, 5:11 PM UTC
- HN karma
- 66
- Public activity
- 18 items
- HN profile
- View on Hacker News ↗
About vexna
No profile information was provided.
Recent public activity
-
comment
Comment #47879588
There's an asterisk right below that table stating that: > *Anthropic reported signs of memorization on a subset of problems And from the Anthropic's Opus 4.7 release page, it also…
-
comment
Comment #47466778
They are using effect-ts which uses yield as their equivalent to haskells Do notation.
-
comment
Comment #46362211
Just a heads up that this is completely broken as of 2.0.76. Dug through their obfuscated JS and it looks like they forgot to re-add a function call in the LSP manager initialize f…
-
comment
Comment #45242073
No real modulation or switching occurs. If you start a new chat, your “explicit” memories will pretty much be injected right into the system prompt (I almost think of it as compile…
-
comment
Comment #45220045
ChatGPT has 2 types of memory: The “explicit” memory you tell it to remember (sometimes triggers when it thinks you say something important) and the global/project level automated …
-
comment
Comment #44983096
kool aid or not -- "reasoning" is already part of the LLM verbiage (e.g `reasoning` models having `reasoningBudget`). The meaning might not be 1:1 to human reasoning, but when the …
-
comment
Comment #44380595
It gets even more confusing! If you're on the "Premium" plans (i.e the the old standard "Google One" plans) and upgrade to >=5TB storage, your "Premium" plan starts including all t…
-
comment
Comment #40178546
Guessing you mean the McDonalds on Pandora? I remember going there a lot during high school and walked by it again recently while visiting the city for the the first time since 200…
-
comment
Comment #39280907
Canada currently has an issue with handing out way too many student visas to students going to strip mall diploma mills. I believe the federal government has just enforced a cap fo…
-
comment
Comment #37636228
You can reenable the web interface in iCloud settings under system preferences on a Mac (not sure if it’s on iOS). The web interface will require just in time verification with an …
-
comment
Comment #35248713
Its incredibly powerful! One downside is variables captured in the match are lifted to the function level. The lack of block level scoping in the match statement leads to a lot of …
-
comment
Comment #34432945
Because its for running server side javascript, just like node/deno. It would make sense to compare itself to its competition.
-
comment
Comment #31690530
Because the existence of the problem bothers you implicitly. Or because it’s usually a good way to a promo
- comment
- comment
-
comment
Comment #27634925
replied with this on another post, but you can add `-p:PublishReadyToRun=true` to your `dotnet publish` command to do AOT. it blows up your binary in size, but pretty much gives yo…
-
comment
Comment #27634908
You can actually add `-p:PublishReadyToRun=true` to your `dotnet publish` command and it will do AOT compilation for you. It blows up your executable a bit, but it does pretty much…
-
comment
Comment #26800110
I found most of the dependency woes to go away with import maps: https://deno.land/manual@v1.9.0/linking_to_external_code/imp...