Skip to content

Instantly share code, notes, and snippets.

Avatar

Andrej 4ndrej

View GitHub Profile
@4ndrej
4ndrej / SSLPoke.java
Last active April 20, 2023 15:23
Test of java SSL / keystore / cert setup. Check the comment #1 for howto.
View SSLPoke.java
import javax.net.ssl.SSLParameters;
import javax.net.ssl.SSLSocket;
import javax.net.ssl.SSLSocketFactory;
import java.io.*;
/** Establish a SSL connection to a host and port, writes a byte and
* prints the response. See
* http://confluence.atlassian.com/display/JIRA/Connecting+to+SSL+services
*/
public class SSLPoke {
@4ndrej
4ndrej / autotest redgreen growl.sh
Last active December 14, 2015 07:38
autotest + redgreen + growl
View autotest redgreen growl.sh
# 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
View update_st3.sh
#/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 / maven.sublime-build
Last active December 25, 2017 10:44
maven build command for sublime text 3
View maven.sublime-build
{
"working_dir": "${project_path:${folder}}",
"shell_cmd": "mvn -fae clean install"
}
@4ndrej
4ndrej / DM Delta Machine Tour Setlist Lyrics
Created May 24, 2013 09:11
Depeche Mode - Delta Machine Tour - Setlist Lyrics
View DM 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
View uaerc
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
View wfcmgr-12.1.0-0.x86_64.diff
# 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
View 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 / idiff
Created March 4, 2014 23:09
svn diff | idiff
View 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
@4ndrej
4ndrej / curlew-install.sh
Created April 7, 2015 12:36
curlew install
View curlew-install.sh
#!/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/