This file contains 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
# | |
# /etc/makepkg.conf | |
# | |
######################################################################### | |
# SOURCE ACQUISITION | |
######################################################################### | |
# | |
#-- The download utilities that makepkg should use to acquire sources | |
# Format: 'protocol::agent' |
This file contains 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
if [ ! -e ~/.antigen/source/antigen.zsh ];then | |
mkdir ~/.antigen | |
git clone https://github.com/zsh-users/antigen.git ~/.antigen/source | |
fi; | |
source ~/.antigen/source/antigen.zsh | |
# OK I need this :/ | |
antigen use oh-my-zsh | |
# Theme | |
#antigen theme maran | |
antigen bundle nojhan/liquidprompt |
This file contains 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/env zsh | |
ROOT=~/.profiles | |
if [ -z $PROFILE_DIR ] || [ -z PROFILE_HISTORY ];then | |
cd $ROOT | |
FILES=($ROOT/*/) | |
FILES+=("Exit") |
This file contains 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/env zsh | |
ROOT=~/.profiles | |
if [ -z $PROFILE_DIR ] || [ -z PROFILE_HISTORY ];then | |
pushd $ROOT >/dev/null | |
FILES=($ROOT/*/) | |
FILES+=("Exit") |
This file contains 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/env zsh | |
# to setup : | |
# mkdir $ROOT/yourname | |
# $EDITOR $ROOT/yourname/zshrc | |
ROOT=~/.profiles | |
if [ -z $PROFILE_DIR ];then | |
pushd $ROOT >/dev/null | |
FILES=($ROOT/*/) |
This file contains 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
# See: /usr/share/doc/mpd/mpdconf.example | |
user "f0rud" | |
music_directory "/home/f0rud/musics" | |
state_file "/home/f0rud/.mpd/mpdstate" | |
playlist_directory "/home/f0rud/.mpd/playlists" | |
db_file "/home/f0rud/.mpd/mpd.db" | |
pid_file "/home/f0rud/.mpd/mpd.pid" | |
bind_to_address "0.0.0.0" | |
audio_output { |
This file contains 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
code.google.com | |
googleapis.com | |
googleusercontent.com | |
ytimg.com | |
youtube.com | |
youtube-nocookie.com | |
bitbucket.org | |
thepiratebay.se | |
humblebundle.com | |
plus.url.google.com |
This file contains 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
code.google.com | |
googleapis.com | |
googleusercontent.com | |
ytimg.com | |
youtube.com | |
youtube-nocookie.com | |
bitbucket.org | |
thepiratebay.se | |
humblebundle.com | |
plus.url.google.com |
This file contains 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 | |
### BEGIN INIT INFO | |
# Provides: cow | |
# Required-Start: $network | |
# Required-Stop: $network | |
# Default-Start: 2 3 4 5 | |
# Default-Stop: 0 1 6 | |
# Short-Description: COW: Climb Over the Wall http proxy | |
# Description: Automatically detect blocked site and use parent proxy. | |
### END INIT INFO |
This file contains 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
package main | |
import ( | |
"fmt" | |
"sync" | |
) | |
type job struct { | |
id int | |
url string |