- Shot glasses
- Pint glasses
- Low ball/whiskey glasses
- Large salad bowls
- Trigger point quad roller
- Trigger point foam roller (26")
- Pair of cork yoga blocks
- Dark orange/reddish night light for bathroom
- Clothing/gift cards (gap, express, banana republic)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http = require 'http' | |
url = require 'url' | |
entry_url = 'http://letsrevolutionizetesting.com/challenge.json' | |
recurse = (url_string) -> | |
console.log '\nfollowing...', url_string | |
url_obj = url.parse url_string |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# To run tests: | |
# npm install -g jasmine-node | |
# jasmine-node --color --coffee --matchall --autotest rot13.coffee | |
### | |
@name translateChar | |
@description | |
Encodes or decodes a single character either to or from rot13 | |
@param char {String} - Must be exactly 1 character |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
animals = [ | |
name: 'Labrador' | |
path: ['Animals', 'Dogs', 'Labrador'] | |
, | |
name: 'Poodle' | |
path: ['Animals', 'Dogs', 'Poodle'] | |
, | |
name: 'Cheetah' | |
path: ['Animals', 'Cats', 'Cheetah'] | |
, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="/assets/img/favicon/apple-touch-icon-152x152-precomposed.png"> | |
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="/assets/img/favicon/apple-touch-icon-144x144-precomposed.png"> | |
<link rel="apple-touch-icon-precomposed" sizes="120x120" href="/assets/img/favicon/apple-touch-icon-120x120-precomposed.png"> | |
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="/assets/img/favicon/apple-touch-icon-114x114-precomposed.png"> | |
<link rel="apple-touch-icon-precomposed" sizes="76x76" href="/assets/img/favicon/apple-touch-icon-76x76-precomposed.png"> | |
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="/assets/img/favicon/apple-touch-icon-72x72-precomposed.png"> | |
<link rel="apple-touch-icon-precomposed" href="/assets/img/favicon/apple-touch-icon-precomposed.png"> | |
<link rel="icon" href="/assets/img/favicon/favicon-16x16.png" sizes="16x16"> | |
<link rel="icon" href="/assets/img/favicon/favicon-32x32.png" sizes="32x32"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Assuming that you have your Ruby environment configured | |
git clone -b source [email protected]:username/username.github.io.git username.github.io | |
git clone -b master [email protected]:username/username.github.io.git username.github.io/_deploy | |
cd username.github.io | |
bundle install |
Angular is a thick client, served by Node.js, primarily interfacing with a separate RESTful web service.
Node.js comes in for user authentication, communicating with an oAuth provider, getting the returned data, and looking up or creating the user on the web service. It then stores that user data as a session in Mongo. The user data is then made available to angular as JSON from Node.js.
Once authenticated, the Angular app should communicate directly with the RESTful web service.
Proposed improvement to user authentication for the MEAN boilerplate. See linnovate/mean#121
- An express route for
/auth/<service_provider>
uses passport to redirect to the oauth service provider - The OAuth provider redirects back to
/auth/<service_provider>/callback
- Finally, Express redirects to
/
. Once authenticated, user data is available as JSON from/users/me
.
- There is a main controller set on the body element,
MainCtrl
. - It calls the
login
method on a service,AuthService
.AuthService.login()
attempts to make an Angular$http
request to/users/me
.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Custom bash prompt | |
export PS1="\u@\h:\w$ " | |
# Add /usr/local/bin to path for Homebrew | |
export PATH="/usr/local/bin:/usr/local/share/npm/bin:/usr/local/sbin:~/bin:$PATH" | |
# Enable shims and auto-complete for rbenv | |
eval "$(rbenv init -)" | |
# Postgres |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Search: | |
(-?[0-9.]+)rem | |
Replace: | |
rem($1) | |
Example: | |
2rem -> rem(2) | |
-2rem -> rem(-2) | |
1.5rem -> rem(1.5) |
NewerOlder