View patcher.sh
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 | |
method="$1" | |
name="$2" | |
archives="$(dirname "${BASH_SOURCE[0]}")" | |
live=`pwd` | |
release="$archives/$name.zip" | |
backup="$archives/${name}_BAK.zip" | |
log="$live/released.txt" |
View prompt.bashrc
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
prompt-color() { printf '\\[\e[38;5;%sm\\]%s\\[\e[m\\]' "$1" "$2"; } | |
PS1="$(printf '%s' \ | |
'\n' \ | |
`prompt-color 226 '\u'` \ | |
'@' \ | |
`prompt-color 208 '\h'` \ | |
':' \ | |
`prompt-color 207 '\w'` \ | |
'\n' \ | |
`prompt-color '$(( $?==0 ? 82 : 196 ))' '$?'` \ |
View prompt.Microsoft.PowerShell_profile.ps1
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
function Prompt { | |
$error = !$? | |
Write-Host | |
Write-Host -NoNewline -ForegroundColor Yellow ([Environment]::UserName) | |
Write-Host -NoNewline '@' | |
Write-Host -NoNewline -ForegroundColor Cyan ([Environment]::MachineName) | |
Write-Host -NoNewline ':' | |
Write-Host -ForegroundColor Magenta $PWD | |
Write-Host -NoNewline -ForegroundColor ('Green','Red')[$error] ("$([char]0x2756)", '$')[$PSVersionTable.Platform -match '^($|(Microsoft )?Win)'] | |
Write-Host -NoNewline -ForegroundColor DarkGray '>' |
View hairOfTheDiff.sh
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 | |
same='-' #unchanged | |
up='△' #exists in first line, but not in second | |
down='▽' #exists in second line, but not in first | |
reset='' | |
reset=$'\e[0m' | |
same=$reset | |
up=$reset$'\e[1m\e[7m' |
View blameDiff.sh
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
function blameDiff() { | |
file="$1" | |
rev1="$2" | |
rev2="$3" | |
#default to HEAD if omitted | |
if [ -n "$rev1" ] | |
then | |
title1="(revision $rev1)" | |
else |
View lockMonitor.sh
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 | |
#prints out, among other things; | |
# string "org.kde.screensaver" | |
#transform it to 'org.kde.screensaver' | |
service=$(\ | |
dbus-send \ | |
--session \ | |
--dest=org.freedesktop.DBus \ | |
--type=method_call \ |
View rezip.sh
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
zipinfo -1 A.zip | while read filename | |
do | |
unzip -p A.zip "$filename" | zip -9 A.zip - | |
zip --delete A.zip "$filename" | |
printf "@ -\n@=$filename\n" | zipnote -w A.zip | |
done |
View change_reddit_wallpaper.py
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
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
from __future__ import unicode_literals | |
import argparse | |
import ctypes | |
import os | |
#requires version 3.5 of praw | |
import praw | |
import platform | |
import re |
View resetEnv.ps1
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
function resetEnv { | |
Set-Item ` | |
-Path (('Env:', $args[0]) -join '') ` | |
-Value (( | |
[System.Environment]::GetEnvironmentVariable($args[0], "Machine"), | |
[System.Environment]::GetEnvironmentVariable($args[0], "User") | |
) -match '.' -join ';') | |
} |
View resize.ps1
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
Add-Type -AssemblyName System.Drawing | |
Filter PointF { | |
[System.Drawing.PointF]::new($_[0], $_[1]) | |
} | |
Function ToArray { | |
Begin { $output = [System.Collections.ArrayList]::new() } | |
Process { $output.Add($_) | Out-Null } | |
End { return ,$output } |
OlderNewer