Skip to content

Instantly share code, notes, and snippets.

View cellularmitosis's full-sized avatar

Jason Pepas cellularmitosis

View GitHub Profile
@cellularmitosis
cellularmitosis / solutions-by-exercise.md
Last active May 25, 2021 21:20
Index of Exercism.io solutions, grouped by problem

Blog 2019/1/25

<- previous | index | next ->

Index of solutions to Exercism.io problems (grouped by exercise)

Browsing solutions to the same problem is a great way to compare languages!

@cellularmitosis
cellularmitosis / README.md
Last active October 17, 2019 01:17
ls-repos.py: a quick hack to list my github repos from the command line.

Blog 2019/2/1

<- previous | index | next ->

ls-repos.py: list your github repos from the command-line

This script gives you a convenient way to access your list of repos. Useful for piping the output into grep, etc.

@cellularmitosis
cellularmitosis / README.md
Last active October 17, 2019 01:14
Some examples of generating HMACs (SHA256)

Blog 2019/2/1

<- previous | index | next ->

Generating HMACs in Python, Node, and PHP

HMACs came up in a discussion at work

@cellularmitosis
cellularmitosis / README.md
Last active February 19, 2023 11:35
Notes on resurrecting an old NSLU2

Blog 2019/2/3

<- previous | index | next ->

Resurrecting the NSLU2

This weekend I resurrected an old NSLU2 which I had somehow gotten stuck into a non-bootable state.

@cellularmitosis
cellularmitosis / install-clojure-jessie.sh
Last active February 10, 2019 19:38
Install clojure on Debian jessie (8)
#!/bin/bash
set -e -o pipefail
set -x
# remove any debian version of clojure
if dpkg -l | grep '^ii' | awk '{print $2}' | grep clojure >/dev/null; then
apt-get -y remove '.*clojure.*'
fi
@cellularmitosis
cellularmitosis / README.md
Last active October 17, 2019 00:57
Install clojure on Debian stretch (9)

Blog 2019/2/10

<- previous | index | next ->

install-clojure-stretch.sh

A little script to install Clojure 1.10 on Debian 9 ("stretch").

@cellularmitosis
cellularmitosis / README.md
Last active January 29, 2020 02:28
Using bzip2 to compare the relative performance of various computers

Blog 2019/2/20

<- previous | index | next ->

Using bzip2 to compare the relative performance of various computers

Summary:

@cellularmitosis
cellularmitosis / README.md
Last active October 17, 2019 01:09
Baby steps towards structured editing. Progress as of 2019/2/24.
@cellularmitosis
cellularmitosis / README.md
Last active October 17, 2019 01:09
Baby steps towards structured editing. Progress as of 2019/2/25.
@cellularmitosis
cellularmitosis / README.md
Last active October 17, 2019 01:08
Baby steps towards structured editing. Progress as of 2019/2/26.