Skip to content

Instantly share code, notes, and snippets.

View rastasheep's full-sized avatar

Aleksandar Diklic rastasheep

View GitHub Profile
source "https://supermarket.getchef.com"
cookbook 'apache2', '= 1.9.6'
cookbook 'apache_wrapper', path: './apache_wrapper'
@rastasheep
rastasheep / update_chromedriver.sh
Last active July 4, 2018 18:20
Update chromedriver to latest version
wget http://chromedriver.storage.googleapis.com/2.11/chromedriver_linux64.zip
unzip chromedriver_linux64.zip
sudo cp chromedriver /usr/local/bin/
sudo chown runner:runner /usr/local/bin/chromedriver
@rastasheep
rastasheep / keyrepeat.shell
Last active January 1, 2020 20:09 — forked from kconragan/keyrepeat.shell
Enable key repeat in Apple Lion for Atom in Vim mode
# Mac OS X Lion introduced a new, iOS-like context menu when you press and hold a key
# that enables you to choose a character from a menu of options. If you are on Lion
# try it by pressing and holding down 'e' in any app that uses the default NSTextField
# for input.
#
# It's a nice feature and continues the blending of Mac OS X and iOS features. However,
# it's a nightmare to deal with in Atom if you're running vim mode,
# as it means you cannot press and hold h/j/k/l to move through your file. You have
# to repeatedly press the keys to navigate.
@rastasheep
rastasheep / README.md
Last active August 29, 2015 13:57 — forked from JoelBesada/README.md

This is an example command for Backtick. A Backtick command consists of some executable JavaScript and a bit of metadata in JSON.

Here are the required steps to create a command:

  1. Create a new Gist with a command.js and command.json file, or simply fork this one.

  2. Write your JavaScript in command.js. This will be injected into and executed on the page the user is currently on when they run it.

  3. Add some metadata to the command.json file:

  • name: The name of the command.
@rastasheep
rastasheep / README.md
Last active August 29, 2015 13:57 — forked from JoelBesada/README.md
Pivotal Tracker commit message bookmarklet for Backtick

Bookmarklet to generate a commit message with Pivotal Tracker story ID and title

For clarity and traceability, your commit messages should include the ID and title of the Pivotal Tracker story you're working on. For example:

[#12345] Add Google Maps to user profiles

When you now open one ore more story in Pivotal Tracker and hit the bookmarklet, it will display a prompt with a commit message. You can also select the stories using the blue box next to them.


Original source

@rastasheep
rastasheep / golang_setup.sh
Last active January 2, 2016 01:19
Setup Golang environment on Semaphore.
#!/bin/bash
curl -L https://raw.github.com/rastasheep/gobrew/master/tools/install.sh | sh; source ~/.bash_profile
mkdir -p /tmp/$SEMAPHORE_PROJECT_NAME; mv $HOME/$SEMAPHORE_PROJECT_NAME/* /tmp/$SEMAPHORE_PROJECT_NAME
gobrew install $1; gobrew use $1
mkdir -p "$HOME/go/{src,pkg,bin}"; cd $HOME/go
gobrew workspace set || true
mkdir -p "$HOME/go/src/github.com/$2"; cd $_; mv /tmp/$SEMAPHORE_PROJECT_NAME .; cd $SEMAPHORE_PROJECT_NAME
@rastasheep
rastasheep / install.sh
Created August 22, 2013 13:27
Install go on Semaphore
# Folder for go instalation
mkdir $MYHOME/go
sudo apt-get install -y mercurial meld build-essential bison libc6-dev-i386
hg clone -r release https://go.googlecode.com/hg/ $MYHOME/go
export PATH=$MYHOME/go/bin:$PATH
cd $MYHOME/go/src
./all.bash
# Export go exec folder to path
export PATH=$PATH:$MYHOME/go/bin
@rastasheep
rastasheep / gist:6172376
Created August 7, 2013 08:51
default finder options
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Application-Group</key>
<string>dot-mac</string>
<key>BuildMachineOSBuild</key>
<string>11E53</string>
<key>CFAppleHelpAnchor</key>
<string>apdED8125EF-CC33-4434-A1E7-5923608D5CE1</string>
@rastasheep
rastasheep / go_project_code_layout.md
Created July 28, 2013 15:58
How to organize a multi-package golang application hosted on Github.

Introduction

A common use case is to create a reusable library and an application that consumes it, and host both on Github. We will illustrate this with a trivial application called "uselessd" that consumes a likewise trivial library called "useless".

Code Layout

The app and both libraries live on Github, each in its own repository.

package main
import (
"database/sql"
"errors"
"fmt"
_ "github.com/bmizerany/pq"
"os"
"regexp"
"strings"