diff --git a/_posts/journal-week-6.md b/_posts/journal-week-6.md index ab6f6bb..b06b1ec 100644 --- a/_posts/journal-week-6.md +++ b/_posts/journal-week-6.md @@ -1,9 +1,11 @@ ##Week 6 -Things Learned this Week: -* How to do tabs in css -* _Lodash -* Bower -* Leveraging `package.json` and `bower.json` -* Git Flow -* Templating +This week we aquired several new tools to make our lives easier. First we started used [Lodash](https://lodash.com/) which is a JavaScript utility library. With this new tool we were able to use `.template` to make templates for the data we were collecting from the GitHub API. + +We also installed [Bower](http://bower.io/) this week. Bower is an awesome package manager for the web. Similar to NPM it allows you to install things on the command line like jQuery, however instead of downloading the whole jQuery library you get CDN links. + +My ability to leverage the package.json and bower.json files increased greatly this week. Being able to write scripts that you can call quickly on terminal is a blessing. Especially when working on multiple assignments in a short period of time. Not having to type out long commands for `node-sass` and `broswer-sync` speeds up the development process greatly. + + + + diff --git a/_posts/resource-week-6.md b/_posts/resource-week-6.md index 8293963..350e30b 100644 --- a/_posts/resource-week-6.md +++ b/_posts/resource-week-6.md @@ -1,4 +1 @@ -Like them or not the Hamburger menu is an often used navagation tool in today's mobil designs. It's a great idea to -learn different ways to create them so that you have more options the next time you need to add one to your project. Here -is a great tutorial on [_7 Non-raster Approaches for Making the "Hamburger" Menu Icon_](http://webdesign.tutsplus.com/tutorials/7-non-raster-approaches-for-making-the-hamburger-menu-icon--cms-21686). -This tutorial covers using SVG, Icon Fonts, Bootstrap, multiple CSS approaches, and even Keyboard methods. +The muched loved, and much hated, Hamburger menu is an often used navagation tool on today's web. Therefore it's a great idea to learn the multiple different ways of creating them so that you have more options the next time you need to add one to your project. Here is a great tutorial on [_7 Non-raster Approaches for Making the "Hamburger" Menu Icon_](http://webdesign.tutsplus.com/tutorials/7-non-raster-approaches-for-making-the-hamburger-menu-icon--cms-21686). This tutorial teaches how to create a hamburger menu using: SVG, Icon Fonts, Bootstrap, multiple CSS approaches, and even Keyboard methods. diff --git a/_posts/tutorial-week-6.md b/_posts/tutorial-week-6.md index 80aa90c..cd981a8 100644 --- a/_posts/tutorial-week-6.md +++ b/_posts/tutorial-week-6.md @@ -1,4 +1,11 @@ -##How to Install Things with Bower +##How to [Install Things with Bower](http://bower.io/#install-bower) -1) In terminal type `bower install --save -2) Add link/script to your `index.html` +1) In terminal type `bower install --save` + +EX: `bower install jquery --save` + +2) Add link/script to your `index.html` with the path to your new file. + +EX: ` ` + +DONE!