Skip to content

Instantly share code, notes, and snippets.

View newtonapple's full-sized avatar

David Dai newtonapple

  • Tobiko Data
  • San Francisco
View GitHub Profile
#!/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'
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;
// non-id/name attributes are interpreted as cdata
// per: http://www.w3.org/TR/html4/types.html#type-cdata
var s = "<p title=\"&lt;script&gt;alert('TEST')&lt;/script&gt;\">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>"
@newtonapple
newtonapple / gist:671669
Created November 10, 2010 22:39
Fun with InnerHTML & getAttribute. Be careful when using data-attribute...
var s = "<p data-foo=\"&lt;script&gt;alert('TEST')&lt;/script&gt;\">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')&lt;/script&gt;\">testing 123</p>";
document.body.innerHTML = s;
document.getElementsByTagName('p')[0].getAttribute('data-foo');
// => "<script>alert('TEST')</script>"
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'
@newtonapple
newtonapple / include_object.rb
Created July 8, 2010 11:09
The evil of including Modules globally. Stop it people!
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
// 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 (
// 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]);
}
}
/**
* 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 = {
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