Skip to content

Instantly share code, notes, and snippets.

View mcgrue's full-sized avatar
🏠
Working from home - forever?

Grue mcgrue

🏠
Working from home - forever?
View GitHub Profile
@mcgrue
mcgrue / lentil_chili.md
Last active April 25, 2024 19:10 — forked from drvink/lentil_chili.md
best lentil chili recipe

Lentil Chile with Condiments

(About 6 servings)

Make this lentil chile with or without meat; it’s substantial either way.

Ingredients

  • 2 ½ cups (1 lb.) lentils
  • About 1 ½ quarts (6 cups), boiling, salted water
<room width="7" height="7" name="Gruem">
<row text="#D#####" />
<row text="d.....d" />
<row text="#.L...#" />
<row text="#.....#" />
<row text="#.....#" />
<row text="#.....#" />
<row text="#D#####" />
<flags minLevel="1" maxLevel="1" nomonsters="1" noblockers="1" special="1" notraps="1" notreasure="1" />
</room>
/* Primary, Tans */
#b69679 /* medium tan */
#7d5945 /* dark tan, "dark bezel"; Also used for 'inactive' text */
#ebebcb /* light tan, "light bezel"; Also used for highlight text */
/* Black */
#000000 /* Black. It's Black! (Form fields) */
/* Green */
#459a49 /* Medium Green, for text */
mcgrue: I just like showing off my inane trivia. Bookkeeper is the only english word, IIRC, with triple double letters.
Zaratustra: What about subbookkeeper
mcgrue: The apprentice bookkeeper? :D
Zaratustra: Or if someone keeps raccoon's nooks, they could be raccoonnookkeepers.
mcgrue: zomg I've created a monster! :D
Zaratustra: At a dam, there is a flooddoor. The controls for the flooddoor are in the flooddoorroom. Let's say the the boss at the dam calls a meeting in the flooddoorroom. The people who go to this meeting are FLOODDOORROOMMEETINGGOERS.
2009-03-11 Who is this "Jake" and why has he come to our land of wonder?
2009-04-13 and why has he come to our land of wonder?
2009-11-24 Who are you, and why have you come to this land of wonder?
2011-01-02 Who are you, and why have you come to this land of wonder?
2011-05-04 What brings you to this land of wonder?
2011-12-19 Welcome to #sancho, land of wonder.
2012-03-30 I should make sexymans say "who are you and why have you come to this land of wonder" when it sees a new nick.
2012-04-11 Why do I still say "Who are you and why have you come to this land of wonder?"
2012-08-26 Also: who are you and why have you come to this land of wonder? <3
2012-11-17 who are you, cpbills, and why have you come to this land of wonder? :D
fbot.go:12:2: cannot find package "github.com/gorilla/websocket" in any of:
/usr/local/go/src/github.com/gorilla/websocket (from $GOROOT)
/Users/grue/go_work/src/github.com/gorilla/websocket (from $GOPATH)
fbot.go:13:2: cannot find package "github.com/progrium/duplex/golang" in any of:
/usr/local/go/src/github.com/progrium/duplex/golang (from $GOROOT)
/Users/grue/go_work/src/github.com/progrium/duplex/golang (from $GOPATH)
fbot.go:14:2: cannot find package "github.com/spf13/cobra" in any of:
/usr/local/go/src/github.com/spf13/cobra (from $GOROOT)
/Users/grue/go_work/src/github.com/spf13/cobra (from $GOPATH)
make: *** [build] Error 1
∵ make
go build
fbot.go:12:2: cannot find package "github.com/gorilla/websocket" in any of:
/usr/local/go/src/github.com/gorilla/websocket (from $GOROOT)
($GOPATH not set)
fbot.go:13:2: cannot find package "github.com/progrium/duplex/golang" in any of:
/usr/local/go/src/github.com/progrium/duplex/golang (from $GOROOT)
($GOPATH not set)
fbot.go:14:2: cannot find package "github.com/spf13/cobra" in any of:
/usr/local/go/src/github.com/spf13/cobra (from $GOROOT)
- Each layer needs a uid 'name'. layers[0].name
- Instances of entities should have a location.layer, which references said uid, and exists within the entity instance's location object.
{
"name": "tree",
"filename": "chrs_json/object_tree2.json",
"location": {
"tx": 120,
"ty": 75
"layer" : "layer_3" //// I DONT EXIST YET
/// not public, but I want to test it.
export function fetchPosts(subreddit) {
return (dispatch) => {
dispatch(requestPosts(subreddit));
const url = `http://www.reddit.com/r/${subreddit}.json`;
return fetch(url)
.then((req) => { return req.json(); })
.then((json) => { dispatch(receivePosts(subreddit, json)); });
};
it.only('works', function (){
const resultFn = fetchPosts( 'hot-tacos' );
expect(typeof resultFn).toEqual('function');
const dispatchStack = [];
const fakeDispatchFn = (dispatched) => {
dispatchStack.push(dispatched);
};