Pinned Repositories
angular-practice
A quick practice app to solidify my understanding of directives, controllers, views, routes, modules, services, and animation. All about AngularJS, which rocks btw.
dietlist
Simple AngularJS example that uses ng-class, ng-repeat, & ng-model
emails
This is a simple example to show how AngularJS can be used to collect form information and populate a web page with that information immediately as well as delete that informaion. Also, this example demonstrates the use of ng-show, ng-repeat, ng-model, and ng-click.
flychoice
Sabre Dev Studio RESTful API Showcase App
frontend-nanodegree-resume
getgit
This allows a person to enter in a Git username. And, if the name is connected to a github user, all of the person's git repositories are delineated. This AngularJS app dives into services, routes, and directives.
healthygroceries
A grocery list with some CSS to make it visually interesting,
mercury
TCU Project Mercury
numberGame
Guess the Number!
onlineboxstore
Great little app that displays boxes for sale. AngularJS is used to render the box images, populate a shopping cart, and update costs.
stevesedowski's Repositories
stevesedowski/getgit
This allows a person to enter in a Git username. And, if the name is connected to a github user, all of the person's git repositories are delineated. This AngularJS app dives into services, routes, and directives.
stevesedowski/angular-practice
A quick practice app to solidify my understanding of directives, controllers, views, routes, modules, services, and animation. All about AngularJS, which rocks btw.
stevesedowski/dietlist
Simple AngularJS example that uses ng-class, ng-repeat, & ng-model
stevesedowski/emails
This is a simple example to show how AngularJS can be used to collect form information and populate a web page with that information immediately as well as delete that informaion. Also, this example demonstrates the use of ng-show, ng-repeat, ng-model, and ng-click.
stevesedowski/flychoice
Sabre Dev Studio RESTful API Showcase App
stevesedowski/frontend-nanodegree-resume
stevesedowski/healthygroceries
A grocery list with some CSS to make it visually interesting,
stevesedowski/mercury
TCU Project Mercury
stevesedowski/numberGame
Guess the Number!
stevesedowski/onlineboxstore
Great little app that displays boxes for sale. AngularJS is used to render the box images, populate a shopping cart, and update costs.
stevesedowski/panopta
Angular Project working with AngularJS
stevesedowski/rails-to-do-list
This is a simple to-do list that you can add to-do items, check them off as you complete them, and then delete them - all the while updating a JSON file on a server without the client side blinking. Well, it might blick once or twice but page reloading just doesn't happen. THIS IS AWESOME!! How does it work? Great question! By creating a facory to access data, an object is created (in this example its "Todo") and this object is theorectically connected to the database, or in this case, a JSON file. Any changes that are made to the to-do list are automatically updated in the JSON file, which is on a server. Very Cool. There were several sticking points that I had to unglue. First, when using the 'ng-repeat' directive, I wanted to pass along the current index value via $index. You HAVE to pass this along as the FIRST parameter in order for it to work. Not sure why, but this is what I encountered. Second, to delete an item from the JSON file you have to use the following statement: Todo.delete({ id: todo.id}); What's really cool with the ng-rpeat directive is it can be used with div tags and anything (or I think anything) that is placed inside these div tags will repeat.
stevesedowski/starter-league-spring-2014
JavaScript for Programmers
stevesedowski/Test-Git-App
stevesedowski/todo-list
A simple to-do list to highlight Angular's ng-class, ng-submit, ng-repeat, and ng-show directives.
stevesedowski/ToolchainPracticeDevOps
Created for toolchain: https://console.bluemix.net/devops/toolchains/9db7c80b-4026-48d8-bd81-cf8cd0cb0e2f?env_id=ibm%3Ayp%3Aus-south
stevesedowski/travel-website
stevesedowski/watch-length
This is a simple demonstration to showcase Angular's $watch event listener.
stevesedowski/weather
This is a succinct weather app utilizing AngularJS and the following directives: ng-src, ng-bind-html, ng-repeat, ng-submit, ng-model, along with a filter.
stevesedowski/word-clock
A lovely word clock utilizing Javascript, HTML, CSS, and JQuery.