Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View nealey's full-sized avatar
🐢

Neale Pickett nealey

🐢
View GitHub Profile
@nealey
nealey / rproxy-docker-containers.conf
Last active November 9, 2017 20:35
nginx configuration to reverse proxy to any docker image it can resolve
server {
listen 443 default_server ssl http2;
// server_name if you need it
// don't forget your SSL configuration
location ~ ^/([^/]+)/ {
resolver 127.0.0.11;
proxy_pass http://$1/;
}
@nealey
nealey / slack-emoji-bulk-delete.js
Last active May 25, 2023 23:09
Bulk delete every custom emoji in Slack
//
// I just found out that we have a bunch of NSFW emoji in our bulk-imported set of >4000 emoji.
// Rather than weed them out, I want to start with a blank slate. This code does that.
//
// Navigate to your "Custom Emoji" page, the one with all the delete buttons.
// Delete one of them and acknowledge that it's going away forever.
// Then open the JavaScript console and paste this in.
//
// At some point your JavaScript console will start spewing errors.
// Reload the Emoji page, delete one emoji by hand again, and paste this in again to resume.
@nealey
nealey / await-change.sh
Created September 21, 2017 17:19
Shell function to block until files are written
# while await-change *.c; do make && ./run; done
await_change () {
ts=/tmp/await-change.$$
: >$ts
while sleep 0.3; do
for fn in "$@"; do
if [ $fn -nt $ts ]; then
rm -f $ts
return
@nealey
nealey / dockerfile
Created August 4, 2017 18:42
Complete system for Cyber Fire net-re class
FROM alpine
RUN apk --no-cache add tmux sudo vim less
RUN echo 'ALL ALL=NOPASSWD: ALL' | tee /etc/sudoers.d/house-is-a-rockin
WORKDIR /usr/local/src
RUN apk --no-cache add build-base git
RUN git clone https://github.com/dirtbags/fluffy
RUN make -C fluffy install DESTDIR=/usr/local
@nealey
nealey / 2track.html
Created July 11, 2017 03:37
Basic 2-track DJ software in pure HTML5 JavaScript
<!DOCTYPE html>
<!-- Crummy DJ software in pure JavaScript -->
<!-- I wrote in on Chrome using Mozilla documentation, so in theory it'll work on either. -->
<!-- 2017 Neale Pickett -->
<!-- Placed in the Public Domain -->
<html>
<head>
<script>
function loadFile(deck, e) {
// Having the user select the file is how you get local files without upsetting CORS.
foreground=yes
debug=7
pid=
[slashnet]
client = yes
accept = 38697
connect = us.slashnet.org:6697
;;; rcirc.el --- default, simple IRC client.
;; Copyright (C) 2005-2014 Free Software Foundation, Inc.
;; Author: Ryan Yeske <rcyeske@gmail.com>
;; Maintainers: Ryan Yeske <rcyeske@gmail.com>,
;; Deniz Dogan <deniz@dogan.se>
;; Keywords: comm
;; This file is part of GNU Emacs.
@nealey
nealey / stunnel.conf
Created December 1, 2016 16:09
stunnel configuration to connect to SSL+IRC
[slashnet]
client = yes
accept = 58697
connect = us.slashnet.org:6697
@nealey
nealey / ssh.el
Last active September 30, 2016 20:32
;;
;; ssh
;;
(require 'comint)
(require 'shell)
(defgroup ssh nil
"Secure shell interface"
:group 'processes
:group 'unix)
@nealey
nealey / bad-clock.py
Created August 16, 2016 04:31
Broken clock, like in Meow Wolf's House of Eternal Return. For Raspberry Pi and Sparkfun's Serial 7-Segment Display
#! /usr/bin/python
import smbus
import time
import random
bus = smbus.SMBus(1)
address = 0x71
chars = " \"'(),-01234567890ABCDEFGHIJLNOPQRSTUY_`cehiou"