Viewing profile — marler8997
marler8997
HN member- Joined
- Mon, Jan 24, 2022, 10:06 PM UTC
- HN karma
- 19
- Public activity
- 13 items
- HN profile
- View on Hacker News ↗
About marler8997
No profile information was provided.
Recent public activity
-
comment
Comment #47027042
If you have a self-contained project, where you don't depend on anyone else and others don't depend on you, MinGW works great. Problems arise when you have dependencies that don't …
-
comment
Comment #47025394
Wait till they find out what the Visual Studio Installer itself does :) I guess this person just trusts a big company like Microsoft who keeps their source hidden more than a singl…
-
comment
Comment #47024353
Yeah I noticed wine wasn't able to execute the MSI files. It also had a problem with the lock files. Both problems should be fixable though.
-
comment
Comment #45903165
None taken :) I think sharing our thoughts and discussing them is how we learn and grow. The best people in their craft are those who aren't afraid to put themselves out there, eve…
-
comment
Comment #45901062
I avoid using exceptions myself so I wouldn't be surprised if I misunderstand them :) I love to learn and welcome new knowledge and/or correction of misunderstandings if you have t…
-
comment
Comment #45900424
"You can't handle all of them and you don't know which you'll get" is a great summary of the first two problems, and, this same problem also applies to Python. I'll add that these …
-
comment
Comment #45893465
It's a bit more than your typical "interop via C". With a "sized opaque" type you actually can stack allocate C++ values in Zig (and vice versa stack allocate Zig values in C++), i…
-
comment
Comment #45887512
Yeah this is correct. You don't want to pass these values around "by value" but, you should be able to "embed them" and pass "pointers to them". It's a middle-ground between a comp…
-
comment
Comment #44047791
I checked the git history to see if you included the Zig version but looks like first revision is rust... In the Zig version did you use my zigwin32 project or did you go with some…
-
comment
Comment #40613689
Hope to be able to bring Linux back at some point. Unfortunately there wasn't enough users to justify spending development time on it. It's hard to tell if the user count was low b…
-
comment
Comment #40613643
Here's an example: https://github.com/marler8997/zigup/blob/4d25c7e387a996c6b83...
-
comment
Comment #36459214
Great game, cleverly demonstrates a fundamental problem with creating rules/laws. I've wondered if focusing on the goal/intent when creating rules would be more effective? For exam…
-
comment
Comment #33389187
D's actually worse than Zig in regard to point 3. Kristoff's example demonstrates why. In D you would have to change the "if" to a "static if", D will always evaluate normal "if's"…