This is a quick simple guide to getting jSpin setup for Mac and Linux.
You will need:
- Java (1.5 +)
| If you want to clone an svn repository with git-svn but don't want it to push all the existing branches, here's what you should do. | |
| * Clone with git-svn using the -T parameter to define your trunk path inside the svnrepo, at the same time instructing it to clone only the trunk: | |
| git svn clone -T trunk http://example.com/PROJECT | |
| * If instead of cloning trunk you just want to clone a certain branch, do the same thing but change the path given to -T: | |
| git svn clone -T branches/somefeature http://example.com/PROJECT |
This is a quick simple guide to getting jSpin setup for Mac and Linux.
You will need:
It was surprisingly hard to find a simple straight forward stock API; this community built API hosted by Yahoo does the job.
Let's get to it.
Below is a complete URL example if you want to play on your own and figure it out.
http://query.yahooapis.com/v1/public/yql?q=select%20*%20from%20yahoo.finance.quotes%20where%20symbol%20in%20(%22AAPL%22)&env=store://datatables.org/alltableswithkeys
| #!/usr/bin/env python3 | |
| """ | |
| Author: Craig Cabrey | |
| """ | |
| identity = [[1, 1], [1, 0]] | |
| def multiply(first, second): | |
| """ |