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/python | |
# HAIKU generator | |
# /g/ programming project for n00bs | |
from random import choice, randint | |
ENTRY = [ 'sitting', 'being', '>be 12', 'happily', 'regretfully' ] | |
INTERACTIONS = [ | |
('on', 'sofa', 'laying'), |
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
#include <stdio.h> | |
#include <stdbool.h> | |
#include <string.h> | |
static void | |
cmd_skeleton(int argc, const char **argv) | |
{ | |
printf("Skeleton! With %d parameters\n", argc); | |
} |
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/sh | |
SCREENRES=1280x1024 | |
BITRATE=1000K | |
FPS=30 | |
TEMP=`mktemp -u` | |
xwininfo > $TEMP | |
WINX=`grep "Absolute upper-left X" $TEMP | awk '{ print $4 }'` | |
WINY=`grep "Absolute upper-left Y" $TEMP | awk '{ print $4 }'` | |
WINW=`grep Width $TEMP | awk '{ print $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
execute pathogen#infect() | |
" Bundle: magic-dot-files/TagHighlight | |
" Bundle: scrooloose/nerdtree | |
" Bundle: itchyny/lightline.vim | |
if has("syntax") | |
syntax on | |
endif | |
if has("autocmd") |
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
"set guifont=Terminus\ 11 | |
"set guifont=ProggyCleanTT\ 12 | |
"set guifont=Monospace\ 8 | |
set guifont=Liberation\ Mono\ 9 | |
set guioptions-=T | |
set guioptions-=t | |
set guioptions-=r | |
set guioptions-=m | |
set guioptions-=L |
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
# RXVT Config. terminus font is required! | |
#Rxvt*font:xft: true | |
#Rxvt*font: terminus-iso8859-1-14 | |
#Rxvt*font: xft:Mono:pixelsize=13 | |
Rxvt*font: xft:Monospace:pixelsize=13 | |
URxvt*transparent: false | |
URxvt*tintColor: White | |
URxvt*shading: 25 |
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
style "vimfix" { | |
bg[NORMAL] = "#242424" # this matches my gvim theme 'Normal' bg color. | |
} | |
widget "vim-main-window.*GtkForm" style "vimfix" |
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
#--------------------------------------------- | |
# TINT2 CONFIG FILE | |
#--------------------------------------------- | |
# For more information about tint2, see: | |
# http://code.google.com/p/tint2/wiki/Welcome | |
# | |
# For more config file examples, see: | |
# http://crunchbanglinux.org/forums/topic/3232/my-tint2-config/ | |
# Background definitions |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<!-- Do not edit this file, it will be overwritten on install. | |
Copy the file to $HOME/.config/openbox/ instead. --> | |
<openbox_config xmlns="http://openbox.org/3.4/rc" xmlns:xi="http://www.w3.org/2001/XInclude"> | |
<resistance> | |
<strength>20</strength> | |
<screen_edge_strength>40</screen_edge_strength> | |
</resistance> | |
<focus> | |
<focusNew>yes</focusNew> |
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
PS1=' \[\e[1;33m\][ \[\e[2;30m\]\W \[\e[1;33m\]] # \[\e[0m' | |
alias sshc='ssh -C -c arcfour' | |
alias scpc='scp -C -c arcfour' | |
alias antq='ant -q' | |
alias youtube-dl='youtube-dl --no-part' | |
alias py3='python3' | |
alias cmake-clear='rm -rf CMakeCache.txt CMakeFiles' |
OlderNewer