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
var content = Em.Object.create({ | |
x: 1, | |
y: 2, | |
z: 0 | |
}); | |
var op = Em.ObjectProxy.createWithMixins({ | |
content: content, | |
yBinding: 'x', |
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
set pathToApp to (POSIX path of (path to me)) | |
do shell script "echo " & pathToApp |
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
#/usr/bin/env bash | |
git log --reverse --merges $1.. | head |
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
https://gist.github.com/1559168 | |
Reproduction stuff for POST resulting in 204 'No Content' on the server returns XMLHttpRequest result == 0. | |
The example uses YUI3, but it was verified that the result status of 0 comes from the XMLHttpRequest object status field. | |
* install nodejs | |
Download and install the appropriate package from nodejs.org | |
* install express (nodejs web stack) |
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
I am not the author of the tickets, but needed to work around these: | |
Widget destructor double node removal (got a patch from Satyen to mitigate) | |
http://yuilibrary.com/projects/yui3/ticket/2529860 | |
UI_EVENTS - was IMO broken in earlier releases as well | |
http://yuilibrary.com/projects/yui3/ticket/2529723 | |
HistoryHash in IE7 fix: | |
http://yuilibrary.com/projects/yui3/ticket/2529990 |
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
spark2 -v -n 1 --port 3000 2>&1 |
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
#!/usr/bin/env node | |
require('util').debug('A'); |
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
From 6ace654dac086185c8158e341887dd929c7c234a Mon Sep 17 00:00:00 2001 | |
From: Standa Opichal <[email protected]> | |
Date: Fri, 6 Aug 2010 15:29:44 +0200 | |
Subject: [PATCH 3/3] Avoid touching the s.rawNode internals in destroy() and rather keep the _nodeName in the dojox.gfx.Surface instance to remove the surfaces[] entry. | |
This avoid SL crashing in case the holding DOM node is not in the document or is hidden at the time in which case it would report invalidObject error. | |
--- | |
gfx/silverlight.js | 11 ++++++----- | |
1 files changed, 6 insertions(+), 5 deletions(-) |
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
From a1a4f31f23c7c777c160a4631e4df777eaef2f79 Mon Sep 17 00:00:00 2001 | |
From: Standa Opichal <[email protected]> | |
Date: Fri, 6 Aug 2010 14:22:39 +0200 | |
Subject: [PATCH 2/2] Removing the 'cannot parse d=""' errors reported by browsers. | |
--- | |
gfx/svg.js | 2 +- | |
1 files changed, 1 insertions(+), 1 deletions(-) | |
diff --git a/gfx/svg.js b/gfx/svg.js |
NewerOlder