Skip to content

Instantly share code, notes, and snippets.

View doole's full-sized avatar

Dušan Živojnov doole

View GitHub Profile
@doole
doole / ruby_centos6.sh
Last active April 13, 2017 21:19
Ruby/Rails setup on CentOS 6.x with Vagrant
#!/bin/bash
# Vagrant CentOS6 boxes
# CentOS 6.4 x64 https://github.com/2creatives/vagrant-centos/releases/download/v6.4.2/centos64-x86_64-20140116.box
# CentOS 6.5 x64 https://github.com/2creatives/vagrant-centos/releases/download/v6.5.3/centos65-x86_64-20140116.box
# Update
sudo yum -y update
# Add Development tools
@doole
doole / pelican_on_arch.sh
Last active August 29, 2015 14:06
Pelican installation on Arch Linux
#!/bin/sh
####
# Documentation
# http://docs.getpelican.com/en/3.4.0/importer.html#import
# https://wiki.archlinux.org/index.php/Haskell#Haskell_platform
####
# =Setup
pyvenv ./env
@doole
doole / mpv.conf
Last active February 14, 2024 16:09
Configuration file for `mpv`
#
# mpv configuration file
#
# See the CONFIGURATION FILES section in the man page
# for a detailed description of the syntax.
#
# Profiles should be placed at the bottom of the configuration file to ensure
# that settings wanted as defaults are not restricted to specific profiles.
#
# Note that the commented example options usually do _not_ set the default
@doole
doole / upgrade_postgres_92_93_debian.sh
Created March 19, 2014 10:17
Upgrade PostgreSQL 9.2 to 9.3 of Debian Wheezy
#!/bin/bash
# Update and upgrade packages
sudo apt-get update && sudo apt-get upgrade
# Install postgres 9.3
sudo apt-get install postgresql-9.3 postgresql-server-dev-9.3 postgresql-contrib-9.3
# Having Postgres 9.2 already, this will create database instance configured to run on port 5433
@doole
doole / global_modules.txt
Last active August 29, 2015 13:57
Node.js and npm installation on Mac OS X Mavericks/Yosemite.
bower
coffeelint
csslint
grunt
gulp
jshint
npm
uglify-js
@doole
doole / .vimrc
Last active August 31, 2022 10:17
Minimal .vimrc for server setup
"
" Minimal .vimrc for server setup
"
set nocompatible
set autoindent
set smartindent
set tabstop=4
set shiftwidth=4
set showmatch
set vb t_vb=
#! /bin/bash
### BEGIN INIT INFO
# Provides: unicorn
# Required-Start: $local_fs $remote_fs $network $syslog
# Required-Stop: $local_fs $remote_fs $network $syslog
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: starts the unicorn web server
# Description: starts unicorn
@doole
doole / install_python3.sh
Last active April 11, 2024 15:41
Python 3.3 installation script for Debian Wheezy
PY_VER="3.3.3"
# Update
apt-get update && apt-get dist-upgrade -y
# Install required packages
apt-get install -y build-essential libsqlite3-dev sqlite3 bzip2 libbz2-dev zlib1g-dev libssl-dev libgdbm-dev libreadline-dev libc6-dev
# Get, compile and install python3
cd /usr/local/src
@doole
doole / install_ruby.sh
Created January 27, 2014 16:22
Ruby 2.0.0-p353 build script for Debian Wheezy
RUBY="ruby-2.0.0-p353"
GEMS="rubygems-2.1.11"
# Update system
apt-get update && sudo apt-get upgrade
# Install build requirements
apt-get install -y build-essential autoconf
# These deps will support common libraries like yaml and give you the best irb experience.
@doole
doole / commands_postgres.sql
Last active January 4, 2016 17:08
Simple user/database setup for PostgreSQL
--
-- Reset auto increment
--
ALTER SEQUENCE {table}_{column}_seq RESTART WITH 1;
--
TRUNCATE TABLE table RESTART IDENTITY;