- abe
- bonefide
- straight
sense- forthright
franktaken- forthright
- candid
- Candide
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 django.conf.urls.defaults import * | |
from django.views.generic.simple import direct_to_template | |
urlpatterns = patterns('', | |
('^about/$', direct_to_template, { | |
'template': 'about.html' | |
}) | |
) |
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
// bookmarklet to reverse order of log entries in logentries: | |
javascript:((function(){$('.events-panel .logentry').each(function(i, e) {$('.events-panel > div').prepend(e);})})()) |
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
javascript: | |
(function () { | |
var e = function (t, n, r, i, s) { | |
var o = [5601128, 5716643, 4915514, 5241231, 5600528, 1161535, 2895256, 1957175, 3189038, 3824147]; | |
var i = i || 0, | |
u = 0, | |
n = n || [], | |
r = r || 0, | |
s = s || 0; | |
if (!s || s == 0) { |
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
sudo setcap 'cap_net_bind_service=+ep' `which nodejs` |
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
/**package | |
{ | |
"name": "nodestrum", | |
"description": "Some cross cutting utils", | |
"version": "0.10.1", | |
"author": "Refael Ackermann<[email protected]>(http://node.org.il)", | |
"homepage": "https://gist.github.com/refack/6256990/", | |
"repository": "https://gist.githubusercontent.com/refack/6256990/raw/nodestrum.js", | |
"license": "MIT", | |
"readme": "Some crosscutting node.js utils" |
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 dummyObject = {}; | |
Error.captureStackTrace(dummyObject, module.exports); | |
dummyObject.old_prepareStackTrace = Error.prepareStackTrace; | |
Error.prepareStackTrace = function (dummyObject, v8StackTrace) { return v8StackTrace;}; | |
dummyObject.v8StackTrace = dummyObject.stack; | |
Error.prepareStackTrace = dummyObject.old_prepareStackTrace; | |
var caller_filename = dummyObject.v8StackTrace[0].getFileName().split(/\\/\/g).pop(); | |
This file has been truncated, but you can view the full file.
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
{ | |
"_id" : ObjectId("533a91e3eff97524e41ff8b2"), | |
"ID" : 202, | |
"post_author" : 17, | |
"post_date" : new Date("30/3/2012 19:07:28"), | |
"post_date_gmt" : new Date("30/3/2012 16:07:28"), | |
"post_content" : "", | |
"post_title" : "לאון פלדמן", | |
"post_excerpt" : "", | |
"post_status" : "publish", |
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 assert = require('assert'); | |
var crypto = require('crypto'); | |
var EXTERN_APEX = 0xFBEE9; | |
var ucs2_control = 'a\u0000'; | |
while (ucs2_control.length <= EXTERN_APEX) { | |
ucs2_control += ucs2_control; | |
} | |
var b1 = new Buffer(ucs2_control, 'ucs2').slice(900000); |
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
$(function() { | |
var x, y; | |
var items = [].slice.call(document.querySelectorAll('*')).filter(function(el) { | |
if (el.getClientRects().length == 0) | |
return false; | |
var ret = !(el.dataset['noMove'] === ''); | |
if (!ret) | |
console.log(el.dataset); | |
return ret; | |
}).map(function(el) { |
OlderNewer