- 2.5 lb Ground Beef or Turkey, lean
- 1 Onions, chopped
- 1 Bell Peppers, red or yellow
- 1 Jalapeno Peppers, seeded and chopped
- 2 cloves Garlic, minced
- 2 Tbsp Chili Powder
- 1 Tbsp Cumin
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
let getCandidateByShortname = (candidates, shortName) => | |
candidates.find((candidate) => candidate.shortName === shortName); | |
let floatsToInts = (candidate) => ({ | |
...candidate, | |
lastTradePrice: round(candidate.lastTradePrice), | |
lastClosePrice: round(candidate.lastClosePrice), | |
}); | |
let round = (float) => Math.round(float * 100); |
I hereby claim:
- I am nickchristensen on github.
- I am nickchristensen (https://keybase.io/nickchristensen) on keybase.
- I have a public key ASAF9dJJdhhNFoP3EOOVPA_CUT1wxFLCQfOa8MfGItjf7wo
To claim this, I am signing this object:
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
export default Ember.Controller.extend({ | |
appName: 'Ember Twiddle', | |
value: 100, | |
actions: { | |
updateValue(val) { | |
this.set('value', val); | |
} | |
} | |
}); |
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
<html> | |
<head> | |
<script src="https://spiceworks.github.io/spiceworks-js-sdk/dist/spiceworks-sdk.js" type="text/javascript"></script> | |
<script src="https://code.jquery.com/jquery-2.1.3.min.js" type="text/javascript"></script> | |
</head> | |
<body> | |
Hello World | |
<script> | |
var card = new SW.Card(); | |
card.services('helpdesk').on('showTicket', function(ticketId){ |
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
~/C/W/c/server (style-guide-master *) node app.js | |
collection: activities | |
events.js:85 | |
throw er; // Unhandled 'error' event | |
^ | |
Error: listen EADDRINUSE | |
at exports._errnoException (util.js:746:11) | |
at Server._listen2 (net.js:1146:14) | |
at listen (net.js:1172:10) | |
at Server.listen (net.js:1257:5) |
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
window.fluid.dockBadge = ''; | |
setTimeout(updateDockBadge, 1000); | |
setTimeout(updateDockBadge, 3000); | |
setInterval(updateDockBadge, 5000); | |
function updateDockBadge() { | |
window.fluid.dockBadge = document.querySelector('[title^="Inbox"]').title.match(/\d+/); | |
} |
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
-----> Fetching custom git buildpack... done | |
-----> Multipack app detected | |
=====> Downloading Buildpack: https://github.com/cantino/heroku-selectable-procfile.git | |
=====> Detected Framework: Selectable Procfile | |
-----> Using deployment/heroku/Procfile.heroku as Procfile | |
=====> Downloading Buildpack: https://github.com/heroku/heroku-buildpack-ruby.git | |
=====> Detected Framework: Ruby | |
-----> Compiling Ruby/Rails | |
-----> Using Ruby version: ruby-2.0.0 | |
-----> Installing dependencies using 1.6.3 |
A few notes and links from the Lunch & Learn.
-
Two Sentences About Getting Older and Working on the Web - Frank Chimero
Github is confusing, Git is confusinger, pretty much everything in a modern web stack no longer makes sense to me