Skip to content

Instantly share code, notes, and snippets.

View intoxx's full-sized avatar
💭
🏴‍☠️ Fighting the nobles

Lucas Pruvost intoxx

💭
🏴‍☠️ Fighting the nobles
View GitHub Profile
@intoxx
intoxx / cl-tcpip.lisp
Created November 4, 2024 15:18 — forked from shortsightedsid/cl-tcpip.lisp
Short guide to TCP/IP Client/Server programming in Common Lisp using usockets
; Short guide to TCP/IP Client/Server programming in Common Lisp using usockets
;
; The main reason for this guide is because there are very few examples that
; explain how to get started with socket programming with Common Lisp that I
; could understand. After spending a day trying, I finally came up with a small
; bit of code that makes it easy to understand the basics. I've written this
; primarily for myself, but should help others get started as well.
; As usual, we will use quicklisp to load usocket.
@intoxx
intoxx / cl-udpip.lisp
Created November 4, 2024 15:18 — forked from shortsightedsid/cl-udpip.lisp
Short guide to UDP/IP Client/Server programming in Common Lisp using usockets
; Short guide to UDP/IP Client/Server programming in Common Lisp using usockets
;
; The main reason for this guide is because there are very few examples that
; explain how to get started with socket programming with Common Lisp that I
; could understand.
; After working on a short example on TCP, I found the
; need for a UDP tutorial. So, here goes.
; As usual, we will use quicklisp to load usocket.