Skip to content

Instantly share code, notes, and snippets.

View jpadkins's full-sized avatar

Jacob Paul Adkins jpadkins

View GitHub Profile
@jpadkins
jpadkins / cp437.gd
Last active December 20, 2024 20:57
Godot CP437 TileSet Generator
# cp437.gd
# author: Jacob Adkins (https://github.com/jpadkins)
# license: MIT
#
# Enum of all glyphs in code page 437
enum Cp437 {
Null,
WhiteSmilingFace,
BlackSmilingFace,
@jpadkins
jpadkins / generate_wallpaper.py
Last active December 27, 2017 05:10
Generate hd wallpapers from small or oddly shaped pictures
#!/bin/python
###############################################################################
# Author: Jacob Adkins (jpadkins)
#
# Create a wallpaper from a smaller picture by centering, cropping, and
# bluring a section of the picture to use as the background
###############################################################################
import sys
@jpadkins
jpadkins / .tmux.conf
Created May 27, 2017 20:06
.tmux.conf on 5-27-2017
# Enable the mouse
set -g mouse on
# Rebind Keys
unbind C-b
set -g prefix C-Space
bind C-Space send-prefix
# List of plugins
set -g @plugin 'tmux-plugins/tpm'
@jpadkins
jpadkins / chat_client.exs
Created September 28, 2016 21:26
CSE5345 Jacob Adkins chat client
defmodule ChatClient do
def start do
server = { ChatServer, :"dt1@10.8.123.154" }
pid = spawn __MODULE__, :get_message_loop, []
connect(server, pid)
send_message_loop(server, pid)
end
def connect(server, pid) do