This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"added_words": | |
[ | |
"Evernote", | |
"Evenote" | |
], | |
"bold_folder_labels": true, | |
"caret_extra_width": 1, | |
"caret_style": "phase", | |
"enable_live_count": true, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Properly Setup Cygwin | |
#### Moving your home directory to your Windows profile directory | |
I found this setup to be consistent with other unix systems. It preserves my sanity in the long run. | |
``` | |
mkpasswd -l -d -p "$(cygpath -H)" > /etc/passwd | |
mkgroup -l -d > /etc/group | |
``` | |
#### Installing Essential Programs | |
Download the setup.exe and install it along with wget. We will be using apt-cyg, which is similar to apt-get in Debian-based linux distros. It allows you to specify the packages you want to install right on the terminal: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!--#include virtual="/ajaxed/bootstrap.asp" --> | |
<!--#include virtual="/includes/authCheck.asp" --> | |
<!-- classes --> | |
<!--#include virtual="/ajaxed/class_email/email.asp" --> | |
<!--#include virtual="/class/split.inc" --> | |
<!--#include virtual="/class/csvparser.inc" --> | |
<% |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http://www.dizzy.co.uk/cheatsheets | |
This work is licensed under the Creative Commons | |
Attribution-NonCommercial-NoDerivs 2.0 License. To | |
view a copy of this license, visit | |
http://creativecommons.org/licenses/by-nc-nd/2.0/uk | |
########## Shell Commands ########## | |
Installation: | |
$ gem install capistrano |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Cartalyst PSL | |
Copyright (c) 2011-2014, Cartalyst LLC, | |
All rights reserved. | |
This license is a legal agreement between you and Cartalyst LLC for the use of | |
any package (*all versions*) Software (the "Software"). By downloading any | |
version of the Software you agree to be bound by the terms and conditions of | |
this license. | |
You may alter, modify, or extend the Software for your own use or for use in as |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# From a fresh install of squeeze | |
apt-get install ruby rubygems # Need ruby to use fpm | |
gem1.8 install fpm --no-ri --no-rdoc | |
apt-get install build-essential openssl libreadline6 libreadline6-dev zlib1g zlib1g-dev libssl-dev ncurses-dev libyaml-dev | |
wget ftp://ftp.ruby-lang.org/pub/ruby/1.9/ruby-1.9.3-p125.tar.gz | |
tar -zxvf ruby-1.9.3-p125.tar.gz | |
cd ruby-1.9.3-p125 | |
rm -rf /tmp/ruby193 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/bin/dd if=/dev/zero of=/var/swap.1 bs=1M count=1024 | |
/sbin/mkswap /var/swap.1 | |
/sbin/swapon /var/swap.1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(eval):3: unterminated string meets end of file (SyntaxError) | |
/usr/local/rvm/gems/ruby-2.0.0-p247/gems/deface-1.0.0.rc4/lib/deface/dsl/loader.rb:28:in `instance_eval' | |
/usr/local/rvm/gems/ruby-2.0.0-p247/gems/deface-1.0.0.rc4/lib/deface/dsl/loader.rb:28:in `block in load' | |
/usr/local/rvm/gems/ruby-2.0.0-p247/gems/deface-1.0.0.rc4/lib/deface/dsl/loader.rb:17:in `open' | |
/usr/local/rvm/gems/ruby-2.0.0-p247/gems/deface-1.0.0.rc4/lib/deface/dsl/loader.rb:17:in `load' | |
/usr/local/rvm/gems/ruby-2.0.0-p247/gems/deface-1.0.0.rc4/lib/deface/environment.rb:102:in `block (2 levels) in enumerate_and_load' | |
/usr/local/rvm/gems/ruby-2.0.0-p247/gems/deface-1.0.0.rc4/lib/deface/environment.rb:101:in `glob' | |
/usr/local/rvm/gems/ruby-2.0.0-p247/gems/deface-1.0.0.rc4/lib/deface/environment.rb:101:in `block in enumerate_and_load' | |
/usr/local/rvm/gems/ruby-2.0.0-p247/gems/deface-1.0.0.rc4/lib/deface/environment.rb:91:in `each' | |
/usr/local/rvm/gems/ruby-2.0.0-p247/gems/deface-1.0.0.rc4/lib/deface/environment.rb:91:in `enu |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Ruby 1.9.3 | |
1. Copied spree/backend/app/assets to new extenion (geleyi) | |
2. deploy with capistrano | |
--Gemfile --- | |
source 'https://rubygems.org' | |
gem 'rails', '3.2.14' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Based upon the NCSA server configuration files originally by Rob McCool. | |
# | |
# This is the main Apache server configuration file. It contains the | |
# configuration directives that give the server its instructions. | |
# See http://httpd.apache.org/docs/2.2/ for detailed information about | |
# the directives. | |
# | |
# Do NOT simply read the instructions in here without understanding | |
# what they do. They're here only as hints or reminders. If you are unsure |