Archivist: “This is not an interrogation or a trial. Your version of the truth is all that matters.”
Sonmi-451: “Truth is singular. Its versions are mistruths.”
<アンダブロッブ />
Archivist: “This is not an interrogation or a trial. Your version of the truth is all that matters.”
Sonmi-451: “Truth is singular. Its versions are mistruths.”
When handling a click event, how do you tell if it’s from keyboard enter key or mouse click? Use a keydown event to set up detection before the click event is called:
var ENTER_KEY = 13;
var isKeyEvent = false;
$('.my-elem')
.on('keydown', myElem_Key)
.on('click', myElem_Click)
;
var myElem_Key = function(e) {
var key = e.keyCode || e.which;
if (key == ENTER_KEY) {
isKeyEvent = true;
}
}
var myElem_Click = function(e) {
if (isKeyEvent) {
// Handle key event click.
isKeyEvent = false;
}
}
The key event can be tied to multiple elements and the callback used as a pass-through for detection.
It is the nature of repression to be invisible. Something that is repressed can’t reveal itself to us, can’t appear as a break in our awareness — then we would see its workings, and the repression would be dispelled.
—Breaking Open The Head, Daniel Pinchbeck
All of my reprise and expectation
Tangled in my lies of omission
Brandished in my curt confession
Sounding broken chords to hear
Your requite
Your reciprocation.
Hoping
Your face
Your voice
Your elegance
This persistence.
Punish me with the cruelest summer.
Terrify me with silence.
Make me desperate.
Let me wake alone, make me cry rivers.
You can rest your head at night
Knowing I deserved this.Like flies in a jar,
I am mostly harmless.
Except for this vanishing hour of darkness.
Fingers long and thin.
Eyes as black as innocence.
The state or quality of an item that stands out relative to neighboring items.
Even when we think about the future, we don’t think of our future normally as experiences. We think of our future as anticipated memories.
—Daniel Kahneman, economic psychologist, Nobel laureate
My real guru to teach me the value of compassion is my mother.
—Tenzin Gyatso, 14th Dalai Lama
Looking for graphic tee with a skunk on it, I didn’t find anything I liked except this image that turned up in a search. It was too small for printing so I outlined a vector version and had a tee printed.
Vector file: skunk-hug.ai.zip
Make your own tees!: Custom Ink