(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
import code; code.interact(local=dict(globals(), **locals())) |
[ | |
{ | |
"timestamp": 0, | |
"input": "W", | |
"type": "search_local", | |
"latency": 0 | |
}, | |
{ | |
"local_results": [ | |
"ddg_search", |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
Tired of waiting for emacs to start on OS X? This step by step guide will
teach you how to install the latest version of emacs and configure it to start
in the background (daemon mode) and use emacsclient
as your main editor.
First you'll need to install the [Homebrew package manager][brew] if yo haven't already. It is amazing.
;; File: init.el | |
;; Author: A.J. | |
;; PeepOpen and Textmate configuration for fuzzy-file-finding | |
;; Emacs-starter-kit by technomancy | |
(require 'package) | |
(add-to-list 'package-archives | |
'("marmalade" . "http://marmalade-repo.org/packages/") t) | |
(add-to-list 'package-archives | |
'("melpa" . "http://melpa.milkbox.net/packages/") t) |
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
(defn yummly-api [auth] | |
{:endpoint "http://api.yummly.com/v1" | |
:resources {:recipe-search "/api/recipes"} | |
:params ["q", "requirePictures", "allowedIngredient[]", "excludedIngredient[]", | |
"allowedDiet[]", "allowedAllergy[]", "allowedCuisine[]", | |
"allowedCourse[]", "allowedHoliday[]", "excludedCuisine[]", | |
"excludedCourse[]", "excludedHoliday[]", "maxTotalTimeInSeconds", | |
"nutrition.ATTR.{min|max}", "maxResult", "start", | |
"flavor.ATTR.{min|max}", "facetField[]"] | |
:auth {"_app_id" (:app-id auth), |
data:text/html, <style type="text/css">#e{position:absolute;top:0;right:0;bottom:0;left:0;}</style><div id="e"></div><script src="http://d1n0x3qji82z53.cloudfront.net/src-min-noconflict/ace.js" type="text/javascript" charset="utf-8"></script><script>var e=ace.edit("e");e.setTheme("ace/theme/monokai");e.getSession().setMode("ace/mode/ruby");</script> |
1.upto(Resque::Failure.count) do |i| | |
job = Resque::Failure.all(i) | |
# inspect failed job | |
args = job['payload']['args'] | |
klass = job['payload']['class'] | |
end |