Columns:
| # | Tweet | User | Followers | Views ▼ | Ratio | Engagement | Posted |
|---|---|---|---|---|---|---|---|
| 1 | [image] Memory-efficient doubly linked list using XOR of pointers (advanced, tricky). | @_trish_xD ✓ | 29.8K | 178.7K | 6.0x | 870 | Feb 19 |
| 2 | [image] i made a web server in c using sockets, and honestly, i learned so much about how the web works | @sudox7 ✓ | 2.0K | 17.1K | 8.7x | 629 | Feb 27 |
| 3 | [image] Tiny State Machine in <40 lines
Finite state machines are everywhere in embedded/parsers/drivers.
Here's a clean, readable pattern using enums + switch: | @_trish_xD ✓ | 29.9K | 12.8K | 0.4x | 436 | Feb 23 |
| 4 | [image] Built a JavaScript runtime in C to understand how Node.js, Bun & Deno actually work
Jade Runtime covers:
- JavaScriptCore engine integration
- libuv event loop architecture
- Native API bindings - Async I/O implementation | @_trish_xD ✓ | 30.0K | 8.7K | 0.3x | 321 | Feb 26 |
| 5 | [image] Just found this great tutorial on writing your own Linux system call in C.
If you’ve ever wondered how read, write, or fork actually work under the hood this is for you. | @_trish_xD ✓ | 31.3K | 8.0K | 0.3x | 301 | Apr 1 |
| 6 | [image] Built a minimal chat server in C
- multi-client support (up to 10 users)
- real-time message broadcasting
- clean socket programming with select()
- threaded client for async messaging
perfect for learning network programming! | @_trish_xD ✓ | 29.7K | 7.8K | 0.3x | 440 | Feb 18 |
| 7 | [image] Built a file organizer in C that automatically sorts your messy downloads folder!
Just run it and it moves images to Images/, docs to Documents/, videos to Videos/ etc. | @_trish_xD ✓ | 29.9K | 7.3K | 0.2x | 336 | Feb 27 |
| 8 | [image] you can declare a struct directly in the return type of a function in C
like just... inline it right there
when I was new to C, I saw a function returning a struct defined inline and thought the code was broken
but it's completely valid C. the struct definition and function | @_trish_xD ✓ | 31.3K | 5.8K | 0.2x | 182 | Mar 29 |
| 9 | [image] not trying to replace anything big
just needed a simpler http client for api testing so i built Kivo
built with rust + tauri
learned a lot of rust along the way
features like collections, tab system, and graphql support
v0.1.0 | @_trish_xD ✓ | 31.3K | 5.0K | 0.2x | 79 | Mar 31 |
| 10 | [image] Build your own Vim-Like text editor in C!
you'll learn:
- modal editing (like Vim)
- terminal control
- file operations
- cursor movement | @_trish_xD ✓ | 29.9K | 4.8K | 0.2x | 171 | Mar 9 |
| 11 | [image] Raw Network Client using Syscalls!
connect to websites using direct syscalls: | @_trish_xD ✓ | 29.9K | 4.7K | 0.2x | 167 | Mar 6 |
| 12 | [image] Built a tiny HTTP server in C++ with Boost.Asio
- Accepts TCP connections
- Reads HTTP requests
- Serves files from /www
- Handles content types (html, css, js) | @_trish_xD ✓ | 29.9K | 4.3K | 0.1x | 146 | Mar 8 |
| 13 | [image] This is how I hooked my C audio engine to a Lua GUI using FFI
- Compile C code → shared library (.so)
- Load with ffi.load()
- Define functions via ffi.cdef
- Call them right from Lua!
Fast DSP in C + beautiful UI in Lua/Love2D | @_trish_xD ✓ | 29.9K | 4.2K | 0.1x | 139 | Feb 20 |
| 14 | [image] Built a static site server in C that serves HTML files over TCP!
Just run it and it hosts your website on localhost:8080 with proper MIME types, HTTP responses etc. | @_trish_xD ✓ | 29.9K | 4.2K | 0.1x | 135 | Mar 5 |
| 15 | [image] Create a QR code generator in C
- learn how to work with libqrencode and libpng
- understand QR code structure and PNG image generation
- see how to display graphics in terminal using Unicode
great foundation for command-line tool development | @_trish_xD ✓ | 31.2K | 3.3K | 0.1x | 94 | Apr 6 |