Skip to content

Instantly share code, notes, and snippets.

View roastercode's full-sized avatar
😇
Deeper in knowledge

Roaster Code roastercode

😇
Deeper in knowledge
View GitHub Profile
@iamralch
iamralch / sshtunnel.go
Last active April 16, 2023 03:07
SSH tunnelling in Golang
package main
import (
"log"
"bufio"
"time"
"os"
"fmt"
"io"
"net"
@lambdaterm
lambdaterm / gist:2247194
Last active September 5, 2020 19:20
.stumpwmrc
;; -*-lisp-*-
;;
;; Stumpwm user definitions
(in-package :stumpwm)
(defun cat (&rest strings) ; "Concatenates strings, like the Unix command 'cat'. A shortcut for (concatenate 'string foo bar)."
(apply 'concatenate 'string strings))
(set-font "-*-terminus-medium-r-normal-*-12-*-*-*-*-*-iso10646-1")