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
# This is called before the external site, so we can add dynamic Facebook permissions | |
# for example. See http://www.mikepackdev.com/blog_posts/2-dynamically-requesting-facebook-permissions-with-omniauth | |
get '/auth/:name/setup' do | |
if session[:extra_permissions] | |
request.env['omniauth.strategy'].options[:scope] = STANDARD_FACEBOOK_PERMISSIONS+','+session[:extra_permissions] | |
session.delete(:extra_permissions) | |
end | |
# This looks odd, but is the expected way to indicate success to Omniauth! | |
halt 404, 'Setup complete' | |
end |
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 'rubygems' if RUBY_VERSION < '1.9' | |
require 'tempfile' | |
require File.join(ENV['JETPAC_PATH'], 'library/logger') | |
require File.join(ENV['JETPAC_PATH'], 'library/email') | |
def image_command(command) | |
log "IMG: Running '#{command}'" | |
result = system(command) | |
if !result |
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
# Takes a hash of string and file parameters and returns a string of text | |
# formatted to be sent as a multipart form post. | |
# | |
# Author:: Cody Brimhall <mailto:[email protected]> | |
# Created:: 22 Feb 2008 | |
# Licensed under the WFTPL - http://stackoverflow.com/questions/184178/ruby-how-to-post-a-file-via-http-as-multipart-form-data | |
# http://sam.zoy.org/wtfpl/ | |
require 'rubygems' | |
require 'mime/types' |
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 'rubygems' if RUBY_VERSION < '1.9' | |
require 'net/https' | |
require 'uri' | |
require 'multipart' | |
FACEBOOK_GRAPH_SERVER='https://graph.facebook.com' | |
def post_https(url, data, header) | |
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
# Grab the 0.8.7 binaries, you may need to use a more current mirror | |
curl -O "http://mirrors.ibiblio.org/apache//cassandra/0.8.7/apache-cassandra-0.8.7-bin.tar.gz" | |
tar -xzf apache-cassandra-0.8.7-bin.tar.gz | |
# Shut down Cassandra before changing anything, may take a minute or two | |
sudo service cassandra stop | |
# Make backups of the directories we'll be altering | |
sudo cp -R /usr/bin /usr/bin_original | |
sudo cp -R /usr/share/cassandra /usr/share/cassandra_original |
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/ruby | |
# | |
# A module for a quick sanity test on whether a web page is working (for small values of working) | |
# See http://petewarden.typepad.com for more info | |
# | |
# | |
require 'rubygems' if RUBY_VERSION < '1.9' | |
require 'net/http' | |
require 'net/https' |
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
get '/blog*' do | |
path = params[:splat][0] | |
source_url = 'http://yourblog.tumblr.com' + path.gsub(/ /, '+') | |
source_content_type = '' | |
source_body = open(source_url) do |f| | |
source_content_type = f.content_type # "text/html" | |
f.read | |
end | |
if source_content_type == 'text/html' | |
output_base = request.base_url + '/blog' |
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
// Call like wrapNamespaceInTracing(jetpac, 'jetpac'); | |
g_callStack = []; | |
window.onerror = function(inputMessage, url, line) { | |
if (typeof g_callStack !== 'undefined') { | |
inputMessage += ' - stack=[' + g_callStack.join(' -> ') + ']'; | |
g_callStack = []; | |
} | |
var message = '**** Javascript error **** ' + inputMessage + ' at ' + url + ':' + line; | |
console.log(message); |
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
// Runs a small set of hand-calculated data through the implementation. | |
void TestWithSmallData() { | |
const int m = 4; | |
const int n = 2; | |
const int k = 3; | |
// Matrix A (LHS) is: | |
// | 7 | 10 | 13 | 16 | | |
// | 8 | 11 | 14 | 17 | | |
// | 9 | 12 | 15 | 18 | | |
const uint8_t a_data[] = {7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18}; |
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
void ReferenceEightBitIntGemm(bool transpose_a, bool transpose_b, | |
bool transpose_c, int m, int n, int k, | |
const uint8_t* a, int32_t a_offset, int lda, | |
const uint8_t* b, int32_t b_offset, int ldb, | |
uint8_t* c, int32_t c_offset, int32_t c_mult_int, | |
int32_t c_shift, int ldc) { | |
assert((c_shift >= 0) && (c_shift <= 32)); | |
assert(a != nullptr); | |
assert(b != nullptr); |
OlderNewer