Viewing profile — sischoel
sischoel
HN member- Joined
- Fri, Dec 27, 2013, 9:22 AM UTC
- HN karma
- 163
- Public activity
- 65 items
- HN profile
- View on Hacker News ↗
About sischoel
Recent public activity
-
comment
Comment #46242720
The issues with auto-translated Reddit pages unfortunately also happens with Kagi. I am not sure if this is just because Kagi uses Google's search index or if Reddit publishes the …
-
comment
Comment #44561433
Dotted notation would not work because the keys in a dict can also contain dots. I am not terrible familiar with them but there is something called `lenses` that comes from functio…
-
comment
Comment #44539536
Or use itemgetter: >>> from operator import itemgetter >>> dct = {'greeting': 'hello', 'thing': 'world', 'farewell': 'bye'} >>> thing, greeting = itemgetter("thing", "greeting")(dc…
-
comment
Comment #41691266
I was looking a bit at the code for the shared memory implementation in https://github.com/3tilley/rust-experiments/tree/master/ipc and the dependency https://github.com/elast0ny/r…
-
comment
Comment #41409785
The CUDA documenation tells me that there are more performant but less precise trigonometric functions: https://docs.nvidia.com/cuda/cuda-c-programming-guide/index.... Do you know …
-
comment
Comment #38758394
I am not sure if this was the very first paper talking about attention, but https://arxiv.org/abs/1409.0473 from 2014 is a famous one. What is still missing there, is the idea of s…
-
comment
Comment #36589083
Do you have any sources on that? The only thing I could find was that some parties want to ban digital billboard in the city of Zurich (not the whole canton).
-
comment
Comment #36042409
A few years ago I was trying if I could port that code to Linux. I made some decent progress, but in the end I got stuck trying to convert the resources (images and audio files) to…
-
comment
Comment #35179476
There are some very explicit images for the default prompt when one scrolls a bit around there, can't imagine that OpenAI would not filter these out.
-
comment
Comment #34428075
When one talks about the average income, does that average only consider people that work? Otherwise, in countries with a high rate of unemployment, I would imagine that a single s…
-
comment
Comment #34014083
It is indeed O(N). There is also a more efficient algorithm (in case the range is small) that uses binary search to find the first index. Such an algorithm would have time complexi…
-
comment
Comment #33669055
From skimming the paper ( https://arxiv.org/abs/2211.09055 ), the proof seems to be amazingly short and relies only on a few theorems that one encounters in introductory class on i…
-
comment
Comment #31759159
Why is that though? Wouldn't something like `mov eax 0` also work?
-
comment
Comment #31736972
Isn't that the case for most programming languages? The only exceptions I can think of are C++ and Rust.
-
comment
Comment #30866840
Do you know any sources on on how set equivalence theory is related to integer programming? Because I don't see the immediate connection and I could not find anything on the intern…
-
comment
Comment #30364111
Such graph collections are super helpful when trying to figure out if some theorem holds for a certain graph class, although only up to a certain size. I think a lot of these graph…
-
comment
Comment #30316474
C and C++ do not have labeled breaks - Java indeed has. But of course you are right, that one could just use goto for C/C++.
-
comment
Comment #30130910
Genuine question, not a comment on OPs implementation: What is the reason that people so often use some external service for creating task queues (often backed by some kind of db),…
-
comment
Comment #30114244
The page is from 2008 - unfortunately a lot of links to the original pictures do not work anymore.
-
comment
Comment #30083618
One could argue that Julia is just Lisp with a syntax that appeals more to popular taste. There is also a secret option to get into a lisp repl in Julia "julia --lisp".
-
comment
Comment #29576311
Indeed, there are quite a few application in cryptography, where one has to search trough a huge space. Wikipedia actually listens a few: https://en.wikipedia.org/wiki/Cycle_detect…
-
comment
Comment #28723595
It looks as if this year only repos with the topic "hacktoberfest" or PR's with the the tag "hacktoberfest-accepted" participate, so this should limit the amount of spam. Source: h…
-
comment
Comment #27778615
What about "data engineer"? There seem to be a lot of jobs for that title nowadays.
-
comment
Comment #27770182
Yes, I hadn't thought about that before, but of course the difference here is that the Rust compiler cannot just produce a "good enough" result for pattern matching.
-
comment
Comment #27770121
While this is an interesting result, isn't basically every compiler NP-hard, because of register allocation?