Skip to content

Instantly share code, notes, and snippets.

View mitjafelicijan's full-sized avatar
🚽
Hi Bob!

Mitja Felicijan mitjafelicijan

🚽
Hi Bob!
View GitHub Profile
@veechs
veechs / pattern_matching.md
Last active April 18, 2025 03:31 — forked from spr2-dev/pattern_matching.md
A quick beginner guide on Lua pattern matching
@tcoppex
tcoppex / c_nostd.txt
Last active April 22, 2025 14:41
Writing C software without the standard library [Linux Edition] - Franc[e]sco's Gopherspace
###################################################################
Writing C software without the standard library
Linux Edition
###################################################################
There are many tutorials on the web that explain how to build a
simple hello world in C without the libc on AMD64, but most of them
stop there.
I will provide a more complete explanation that will allow you to
build yourself a little framework to write more complex programs.
@mtearle
mtearle / EXAMPLE-socket.py
Created October 14, 2014 15:31
npyscreen EXAMPLE of a socket connection updating widgets
#!/usr/bin/env python
import npyscreen, curses
# Incorporates code
# from http://www.binarytides.com/python-socket-server-code-example/
# Socket server in python using select function
import socket, select
class MyTestApp(npyscreen.NPSAppManaged):
# socket code