Skip to content

Instantly share code, notes, and snippets.

2013-01-09 16:04:21.444 [info] <0.152.0>@snh_api_worker:handle_cast:183 URL: "http://neznaenko.fishsticksgames.com/rest.php?method=CasinoRest/bankroll_update&amount=800&croupier=6vs8xhtsdobqxkxb852w4vrynagp7vgd&manager=manager1&pt=1357740261&username=92750928c8c2cf3cfef050001fb.000&sig=2c6305f97124f82478612139a1648a6b"2013-01-09 16:04:37.643 [info] <0.155.0>@snh_api_worker:handle_cast:183 URL: "http://neznaenko.fishsticksgames.com/rest.php?method=CasinoRest/bankroll_update&amount=1600&croupier=6vs8xhtsdobqxkxb852w4vrynagp7vgd&manager=manager1&pt=1357740277&username=92750928c8c2cf3cfef050001fb.000&sig=27514b93f3b25edb70162b202a423bd8"2013-01-09 16:04:37.644 [info] <0.156.0>@snh_api_worker:handle_cast:183 URL: "http://neznaenko.fishsticksgames.com/rest.php?method=CasinoRest/bankroll_update&amount=800&croupier=6vs8xhtsdobqxkxb852w4vrynagp7vgd&manager=manager1&pt=1357740277&username=00650d192d271139ee456000002.000&sig=45f2d0e4f4bd2cc90fa3919826a24267"2013-01-09 16:04:53.855 [info] <0.159.0>@snh_api_worker:handle_
$ sudo apt-get install python-software-properties
$ sudo add-apt-repository ppa:gophers/go
$ sudo apt-get update
$ sudo apt-get install golang-tip # Or golang-weekly, or golang-stable
$ sudo apt-get install python-software-properties
$ sudo add-apt-repository ppa:gophers/go
$ sudo apt-get update
$ sudo apt-get install golang-tip # Or golang-weekly, or golang-stable
# Go installation in Ubuntu 12.04 Server LTS
$ sudo apt-get install python-software-properties
$ sudo add-apt-repository ppa:gophers/go
$ sudo apt-get update
$ sudo apt-get install golang-tip # Or golang-weekly, or golang-stable
# Go installation in Ubuntu 12.04 Server LTS
$ sudo apt-get install python-software-properties
$ sudo add-apt-repository ppa:gophers/go
$ sudo apt-get update
$ sudo apt-get install golang-tip # Or golang-weekly, or golang-stable
@burinov
burinov / example
Created January 15, 2013 16:53 — forked from cedricwalter/example
## Server configuration for nginx to host Atlassian Jira / Jetbrain TeamCity or any other Tomcat web application
#
# author cedric.walter, www.waltercedric.com
# to be saved for ex in /etc/nginx/sites-available/example
server {
listen 80;
server_name jira.example.com;
access_log off;
location / {
## Server configuration for nginx to host Atlassian Jira / Jetbrain TeamCity or any other Tomcat web application
#
# author cedric.walter, www.waltercedric.com
# to be saved for ex in /etc/nginx/sites-available/example
server {
listen 80;
server_name jira.example.com;
access_log off;
location / {

Installing SSHPASS

SSHPass is a tiny utility, which allows you to provide the ssh password without using the prompt. This will very helpful for scripting. SSHPass is not good to use in multi-user environment. If you use SSHPass on your development machine, it don't do anything evil.

Installing on Ubuntu

apt-get install sshpass

Installing on OS X

@burinov
burinov / 1commands.sh
Last active July 24, 2025 14:18 — forked from ckurtm/AndroidManifest.xml
Example on how to use adb to start an Activity,BroadcastReceiver or Service from adb and include intent extras too.for Activity: adb shell am start -n "com.peirr.test/com.peirr.test.MyActivity" --es name "John" --ei age 30for BroadcastReceiver adb shell am broadcast -n "com.peirr.test/com.peirr.test.MyReceiver" --es name "John" --ei age 30for Se…
#Example on how to use adb to start an Activity,
#BroadcastReceiver or Service from adb and include intent extras too.
#for Activity:
adb shell am start -n "com.peirr.test/com.peirr.test.MyActivity" --es name "John" --ei age 30
#for BroadcastReceiver
adb shell am broadcast -n "com.peirr.test/com.peirr.test.MyReceiver" --es name "John" --ei age 30
@burinov
burinov / tmux-cheats.md
Created August 3, 2018 13:01 — forked from Starefossen/tmux-cheats.md
My personal tmux cheat sheet for working with sessions, windows, and panes. `NB` I have remapped the command prefix to `ctrl` + `a`.

Sessions

New Session

  • tmux new [-s name] [cmd] (:new) - new session

Switch Session

  • tmux ls (:ls) - list sessions
  • tmux switch [-t name] (:switch) - switches to an existing session