Skip to content

Instantly share code, notes, and snippets.

View deletosh's full-sized avatar

Dele Tosh deletosh

View GitHub Profile
@deletosh
deletosh / gist:9027335
Created February 16, 2014 00:22
Free space for composer
/bin/dd if=/dev/zero of=/var/swap.1 bs=1M count=1024
/sbin/mkswap /var/swap.1
/sbin/swapon /var/swap.1
# 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
@deletosh
deletosh / gist:dacf27125961e3efd387
Created June 16, 2014 18:42
Sentry new license
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
@deletosh
deletosh / cap.rb
Last active August 29, 2015 14:14 — forked from kix/cap.rb
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
@deletosh
deletosh / sampler
Created July 8, 2015 14:29
something.asp
<!--#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" -->
<%
@deletosh
deletosh / cygwin_setup
Created July 16, 2015 13:38
Properly Setup Cygwin
# 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:
@deletosh
deletosh / vv_dump.sh
Created November 22, 2011 21:01
Dumps dump
mysqldump –uYoursqlname –pYourSQlpwd dbname > dumpfile-name.sql && perl –pie 's/your-local-site-here/theserver-path-here/g' dumpfile-name.sql > dumpfile-name.sql && git add . && git commit –m "commit message" && git push
@deletosh
deletosh / TechDecisions.md
Created November 30, 2011 17:55
Choices to make in a new Rails project. Would love to see this forked with other's opinions.

Team Support

Source Code Control

git (private server)
Alternative: github

Time Tracking

Cashboard

@deletosh
deletosh / _html5boilerplate.css.sass
Created December 3, 2011 22:19 — forked from richardvenneman/_html5boilerplate.css.sass
HTML5 Boilerplate HAML & SASS
/*
* HTML5 ✰ Boilerplate
*
* What follows is the result of much research on cross-browser styling.
* Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
* Kroc Camen, and the H5BP dev community and team.
*
* Detailed information about this CSS: h5bp.com/css
*
* ==|== normalize ==========================================================
@deletosh
deletosh / appSpec.coffee
Created December 15, 2011 02:06
SmoothCoffee / using Jasmine
describe "Absolute", ->
xit "should return an absolute number", ->
pos_num = 1; neg_num = -1
expect(absolute(neg_num)).toEqual(pos_num)
xit "should return same number", ->
pos_num = 1; neg_num = -1
expect(absolute(pos_num)).toEqual(pos_num)