Viewing profile — dosshell
dosshell
HN member- Joined
- Fri, Jun 27, 2014, 8:58 AM UTC
- HN karma
- 1,301
- Public activity
- 244 items
- HN profile
- View on Hacker News ↗
About dosshell
Recent public activity
-
comment
Comment #49135137
Some context: Fiber is a datastructure where the execution context is saved. Eg. registers (including instruction pointer) and stack etc. That is a fiber: data. You normally use a …
-
comment
Comment #49132045
> It is also angering the rest of Europe It is very important to note that you can not leave Ceuta without passport etc. It is not part of Schengen. This is a problem for Ceuta and…
-
comment
Comment #48882527
And Scott Myers talk: "Why C++ Sails When the Vasa Sank" https://m.youtube.com/watch?v=ltCgzYcpFUI
-
comment
Comment #48572858
Every place I worked at has a git introduction where all new employees learn about how git works internally. Takes 1h, and all junior devs stops memories random commands and actual…
-
comment
Comment #48515606
What issue do you have specific with reviewing ai code?
-
comment
Comment #48127853
Drivers exclusive for Windows. You know your old Soundblaster AWE64 Gold, with all bundled programs [0]. Or that very special Analog Video grabber card you have. Wine is user space…
-
comment
Comment #47958506
i investigated this yesterday and there is one cmake extension. It gives basic support to cmake. Not as neat as vscode/jetbrains/qt/vs but it works. It is depends on CMakePresets.j…
-
comment
Comment #47528699
you would lose 80 repos from "10000 : 1847" also in that case.
-
comment
Comment #47328222
what do you mean with "The browser-based IDE (editor ...) You use Monaco Editor for that.
-
comment
Comment #47315818
What parts have you exactly built? All I see are dependencies that are glued together with claude. Can you clearify exactly what you have developed?
-
comment
Comment #46808299
This is a good read! and something i have in the back of my head when debugging spooky bugs.
-
comment
Comment #46280449
If it captures variables, it is not possible to manually declare the type. You can however hide it in an std::function. But then you probably get some overhead and some heap alloca…
-
comment
Comment #46280410
You put the using as class member (private) or as local in the function.
-
comment
Comment #45241794
> I have to have TikTok for work I'm sorry but what? Your job demands what apps you have installed on your PRIVATE phone!?
-
comment
Comment #44461905
>> because part of what’s holding Zig back from doing async right is limitations and flaws in LLVM this was interesting! Do you have a link or something to be able to read about it…
-
comment
Comment #41775991
Note that: There are no economic science Nobel prize. Only one similar named price in the name and memory of Alfred Nobel, which some how, is allowed to be part of the Nobel prize …
-
comment
Comment #40130105
I tried to reproduce it on Ivybridge (Windows VS20122) and failed (mulss and muldd) [0]. single and double precision takes the same time. I also found a behavior where the first ba…
-
comment
Comment #40120639
I agree with you. It should take the same time when thinking more about it. I remember learning this in ~2016 and I did performance test on Skylake which confirmed (Windows VS2015)…
-
comment
Comment #40118179
Yes, as I wrote, it is only true for one float value. SIMD/MIMD will benefit of working on smaller width. This is not only true because they do more work per clock but because memo…
-
comment
Comment #40117770
> I can get away with a smaller sized float When talking about not assuming optimizations... 32bit float is slower than 64bit float on reasonable modern x86-64. The reason is that …
-
comment
Comment #40034368
First IANACC (I'm not a compiler programmer), but this is my understanding: What do you mean by interface? A dynamic library is handled very different from a static one. A dynamic …
-
comment
Comment #40033063
This is very interesting! Are there any movements to move towards this? Wouldn't it open up for a new attack vector where process could read each other data?
-
comment
Comment #40033009
I agree with you, hidden is worse. But we do know what it can not static link to, any GPL library, which many indirect dependencies are.
-
comment
Comment #39934891
I know this is maybe not the answer you want, but if you are just interested in getting the job done there exist companies that are experts on this, for example: https://fortune.co…
-
comment
Comment #39574520
One problem I encounter with math wiki is that I almost need to know what it is before reading to understand the wiki page. I think wikibooks is a good initiativ to solve this, and…