HackerTrans
TopNewTrendsCommentsPastAskShowJobs

joexbayer

no profile record

Submissions

C++ Web Server on my custom hobby OS

oshub.org
102 points·by joexbayer·7 เดือนที่ผ่านมา·14 comments

Building your own Operating System

oshub.org
3 points·by joexbayer·8 เดือนที่ผ่านมา·1 comments

Rust Hobby OS projects worth exploring

oshub.org
3 points·by joexbayer·8 เดือนที่ผ่านมา·0 comments

LEGOs, Play-Doh, and Programming

weblog.jamisbuck.org
1 points·by joexbayer·9 เดือนที่ผ่านมา·0 comments

Just for Fun: A Hopeful Take on OSDev

oshub.org
3 points·by joexbayer·9 เดือนที่ผ่านมา·0 comments

The Polygons of Doom: PSX

fabiensanglard.net
4 points·by joexbayer·9 เดือนที่ผ่านมา·0 comments

Defer: Resource cleanup in C with GCCs magic

oshub.org
66 points·by joexbayer·9 เดือนที่ผ่านมา·96 comments

Building my childhood dream PC

fabiensanglard.net
212 points·by joexbayer·10 เดือนที่ผ่านมา·85 comments

Contracts for C

gustedt.wordpress.com
108 points·by joexbayer·10 เดือนที่ผ่านมา·111 comments

comments

joexbayer
·4 เดือนที่ผ่านมา·discuss
Very cool! Would suggest https://oshub.org/explore if youre interested in hobby operating systems.
joexbayer
·5 เดือนที่ผ่านมา·discuss
A related article discussing Gustedt’s first defer implementation, which also looks at the generated assembly:

https://oshub.org/projects/retros-32/posts/defer-resource-cl...
joexbayer
·7 เดือนที่ผ่านมา·discuss
Up to TCP most protocols are very straight forward, atleast getting them to work semi reliable. But then TCP explodes in complexity with all the state management and possible paths a connection can take.

HTTP is mostly annoying because of all the text parsing :D
joexbayer
·9 เดือนที่ผ่านมา·discuss
Wow! Looks great! Id suggest checking out https://oshub.org/ it has a lot of hobby operating systems similar to this one.
joexbayer
·9 เดือนที่ผ่านมา·discuss
Small blog post exploring a defer implementation using GCC’s cleanup + nested functions, looking at the generated assembly and potential use cases.