This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# cp437.gd | |
# author: Jacob Adkins (https://github.com/jpadkins) | |
# license: MIT | |
# | |
# Enum of all glyphs in code page 437 | |
enum Cp437 { | |
Null, | |
WhiteSmilingFace, | |
BlackSmilingFace, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |