git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
Related to issue for building the Neo4j Koans jimwebber/neo4j-tutorial#33 Unable to downlaod Neo4j due to a bug with the Compress lib in Ant 1.9.4. https://issues.apache.org/bugzilla/show_bug.cgi?id=56641
brew unlink ant
How to install Ubuntu 14.04.1 LTS 64-bit on a MacBook Pro Retina 15" Mid 2014 (11,3)
Press minus + shift + s
and return
to chop/fold long lines!
–ctrl a c -> create new window | |
–ctrl a A -> set window name | |
–ctrl a w -> show all window | |
–ctrl a 1|2|3|… -> switch to window n | |
–ctrl a ” -> choose window | |
–ctrl a ctrl a -> switch between window | |
–ctrl a d -> detach window | |
–ctrl a ? -> help | |
–ctrl a [ -> start copy, move cursor to the copy location, press ENTER, select the chars, press ENTER to copy the selected characters to the buffer | |
–ctrl a ] -> paste from buffer |
git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
/*Filename: pascal.c | |
Blog: http://jithusunnyk.blogspot.com/ | |
Date: 24-09-11 | |
Description: Finds out the number at any given location(row, position) of Pascal's triangle. | |
Row-one is conventionally enumerated as 0 & position-one as 0, position-two as 1, etc*/ | |
#include <stdio.h> | |
int element_at(int row,int pos) { | |
if (pos == 0 || pos == row) |