Skip to content

Instantly share code, notes, and snippets.

View kalashnikovisme's full-sized avatar
💜
Look at my readme

Pavel Kalashnikov kalashnikovisme

💜
Look at my readme
View GitHub Profile
@kalashnikovisme
kalashnikovisme / .bashrc
Last active October 27, 2019 11:52
config files
# ~/.bashrc: executed by bash(1) for non-login shells.
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
# for examples
# If not running interactively, don't do anything
[ -z "$PS1" ] && return
# don't put duplicate lines in the history. See bash(1) for more options
# ... or force ignoredups and ignorespace
HISTCONTROL=ignoredups:ignorespace
@kalashnikovisme
kalashnikovisme / script.sh
Last active October 27, 2019 11:52
script for my environment on ubuntu 12.04 LTS and 14.04 (testing) LTS #rails #vim #git #postgresql
sudo apt-get update
# ruby and rails
sudo apt-get install htop graphviz git curl build-essential openssl libreadline6 libreadline6-dev zlib1g zlib1g-dev libssl-dev libyaml-dev libreadline-dev libsqlite3-dev libxslt1-dev libgdbm-dev libncurses5-dev automake libtool bison libffi-dev libsqlite3-0 libmysql-ruby libmysqlclient-dev libs$ --yes
curl -L https://get.rvm.io | bash -s stable --rails
echo "gem: --no-ri --no-rdoc" > ~/.gemrc
notify-send "Ruby on Rails" Installed
git clone https://gist.github.com/6722293.git ~/config_files
mv ~/config_files/.pryrc ~/.pryrc
Factory.define :item do |f|
include ActionDispatch::TestProcess
f.name "Macbook Pro 15"
f.price_in_dollars 1500
f.photo { fixture_file_upload('/files/avatar.jpg', 'image/jpg') }
end