HackerTrans
TopNewTrendsCommentsPastAskShowJobs

joexbayer

no profile record

Submissions

C++ Web Server on my custom hobby OS

oshub.org
102 points·by joexbayer·8 माह पहले·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
·8 माह पहले·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.