Skip to content

Instantly share code, notes, and snippets.

@msurguy
msurguy / List.md
Last active April 30, 2024 15:14
List of open source projects made with Laravel

Other people's projects:

My projects (tutorials are on my blog at http://maxoffsky.com):

@ekancepts
ekancepts / SASS.md
Created November 2, 2012 07:23
Experiments with Chris Eppstein's RESPONSIVE LAYOUTS WITH SASS

#This experiment is done on Ubuntu 12.04. All the commands are executed in Terminal unless otherwise mentioned. ##Clone Chris Eppstein's Responsive Layouts With SASS ###Open Terminal and go to the folder where you want create this test project and execute following command git clone git://gist.github.com/1163006.git ###Create a project with Compass compass create test_responsive

I have both test_responsive folder and Chris Eppstein's git clone(gist-399379) in same folderCopy all .scss files into test_responsive/sass folder and .css files into test_responsive/stylesheets folder
cp gist-3993794/*.scss test_responsive/sass/
cp gist-3993794/*.css test_responsive/stylesheets/

###Copy all the code from sass/output.scss into sass/screen.scss

@jcaraballo
jcaraballo / git-branch-between-different-repositories.md
Created March 6, 2012 01:05
How to fork a github repository in bitbucket

#Create bitbucket branch

##Create local branch

$ git checkout -b sync
Switched to a new branch 'sync'
$ git branch
  master
* sync
@isaacs
isaacs / node-and-npm-in-30-seconds.sh
Last active March 8, 2024 02:11
Use one of these techniques to install node and npm without having to sudo. Discussed in more detail at http://joyeur.com/2010/12/10/installing-node-and-npm/ Note: npm >=0.3 is *safer* when using sudo.
echo 'export PATH=$HOME/local/bin:$PATH' >> ~/.bashrc
. ~/.bashrc
mkdir ~/local
mkdir ~/node-latest-install
cd ~/node-latest-install
curl http://nodejs.org/dist/node-latest.tar.gz | tar xz --strip-components=1
./configure --prefix=~/local
make install # ok, fine, this step probably takes more than 30 seconds...
curl https://www.npmjs.org/install.sh | sh