First Post
Construction Journal
Foreword
Publishing with RStudio, blogdown, Hugo, Github, Netlify is like swimming in a open ocean: new version appears, post and tutos are getting out-dated and/or up-dated \(\rightarrow\) you have to adapt your code writing, reasonning
adaptability is the key
In this ocean some points are my lighthouses:
Sources, references and inspiration
I have been using many sources of inspiration. Here are those that I visit again frequently:
- the blogdown blog:
- Great blog of Leonardo Collado-Torres: an example of pretty blog and a collection of usefull posts: http://lcolladotor.github.io/
- The blog where I start: Peter Baumgartner is a teacher, the posts are written as lessons which make them useful for the apprentice on blogdown, Github, Netlify: (https://notes.peter-baumgartner.net/)[https://notes.peter-baumgartner.net/]
Famous blog from Rstudio insider, Alisson Hill: (https://alison.rbind.io/post/2017-06-12-up-and-running-with-blogdown/ )[https://alison.rbind.io/post/2017-06-12-up-and-running-with-blogdown/]
- https://www.dsquintana.blog/free-website-in-r-easy/
- https://stateofther.github.io/finistR2017/blogdown.html
- https://rubenfcasal.github.io/post/getting-started/
(http://www.pik-potsdam.de/~pichler/blog/post/set-this-up/setting-up-this-site/ )[http://www.pik-potsdam.de/~pichler/blog/post/set-this-up/setting-up-this-site/]
First step Synchronising with GitHub
R packages Git and GitHub:
Some new sources to explore
Some Git instructions
Synchronise a local folder with a repo - WITHOUT R
- Locate the local folder to be sync.
cd C:/Users/ijoly.INRA/Desktop/Dir_GI/Institut_IA/ChaireIA_Indus40/MIAI_lemaire/Metropolis
- Initiate the git-folder
git init
git remote add origin https://github.com/Iragael38/IA_presentation_PL_IJ.git
- Check the repo
git remote -v
- First commit
git commit -m "Initial commit"
- Push
git push -u origin master
- Pull
git pull origin master