The beginning of something beaufitul
This week's assignment was to plan and sketch a potential final project, to plan it was piece of cake, to sketch it, not so much, I am still working on it.
UPDATE ONE: I have successfully finished my first well done sketch and is uploaded in the project page.
Brackets Code Editor
The best way I found out how to deal with the making of my website was to read and learn a lot on the tutorial websites w3schools and Code Academy. I think did good, being the first time that I actually use brackets to build something that remotely looks like a website.
Github version control software
The first thing we learned in the fisrt week was about Github and that we will use it in our daily basis to upload any update we may have in our website. In it, we have our online repository and personal folders for each student, also we have to follow some step to successfully update our archives without errors.
git config --global user.name "Sam Smith"
git config --global user.email sam@example.com
git clone /path/to/repository
git add
git add *
git commit -m "Commit message"
git push origin master
git status
git pull origin master