Skip to content

Latest commit

 

History

History
43 lines (35 loc) · 1.23 KB

README.md

File metadata and controls

43 lines (35 loc) · 1.23 KB

#LearningNotes Notes about any that I learned and Interesting things that I think is useful

##Useful Material:

  • iOS Learning Material
  • what-happens-when
  • Slate: Slate helps you create beautiful API documentation. Think of it as an intelligent, responsive documentation template for your API.
  • Latent SVM: an OpenCV implementation of Discriminatively Trained Part Based Models for Object Detection
  • doppia
  • MLPNeuralNet: Fast multilayer perceptron neural network library for iOS and Mac OS X
  • other

##Simple Notes:

##Simple Codes: ####git

git pull
git add -A
git commit -m "comments"
git push
touch README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin https://github.com/freesouls/blog.git
git push -u origin master
…or push an existing repository from the command line


git remote add origin https://github.com/freesouls/blog.git
git push -u origin master
…or import code from another repository

####Other