- 5-8 beef bones
- 1 stewing chicken
- 1-2 teaspoon of salt (to taste)
- 1 oz of sugar rocks
| function encrypt(message,key) { | |
| if(!message) return "" | |
| var cipher = crypto.createCipher('aes-256-cbc',key); | |
| var result = cipher.update(message,'utf8','hex'); | |
| result += cipher.final('hex'); | |
| return result; | |
| } | |
| function decrypt(message,key) { | |
| if(!message) return "" |
This dish is something i made up after seeing a pack of asparagus/onion/mushrooms for sauteeing at trader joes and didn't want to spend that much on it.
Serves 6
##Ingredients
- 20 stalks of Asparagus
- 1 medium purple onion
- 1 package crimini mushrooms
| Set-ExecutionPolicy -Scope CurrentUser -ExecutionPolicy Unrestricted;$a=new-object net.webclient;$a.proxy.credentials=[system.net.credentialcache]::defaultnetworkcredentials |
| var mongoose = require('mongoose') | |
| , LocalStrategy = require('passport-local').Strategy | |
| , BearerStrategy = require('passport-http-bearer').Strategy | |
| , User = mongoose.model('User') | |
| , util = require('../util'); | |
| module.exports = function (passport, config, logger) { | |
| passport.serializeUser(function(user, done) { | |
| done(null, user.id); | |
| }); |
jon madison is a senior software engineer on the Mobile app team at Nordstrom. Prior to joining the mobile team, he spent three years as one of the first members of the Nordstrom Innovation Lab, creating many failed and a few successful experiments, learning about the importance of failure, learning how to pitch to success, measuring and iterating product/market fit using tools such as business model canvas, design thinking and UX tools, and taking several improv workshops.
jon enjoys writing code for hours on end (iOS and server-side JavaScript -- node.js when he's lucky), helping others find the joy of creating via text, and rambling about technical and philosophical topics for hours on end.
| // | |
| // ViewController.m | |
| // SketchToFramer | |
| // | |
| // Created by Madison, Jon on 10/9/17. | |
| // Copyright © 2017 Madison, Jon. All rights reserved. | |
| // | |
| #import "ViewController.h" |
This smoothie is cool in that, if you don't add the water/ice, you can use this as a base for a breakfast bowl ("acaí-style" breakfast bowl). Just top with fruits/nuts/cocoanut/chia/gowild. Otherwise, you can drink it!
(organic preferred for all)
- 1 Banana (the older the sweeter, and overall smoother texture)
- 1 roundish Tbsp Justin's Honey Peanut Butter
- 0.5 cup Almond Milk (unflavored or vanilla)
- 1 cup Trader Joe's Organic Berry Blend https://www.traderjoes.com/fearless-flyer/article/533
- 1 tbsp chia seeds


