Tag Archives: download
Mathworks: Download MATLAB
Download Windows 7 ISO
Matlab: Download Earlier Release
- https://www.mathworks.com/downloads/web_downloads/select_release?mode=gwylf
- Earlier versions are in scroll box off to right.
Wget – Images
- http://stackoverflow.com/questions/4602153/how-do-i-use-wget-to-download-all-images-into-a-single-folder
- wget -nd -r -P /save/location -A jpg http://www.domain.com
Github on Ubuntu
Set up Github parameters
https://www.howtoforge.com/tutorial/install-git-and-github-on-ubuntu-14.04/
- ssh <username>@<server>
- git config –global user.name “user_name”
- git config –global user.email “email_id”
Download your Github Projects
http://stackoverflow.com/questions/6466945/fastest-way-to-download-a-github-project
- git clone git://github.com/<user_name>/<project>
Upload your projects to GitHub:
- git remote add origin https://github.com/user_name/Mytest.git
- git push origin master