HackerTrans
TopNewTrendsCommentsPastAskShowJobs

tirrex

no profile record

Submissions

A simple Minecraft clone written in C using modern OpenGL

github.com
47 points·by tirrex·3 lata temu·3 comments

Sandboxie: Sandbox-based isolation software for Windows NT-based OS's

github.com
131 points·by tirrex·4 lata temu·33 comments

Common libraries and data structures for C

github.com
322 points·by tirrex·4 lata temu·141 comments

Xv6 for RISC-V

github.com
5 points·by tirrex·4 lata temu·0 comments

Command Line Video Player

github.com
93 points·by tirrex·5 lat temu·34 comments

Decompilation of the Legend of Zelda: Ocarina of Time

github.com
2 points·by tirrex·5 lat temu·0 comments

An 8-bit minicomputer with a fully custom architecture

github.com
82 points·by tirrex·5 lat temu·31 comments

Minecraft, but I made it in 48 hours

github.com
2 points·by tirrex·5 lat temu·0 comments

A completely-from-scratch hobby operating system

github.com
297 points·by tirrex·5 lat temu·72 comments

Melon C Framework Library

github.com
3 points·by tirrex·5 lat temu·0 comments

comments

tirrex
·4 lata temu·discuss
I think chair is the most important part. It looks so comfortable.
tirrex
·4 lata temu·discuss
Exactly. Is there any benefit running mysql instead of sqlite for Wordpress? Feels like default db should have been sqlite all along.
tirrex
·4 lata temu·discuss
When did this happen? Is it new?
tirrex
·4 lata temu·discuss
Are they using four photos or more?
tirrex
·4 lata temu·discuss
This should be improved further. Add a scanner to read handwritten answer and post it as the response.
tirrex
·4 lata temu·discuss
https://github.com/tezc/sc/tree/master/map

For those who are interested in faster hashmaps, I tried bunch of hashmaps and this one performs better than others. This is for C. Maybe C++ has better hashmaps.
tirrex
·4 lata temu·discuss
I can pay for a search engine service if it blocks paywalls, bloated sites, fake bullshit clickbait contents. It’s time consuming to find what you’re looking for with Google. Unfortuanetely, there is no alternative.
tirrex
·5 lat temu·discuss
How are they going to make money and support the development?
tirrex
·5 lat temu·discuss
> And how much impact does it have on runtime performance? Well even computing a sum for a relative small number 1000, according to cppbench, the signed version is 430X faster.

Although you can find these kind of examples for a few lines of code snippet, the question is what is the impact on overall program? Nowadays, I guess it has no impact for almost all programs. Because memory access patterns, system call overhead, operating system interaction etc. have much more impact on overall performance compared to optimizations enabled by undefined behaviors.