HackerTrans
TopNewTrendsCommentsPastAskShowJobs

joexbayer

no profile record

Submissions

C++ Web Server on my custom hobby OS

oshub.org
102 points·by joexbayer·hace 8 meses·14 comments

Building your own Operating System

oshub.org
3 points·by joexbayer·hace 8 meses·1 comments

Rust Hobby OS projects worth exploring

oshub.org
3 points·by joexbayer·hace 8 meses·0 comments

LEGOs, Play-Doh, and Programming

weblog.jamisbuck.org
1 points·by joexbayer·hace 9 meses·0 comments

Just for Fun: A Hopeful Take on OSDev

oshub.org
3 points·by joexbayer·hace 9 meses·0 comments

The Polygons of Doom: PSX

fabiensanglard.net
4 points·by joexbayer·hace 9 meses·0 comments

Defer: Resource cleanup in C with GCCs magic

oshub.org
66 points·by joexbayer·hace 9 meses·96 comments

Building my childhood dream PC

fabiensanglard.net
212 points·by joexbayer·hace 10 meses·85 comments

Contracts for C

gustedt.wordpress.com
108 points·by joexbayer·hace 10 meses·111 comments

comments

joexbayer
·hace 4 meses·discuss
Very cool! Would suggest https://oshub.org/explore if youre interested in hobby operating systems.
joexbayer
·hace 5 meses·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
·hace 8 meses·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
·hace 9 meses·discuss
Wow! Looks great! Id suggest checking out https://oshub.org/ it has a lot of hobby operating systems similar to this one.
joexbayer
·hace 9 meses·discuss
Small blog post exploring a defer implementation using GCC’s cleanup + nested functions, looking at the generated assembly and potential use cases.