Skip to content

Instantly share code, notes, and snippets.

View halvves's full-sized avatar
🌳

halvves

🌳
View GitHub Profile
@halvves
halvves / .gitignore
Created December 3, 2018 07:55 — forked from skeeto/.gitignore
Rectangle area challenge
rect
@halvves
halvves / IRC client in pure bash 4
Created July 31, 2021 18:47 — forked from anonymous/IRC client in pure bash 4
IRC client written in pure bash using only bash builtin commands and no other binaries.
#!/bin/bash
#no PATH, no way to accidently run any programs
PATH=''
#useful variables
term_height=0
term_width=0
term_scroll_height=0
status_line_row=0