Viewing profile — Overv
Overv
HN member- Joined
- Sat, Apr 10, 2010, 1:26 PM UTC
- HN karma
- 123
- Public activity
- 19 items
- HN profile
- View on Hacker News ↗
About Overv
Recent public activity
-
comment
Comment #26507890
Good times, browsing the WAYWO threads every day to see what people were creating. Where do the devs hang out nowadays?
-
comment
Comment #26506362
One way to approach this would be to use QEMU binary translation, but it would probably ruin any performance benefits.
-
comment
Comment #26506251
When I developed this I was very much thinking of using this to run one-off compute heavy tasks, e.g. compressing a video, running scientific computations or rendering something in…
-
comment
Comment #26506137
I love this idea! I've never played Dwarf Fortress, but I just tested it on a fresh vps by setting [SOUND:NO] and [PRINT_MODE:TEXT] in df/data/init/init.txt and it seems to work fi…
-
comment
Comment #26505760
They are indeed bind-mounted separately in the chroot on top of the local file system: https://github.com/Overv/outrun/blob/1e86c429c60022421de68f2...
-
comment
Comment #15933446
Author here, not sure if I can easily fix this. The WebGL check is handled by the third-party scatter plot library.
-
comment
Comment #15932034
That was actually the inspiration for this project :)
-
comment
Comment #15931926
I've now published the source of the website on GitHub as well: https://github.com/Overv/ColorScatterPlot
-
comment
Comment #15931514
I'm not sure. It's hard to say because RGB is a bad representation of the color semantics anyway. Try visualizing the images in HSV/HSL/LAB space instead.
-
comment
Comment #15931496
One thing it can be used for is to easily see what kind of palette a painter is using.
- story
-
comment
Comment #15239680
It's not like Sublime Text will suddenly stop working when the developers no longer release any updates.
-
comment
Comment #14880944
I found that this does not stop one from sending emails that appear to originate from addresses like info@paypal.com as long as the contents of the email are different from known s…
-
comment
Comment #12670971
Why did you jump straight to MILP for ordering the lines of segments? It seems like it would be more obvious to first try ordering the routes by id for each segment. That would gua…
-
comment
Comment #12121152
Descriptor layouts are the equivalent of SRT in Vulkan. It is unclear to me what exactly DispatchDraw is for, because back-face and offscreen culling are standard features of any g…
- story
-
comment
Comment #5895220
Author here, I did look at some of the assembly output from C code, especially for frequently called functions like get_block/set_block, but other than that I used no reference but…
- story
-
story
Ray tracing demo based on Minecraft
I've wanted to write a ray tracer accelerated by the GPU for a while, but I wanted to make it a bit more interesting than procedurally generated meshes, so I thought about doing it…