Skip to content

Instantly share code, notes, and snippets.

View kabaka's full-sized avatar
🏳️‍🌈

Kyle Johnson kabaka

🏳️‍🌈
  • Northern California
View GitHub Profile
@kabaka
kabaka / -
Created September 29, 2015 03:18
ERROR: unsatisfiable constraints:
musl-1.1.11-r2:
breaks: musl-utils-1.1.11-r0[musl=1.1.11-r0]
musl-dev-1.1.11-r0[musl=1.1.11-r0]
musl-utils-1.1.11-r0[musl=1.1.11-r0]
satisfies:
musl-utils-1.1.11-r0[so:libc.musl-x86_64.so.1]
jack-1.9.10-r2[so:libc.musl-x86_64.so.1]
samba-libs-4.2.3-r0[so:libc.musl-x86_64.so.1]
mesa-gl-10.6.5-r1[so:libc.musl-x86_64.so.1]
@kabaka
kabaka / -
Created September 29, 2015 02:57
(1/785) Purging xclip (0.12-r0)
(2/785) Purging .makedepends-scmpc (0)
(3/785) Purging confuse-dev (2.7-r3)
(4/785) Purging scmpc (0.3.1-r1)
(5/785) Purging confuse (2.7-r3)
(6/785) Purging namebench (1.3.1-r0)
(7/785) Purging py-dnspython (1.11.1-r0)
(8/785) Purging py-jinja2 (2.7.3-r0)
(9/785) Purging py-markupsafe (0.23-r0)
(10/785) Purging libofa-dev (0.9.3-r0)
@kabaka
kabaka / gist:1765385
Created February 8, 2012 04:12
Microsoft's WHOIS - LOL
Whois Server Version 2.0
Domain names in the .com and .net domains can now be registered
with many different competing registrars. Go to http://www.internic.net
for detailed information.
Server Name: MICROSOFT.COM.ZZZZZZZZZZZZZZZZZZZ.GET.ONE.MILLION.DOLLARS.AT.WWW.UNIMUNDI.COM
IP Address: 209.126.190.70
Registrar: DIRECTI INTERNET SOLUTIONS PVT. LTD. D/B/A PUBLICDOMAINREGISTRY.COM
#!/usr/bin/perl
$me{name} = "lollersk8s.nenolod.net";
$me{version} = "2.8/ShadowIRCd-5.0_nenolod's-revenge";
$me{desc} = "teh wins!";
$me{users} = 0;
$me{maxusers} = 0;
$me{starttime} = `date`;
$me{starttime} =~ s/\n//g;
#!/usr/bin/ruby
# Weechat Activity Graph Generator
# ©2011 Kyle Johnson
# kyle@vacantminded.com
#
# Use it if you want. Don't blame me if it eats your files or burns your house
# down or becomes sentient and takes over the world.
if ARGV[0] == nil
* * * * * /home/kabaka/scripts/tl.sh
0 * * * * nice -n 19 ionice -c 3 /home/kabaka/images/jpgtompg.sh /home/kabaka/images/timelapse snowcloth.flv
#!/bin/zsh
if [[ $# != 2 ]]; then
echo "Usage: $0 directory output"
exit
fi
DIR=$1
OUT=$2
#!/bin/bash
FILENAME="/home/kabaka/images/timelapse/timelapse_`date +%m%d%Y_%H%M%S%N`.jpeg"
streamer -q -o now.ppm 2> /dev/null && convert now.ppm $FILENAME && rm now.ppm
@kabaka
kabaka / large.rb
Created November 8, 2010 10:56
BIG CHARACTERS
def makeBig(str)
arr = [ "", "", "", "", "", "" ]
str.each_char { |c|
cArr = getBigLetter(c)
arr[0] << cArr[0]
arr[1] << cArr[1]
arr[2] << cArr[2]
arr[3] << cArr[3]