Skip to content

Instantly share code, notes, and snippets.

View 4ndrej's full-sized avatar

Andrej 4ndrej

View GitHub Profile
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 / 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
@4ndrej
4ndrej / maven.sublime-build
Last active December 25, 2017 10:44
maven build command for sublime text 3
{
"working_dir": "${project_path:${folder}}",
"shell_cmd": "mvn -fae clean install"
}
@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 / 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 / SSLPoke.java
Last active January 3, 2024 09:50
Test of java SSL / keystore / cert setup. Check the comment #1 for howto.
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 {