Viewing profile — SnowflakeOnIce
SnowflakeOnIce
HN member- Joined
- Wed, Feb 07, 2018, 3:57 PM UTC
- HN karma
- 511
- Public activity
- 98 items
- HN profile
- View on Hacker News ↗
About SnowflakeOnIce
No profile information was provided.
Recent public activity
-
comment
Comment #49014319
I worked on a system a couple years ago with a BERT-based model (64M parameters) used for classification. The rest of the system could process data at gigabytes per second, and so …
-
comment
Comment #48984702
It's not just cosmic radiation or improperly built computers that result in bit flips. Row hammer is a thing :)
-
comment
Comment #48570144
Logout functionality is not the only use case for token invalidation. Another significant one is to revoke a token that has been exposed, like inadvertently pushed to GitHub. In th…
-
comment
Comment #48281966
Your general point here is reasonable. But to provide some domain knowledge context: secrets are leaked _very_ often! In public data (source code on GitHub, etc.) you can expect a …
- story
-
comment
Comment #44581055
Suppose you have access to certain memory. If you repeatedly read from that memory, can't you still corrupt/alter the physically adjacent memory you don't have access to? Does it r…
-
comment
Comment #44578211
Example: A workstation or consumer GPU used both for rendering the desktop and running some GPGPU thing (like a deep neural network)
-
comment
Comment #44578197
How is it a write-only attack vector?
-
comment
Comment #44567241
> Lexing, parsing and even type checking are interleaved in most C++ compilers due to the ambiguous nature of many construct in the language. > > It is very hard to profile only on…
-
comment
Comment #44564311
A simple hello world in C++ can pull in dozens of megabytes of header files. Years back I worked at a C++ shop with a big codebase (hundreds of millions of LOC when you included ve…
-
comment
Comment #44311455
https://en.m.wikipedia.org/wiki/Simultaneous_localization_an...
-
comment
Comment #44226947
> Well, the current generation of LLMs blow away that Turing Test Maybe a weak version of Turing's test? Passing the stronger one (from Turing's paper "Computing Machinery and Inte…
-
comment
Comment #44041223
A lot of AI-based PDF processing renders the PDF as images and then works directly with that, rather than extracting text from the PDF programmatically. In such systems, text that …
-
comment
Comment #43246353
"String interning" is discussed in the Java Language Spec, going back to the 1990s, and wasn't novel there. It goes back at least to Lisp implementations from the 1970s. Probably e…
-
comment
Comment #43149974
Yes, this was my own experience! When looking at universities, when I saw a high sticker price, I ignored that university, even if in hindsight I had a good chance of being accepte…
-
story
Show HN: Nosey Parker Explorer, a TUI for interactive review of secret exposures
Nosey Parker Explorer is an interactive TUI tool for reviewing possible exposed secrets detected by Nosey Parker [1], a fast secrets detector designed for offensive security (e.g.,…
-
comment
Comment #42265547
About a dozen OSes / configurations were supported, and the entire test suite would take a few days to run on each such configuration. This was native desktop+server software, not …
-
comment
Comment #42262736
At a previous job, with a huge C++ codebase and ~100 developers over 20 years, many platforms supported, a build could take hours, and the test suite took so long to run that it wo…
-
comment
Comment #41434378
When doing appsec review in C or C++, yes!
-
comment
Comment #41322732
> you can get 100% GPU utilization by just reading/writing to memory while doing 0 computations Indeed! Utilization is a proxy for what you actually want (which is good use of avai…
-
comment
Comment #41292187
The common crawl only pulls documents less than a small limit (1MiB last I checked). Without special handling in this project, bigger documents than that would be missing. So indee…
-
comment
Comment #41062754
'git clone --mirror' seems to pull down lots of additional content also.
-
comment
Comment #41062689
There seems to be no such thing as a "private fork" on GitHub in 2024 [1]: > A fork is a new repository that shares code and visibility settings with the upstream repository. All f…
-
comment
Comment #41053298
If your ranges end up sparsely distributed, using roaring bitmaps can speed things up a lot. https://roaringbitmap.org/
-
comment
Comment #40871722
The classical synthesis approaches seem to have much more emphasis on correctness and specification than modern LLM-based synthesis though — things like deriving provably correct l…