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
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] |
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
(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) |
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
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 |
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
#!/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; |
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
#!/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 |
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
* * * * * /home/kabaka/scripts/tl.sh | |
0 * * * * nice -n 19 ionice -c 3 /home/kabaka/images/jpgtompg.sh /home/kabaka/images/timelapse snowcloth.flv | |
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/zsh | |
if [[ $# != 2 ]]; then | |
echo "Usage: $0 directory output" | |
exit | |
fi | |
DIR=$1 | |
OUT=$2 |
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/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 |
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
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] |