One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| 1) Create a branch with the tag | |
| git branch {tagname}-branch {tagname} | |
| git checkout {tagname}-branch | |
| 2) Include the fix manually if it's just a change .... | |
| git add . | |
| git ci -m "Fix included" | |
| or cherry-pick the commit, whatever is easier | |
| git cherry-pick {num_commit} | |
| # In a terminal... make sure I get the master branch | |
| git clone -b master git://github.com/JuliaLang/julia.git | |
| # needed these on EC2 | |
| sudo apt-get update | |
| sudo apt-get install gcc | |
| sudo apt-get install g++ | |
| sudo apt-get install gfortran | |
| sudo apt-get install make |
| __author__ = 'Amal G Jose' | |
| from datetime import datetime | |
| from dateutil import relativedelta | |
| ##Aug 7 1989 8:10 pm | |
| date_1 = datetime(1989, 8, 7, 20, 10) | |
| ##Dec 5 1990 5:20 am | |
| date_2 = datetime(1990, 12, 5, 5, 20) |
| // Reference: http://www.blackdogfoundry.com/blog/moving-repository-from-bitbucket-to-github/ | |
| // See also: http://www.paulund.co.uk/change-url-of-git-repository | |
| $ cd $HOME/Code/repo-directory | |
| $ git remote rename origin bitbucket | |
| $ git remote add origin https://github.com/mandiwise/awesome-new-repo.git | |
| $ git push origin master | |
| $ git remote rm bitbucket |
A little info about your project and/ or overview that explains what the project is about.
A short description of the motivation behind the creation and maintenance of the project. This should explain why the project exists.
Build status of continus integration i.e. travis, appveyor etc. Ex. -
1.) Download a Nerd Font
2.) Unzip and copy to ~/.fonts
3.) Run the command fc-cache -fv to manually rebuild the font cache
| import requests | |
| import json | |
| while True: | |
| # base URLs | |
| globalURL = "https://api.coinmarketcap.com/v1/global/" | |
| tickerURL = "https://api.coinmarketcap.com/v1/ticker/" | |
| # get data from globalURL | |
| request = requests.get(globalURL) |
| # Install R | |
| sudo apt update | |
| sudo apt install gdebi libxml2-dev libssl-dev libcurl4-openssl-dev libopenblas-dev r-base r-base-dev | |
| # Install RStudio | |
| cd ~/Downloads | |
| wget https://download1.rstudio.org/desktop/bionic/amd64/rstudio-1.2.5001-amd64.deb | |
| sudo gdebi rstudio-1.2.5001-amd64.deb | |
| printf '\nexport QT_STYLE_OVERRIDE=gtk\n' | sudo tee -a ~/.profile |