Skip to content

Instantly share code, notes, and snippets.

View 4ndrej's full-sized avatar

Andrej 4ndrej

View GitHub Profile
@4ndrej
4ndrej / idiff
Created March 4, 2014 23:09
svn diff | idiff
#!/bin/sh
# Color diff output, for human consumption
# License: LGPLv2
# Author:
# http://www.pixelbeat.org/
# Notes:
# If 2 parameters are passed, then they are passed to
# the `diff -Naru` command first. Otherwise the parameters
# syncmaster at work
xrandr --output LVDS --mode 1680x1050 --output VGA-0 --mode 1600x1200 --left-of LVDS
@4ndrej
4ndrej / curlew-install.sh
Created April 7, 2015 12:36
curlew install
#!/bin/bash
rpm -Uvh http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-stable.noarch.rpm http://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-stable.noarch.rpm
yum -y install python ffmpeg mediainfo
curl https://codeload.github.com/chamfay/Curlew/zip/master -o Curlew-master.zip
unzip Curlew-master.zip
rm Curlew-master.zip
cd Curlew-master
python2 ./setup.py
cd ..
mkdir -p /home/liveuser/.curlew/
@4ndrej
4ndrej / autotest redgreen growl.sh
Last active December 14, 2015 07:38
autotest + redgreen + growl
# prepare for autotest + redgreen + growl
yum install libffi-devel
cat <<EOT >> Gemfile
group :test do
gem 'autotest'
gem 'autotest-growl'
gem 'autotest-fsevent'
@4ndrej
4ndrej / update_st3.sh
Created March 14, 2013 10:09
download updated sublime text 3 beta
#/bin/bash
URL=`curl -s http://www.sublimetext.com/3 | grep id=\"dl_linux_64 | sed -e "s/.*also available as a <a href=\"//g" -e "s/\".*//g"`
wget -nc $URL
@4ndrej
4ndrej / DM Delta Machine Tour Setlist Lyrics
Created May 24, 2013 09:11
Depeche Mode - Delta Machine Tour - Setlist Lyrics
# Depeche Mode - Delta Machine Tour - Setlist Lyrics
## 1. Welcome To My World
Welcome to my world
Step right through the door
Leave your tranquilizers at home
You don't need them anymore
All the drama queens are gone
config_description=UAE default configuration
config_hardware=false
config_host=false
config_version=0.8.29
unix.rom_path=~/
unix.floppy_path=~/
unix.hardfile_path=~/
unix.savestate_path=~/
unix.cpu_idle=0
amd64.use_tsc=yes
@4ndrej
4ndrej / wfcmgr-12.1.0-0.x86_64.diff
Created December 9, 2013 11:40
Citrix Receiver for Linux (ICA client) patch for ability to autorun .ica files with space in filename. Patched wfcmgr script is located at ./ICAClient/wfcmgr
# diff -Naur wfcmgr.old wfcmgr
--- wfcmgr.old 2013-07-25 15:49:31.180136647 +0200
+++ wfcmgr 2013-07-25 15:50:10.153028280 +0200
@@ -143,7 +143,7 @@
if [ -f $HOME/.ICAClient/.eula_accepted ]
then
# EULA has been accepted on a previous occasion
- exec $ICAROOT/wfcmgr.bin $*
+ exec $ICAROOT/wfcmgr.bin $1 $2 "$3"
fi
@4ndrej
4ndrej / infoq.sh
Created December 22, 2013 02:28 — forked from shirishp/infoq.sh
#! /bin/bash
# Author: Shirish Padalkar (https://twitter.com/_Garbage_)
if [ "$#" -ne 1 ]; then
echo "Usage: $0 infoq_presentation_url"
exit 1
fi
url_with_spaces=`curl -A "Mozilla/5.0 (iPad; U; CPU OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B334b Safari/531.21.10" $1 | grep "<source src=" | tr -dc "[:print:]"`
@4ndrej
4ndrej / gradle2pom.sh
Last active October 26, 2016 08:28
gradle to maven deps filter
cat build.gradle\
| awk '{$1=$1};1'\
| grep -i "compile "\
| sed -e "s/^compile //Ig" -e "s/^testCompile //Ig"\
| sed -e "s/\/\/.*//g"\
| sed -e "s/files(.*//g"\
| grep -v ^$\
| tr -d "'"\
| sed -e "s/\([-_[:alnum:]\.]*\):\([-_[:alnum:]\.]*\):\([-+_[:alnum:]\.]*\)/<dependency>\n\t<groupId>\1<\/groupId>\n\t<artifactId>\2<\/artifactId>\n\t<version>\3<\/version>\n<\/dependency>/g"