Skip to content

Commit 1ddeeb5

Browse files
committed
Merge pull request #31 from Ricecoder/journal-week-6
Journal week 6 into master
2 parents ae2f200 + 62560f3 commit 1ddeeb5

File tree

3 files changed

+20
-14
lines changed

3 files changed

+20
-14
lines changed

_posts/journal-week-6.md

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
##Week 6
22

3-
Things Learned this Week:
4-
* How to do tabs in css
5-
* _Lodash
6-
* Bower
7-
* Leveraging `package.json` and `bower.json`
8-
* Git Flow
9-
* Templating
3+
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.
4+
5+
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.
6+
7+
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.
8+
9+
10+
11+

_posts/resource-week-6.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1 @@
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
2-
learn different ways to create them so that you have more options the next time you need to add one to your project. Here
3-
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).
4-
This tutorial covers using SVG, Icon Fonts, Bootstrap, multiple CSS approaches, and even Keyboard methods.
1+
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.

_posts/tutorial-week-6.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
1-
##How to Install Things with Bower
1+
##How to [Install Things with Bower](http://bower.io/#install-bower)
22

3-
1) In terminal type `bower install --save <ITEM TO BE INSTALLED ex:jquery, lodash, etc...>
4-
2) Add link/script to your `index.html`
3+
1) In terminal type `bower install <ITEM TO BE INSTALLED ex:jquery, lodash, etc...> --save`
4+
5+
EX: `bower install jquery --save`
6+
7+
2) Add link/script to your `index.html` with the path to your new file.
8+
9+
EX: ` <script src="bower_components/jquery/dist/jquery.js"></script>`
10+
11+
DONE!

0 commit comments

Comments
 (0)