Skip to content

Instantly share code, notes, and snippets.

@nuffin
nuffin / GitCommitEmoji.md
Created May 11, 2024 01:41 — forked from parmentf/GitCommitEmoji.md
Git Commit message Emoji
@nuffin
nuffin / .config
Created April 23, 2024 15:50 — forked from jbeard4/.config
Setup jslinux
#
# Automatically generated file; DO NOT EDIT.
# Buildroot 2017.02 Configuration
#
BR2_HAVE_DOT_CONFIG=y
BR2_HOST_GCC_AT_LEAST_4_5=y
BR2_HOST_GCC_AT_LEAST_4_6=y
BR2_HOST_GCC_AT_LEAST_4_7=y
BR2_HOST_GCC_AT_LEAST_4_8=y
BR2_HOST_GCC_AT_LEAST_4_9=y
@nuffin
nuffin / md5.ts
Created February 20, 2024 00:57 — forked from basarat/md5.ts
Create md5 using TypeScript / JavaScript / NodeJS
import * as crypto from 'crypto';
export const md5 = (contents: string) => crypto.createHash('md5').update(contents).digest("hex");
@nuffin
nuffin / build-centos7-docker-image.sh
Created April 25, 2021 06:26 — forked from keithchambers/build-centos7-docker-image.sh
Build a CentOS 7 docker image.
#!/bin/bash -e
DIST="centos7"
TAG="$(date +%Y%m%d)"
IMG_DIR="${PWD}/buildroot-${DIST}"
REPO_DIR="${IMG_DIR}/etc/yum.repos.d"
RPMS=(
bind-utils
bash