Skip to content

Instantly share code, notes, and snippets.

@Kunde21
Kunde21 / README.md
Last active August 19, 2020 18:19
Casidoo's end of January challenge 2020

Challenge was to output "Hello, world!" without repeating any characters except whitespace.
Thus, it seemed the perfect reason to learn to code whitespace.

@Kunde21
Kunde21 / SSH_gen.go
Last active March 26, 2023 20:52
Helper to generate ssh keys
package main
import (
"crypto/rand"
"crypto/rsa"
"crypto/x509"
"encoding/pem"
"flag"
"io/ioutil"
"log"
@Kunde21
Kunde21 / trieImpl.go
Created September 16, 2015 16:11
/r/dailyProgrammer Challenge 232 Palindromes
package main
import (
"bufio"
"fmt"
"os"
"sync/atomic"
"time"
"unsafe"
)