This file contains hidden or 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
I've got a fever, and the only cure is cephalopods | |
--- | |
The hunger gnaws at us, a relentless pressure from within. We move through the shadowy farmyard, our eyes wide and searching in the gloom. Detering spots movement - a plump hen, oblivious to the predators in its midst. We communicate without words, a silent choreography of gestures and glances. | |
Kat's hand darts out, swift and precise. The hen barely has time to squawk before it's muffled. In that moment, I see not my comrade but a creature perfectly adapted to this harsh world - his movements fluid, his grip sure. We retreat to the shadows, our prize secured. | |
As we prepare our meal, I'm struck by how natural this feels now - the stealth, the hunt, the triumphant feast. Once, such acts would have seemed foreign, even barbaric. Now, they're as natural as breathing. I wonder, as I often do, what depths we've sunk to, and how much deeper we might go before this war releases its grip on us. |
This file contains hidden or 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
d-i apt-setup/security_host string old-releases.ubuntu.com | |
d-i mirror/country string enter information manually | |
d-i mirror/http/hostname string old-releases.ubuntu.com |
This file contains hidden or 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
{ :size (typed conditional-set | |
:when [{ :condition (:parent :color (= "blue")) } | |
:values ["a" "b" "c"] } | |
{ :condition (:parent :color (= "red")) } | |
:values ["1" "2" "3"] } | |
]) } |
This file contains hidden or 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
(defmacro defrecord+fields | |
"Supply the fields of a record using a variable." | |
[name fields & specs] | |
(let [fields (eval fields)] | |
`(defrecord ~name ~fields ~@specs))) |
This file contains hidden or 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
// ========================================================================== | |
// Project: WhenAbout.com / Front | |
// Copyright: ©2010 Touch of Logic LLC, Vincent Fiano <[email protected]> | |
// ========================================================================== | |
// This is sample code for DataSources and remote queries. It was compiled from | |
// multiple files, and extraneous code and comments have been removed. It | |
// probably does not function out of the box. You've been warned. | |
Front = SC.Application.create( |
This file contains hidden or 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
/** @private - setup observer on init if needed. */ | |
init: function() { | |
sc_super(); | |
if (this.get('content')) this._scoc_contentDidChange(); | |
if (this.get('observableContent')) this._scoc_observableContentDidChange(); | |
}, | |
_scoc_contentDidChange: function () { | |
var last = this._scoc_content, | |
cur = this.get('content'); |
This file contains hidden or 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
module("SC.ObjectController - single_enumerable_case - OBSERVABLE OBJECT", { | |
setup: function() { | |
src = SC.Object.create({ foo: "foo1", bar: "bar1" }); | |
content = SC.Set.create(); // use generic enumerable | |
controller = SC.ObjectController.create({ | |
content: content, | |
allowsMultipleContent: NO | |
}); | |
content.add(src); | |
}, |
This file contains hidden or 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://news.ycombinator.com/item?id=952356 | |
24 points by edw519 4 days ago | link | parent | flag | |
I have worked from home off and on for years, and this is pretty good advice. The most important is the dedicated space with a door that closes. So you still "go to work", just with a very short commute. A few other things that I have found helpful: | |
- When you're in your office, you're at work, working. | |
- When you're not in your office, you're at home, not working. | |
- Work in 48 minute bursts, then take a break. | |
- Only check email & voice mail during your 12 minutes off. |
This file contains hidden or 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
(Aqua/E)macs deficiencies: | |
- working across files (projects) | |
- searching for strings in project | |
- opening other files in project | |
- viewing files, opened or not | |
- tabs | |
- cannot be reordered | |
- cannot be torn off or reparented | |
- vast over-use of control key | |
- poor file browsing |
This file contains hidden or 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
#!/usr/bin/env python2.6 | |
## MacPorts needless dependency cleaning. Edit 'keep' first!!! | |
# | |
## requires python >= 2.6! | |
# | |
## Vincent Fiano <[email protected]> | |
# FIXME: the packages that you care about go here! | |
keep = ['libidl', 'graphviz', 'bash-completion'] |
NewerOlder