git (private server)
Alternative: github
Cashboard
var array1 = [0,8,1,0,0,0,8,6,7,8,9,5,2,6,3,0,7,4,1,1,0,0,7,0,0,8,6,7,8,9,5,9,1,1,3,0]; | |
var array2 = [1,0,0,0,8,6,7,8,9,1,3,0,0,8,5,2,6,3,0,7,4,1,1,0,0,7,0,0,8,6,7,8,9,5,9,1]; | |
var array3 = [1,0,5,2,6,3,0,7,4,1,1,0,0,7,0,0,8,6,7,8,9,5,0,0,8,6,7,8,9,1,3,0,0,8,9,1]; | |
function findPattern(array, array1, array2){ | |
var result=0; | |
for(i=0; i<array.length; i++){ | |
if( array[i] == 1 && | |
array[i+1] == 3 && |
Here is a case that might surprise you: | |
var variable = "top-level"; | |
function parentFunction() { | |
var variable = "local"; | |
function childFunction() { | |
print(variable); | |
} | |
return childFunction; | |
} |
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) | |
/* | |
* 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 ========================================================== |
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 | |