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
#!/opt/local/bin/ruby | |
# | |
# This file was generated by RubyGems. | |
# | |
# The application 'bundler' is installed as part of a gem, and | |
# this file is here to facilitate running it. | |
# | |
require 'rubygems' |
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 BrowserDetect = { | |
init: function () { | |
this.browser = this.searchString(this.dataBrowser) || "An unknown browser"; | |
this.version = this.searchVersion(navigator.userAgent) || this.searchVersion(navigator.appVersion) || "an unknown version"; | |
this.OS = this.searchString(this.dataOS) || "an unknown OS"; | |
}, | |
searchString: function (data) { | |
for (var i = 0; i < data.length; i++) { | |
var dataString = data[i].string; | |
var dataProp = data[i].prop; |
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
// non-id/name attributes are interpreted as cdata | |
// per: http://www.w3.org/TR/html4/types.html#type-cdata | |
var s = "<p title=\"<script>alert('TEST')</script>\">testing 123</p>"; | |
document.body.innerHTML = s; | |
document.getElementsByTagName('p')[0].getAttribute('title'); | |
// => "<script>alert('TEST')</script>" | |
document.getElementsByTagName('p')[0].title; | |
// => "<script>alert('TEST')</script>" |
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 s = "<p data-foo=\"<script>alert('TEST')</script>\">testing 123</p>"; | |
document.body.innerHTML = s; | |
document.getElementsByTagName('p')[0].getAttribute('data-foo'); | |
// => "<script>alert('TEST')</script>" | |
var s = "<p data-foo=\"\<script\>alert('TEST')</script>\">testing 123</p>"; | |
document.body.innerHTML = s; | |
document.getElementsByTagName('p')[0].getAttribute('data-foo'); | |
// => "<script>alert('TEST')</script>" |
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 highlightText(node, text) { | |
var skip = 0; | |
if (node.nodeType == 3) { | |
var pos = node.data.toUpperCase().indexOf(text.toUpperCase()); | |
console.log(node.data); | |
if (pos >= 0) { | |
var spannode = document.createElement('span'); | |
spannode.className = 'highlight'; | |
spannode.style.backgroundColor = 'yellow' |
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
module A | |
class C | |
def initialize | |
@foo = 'lame' | |
@boo = 'boo' | |
end | |
def bar | |
foo # wait, foo is not defined in C?! wait for it... | |
end | |
def baz |
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
// returns "hello world\n" | |
// 6g http_server.go | |
// 6l http_server.6 | |
// ./6.out | |
// benchmark w/ Apache Bench | |
// ab -n 2000 -c 200 http://localhost:1234/ | |
package main | |
import ( |
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
// Dynamically loading CSS, the cross browser safe way | |
function createStyleTag(styleAttributes) { | |
var styleTag = document.createElement('style'); | |
styleTag.setAttribute('type', 'text/css'); | |
if (styleAttributes) { | |
for ( var attribute in styleAttributes ) { | |
styleTag.setAttribute(attribute, styleAttributes[attribute]); | |
} | |
} |
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
/** | |
* Twitter - http://www.twitter.com | |
* Copyright (C) 2009 Twitter | |
* Author: Dustin Diaz ([email protected]) | |
* | |
* V 2.1.1 Twitter search/profile/faves/list widget | |
* http://twitter.com/widgets | |
*/ | |
if (!"console" in window) { | |
window.console = { |
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
require 'open-uri' | |
# url dsl -- the ultimate url dsl! | |
# | |
# You just can't beat this: | |
# | |
# $ irb -r url_dsl | |
# >> include URLDSL | |
# => Object | |
# >> http://github.com/defunkt.json |