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
Element.addMethods({ | |
centerHorizontally: function(element) { | |
if (!(element = $(element))) return; | |
var vpWidth = $(document).viewport.getWidth(); | |
var width = element.getWidth(); | |
element.style.left = (vpWidth / 2) - (width / 2) + 'px'; | |
return element; | |
}, |
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
<script> | |
(function(cont, meth) { | |
var index; | |
function log(){ | |
console.log(index); | |
} | |
function iterate(){ | |
log(); |
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 Person = function(name) { | |
this.name = name; | |
} | |
Person.prototype.getName = function() { | |
return this.name; | |
} | |
var thomas = new Person('thomas'); | |
var amy = new Person('amy'); |
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
images = @album.image_assignments | |
changed = Array.new | |
# Get the images that changed order | |
for image in images | |
order = params["order_#{image.image_id}".to_sym] | |
if !order.blank? && order =~ /^\d+$/ && image.position.to_i != order.to_i | |
image.position = order.to_i | |
changed << image |
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
<html> | |
<head> | |
<!-- Skin CSS file --> | |
<link rel="stylesheet" type="text/css" href="http://yui.yahooapis.com/2.8.2r1/build/assets/skins/sam/skin.css"> | |
<!-- Utility Dependencies --> | |
<script src="http://yui.yahooapis.com/2.8.2r1/build/yahoo-dom-event/yahoo-dom-event.js"></script> | |
<script src="http://yui.yahooapis.com/2.8.2r1/build/element/element-min.js"></script> | |
<!-- Needed for Menus, Buttons and Overlays used in the Toolbar --> | |
<script src="http://yui.yahooapis.com/2.8.2r1/build/container/container_core-min.js"></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
http = require 'http' | |
fs = require 'fs' | |
util = require 'util' | |
connect = require 'connect' | |
uuid = require 'node-uuid' | |
require 'coffee-script' | |
UploadController = require './controllers/upload' | |
app = {} |
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 | |
require 'find' | |
Find.find('.') do |path| | |
if path =~ /#{ARGV[0]}/ | |
puts path | |
new_path = path.gsub /#{ARGV[1]}/, ARGV[2] | |
puts new_path |
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 DoodlekitExtensions | |
module ContentFilter extend ActiveSupport::Concern | |
module ClassMethods | |
def content_filter(field, options = {}) | |
before_save { |r| r.apply_filter(field)} | |
include DoodlekitExtensions::ContentFilter::InstanceMethods | |
end | |
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
<%= form_for @time_tracker, :url => {:action => :stop}, | |
:html => {:class => "time-tracker-form", | |
:onchange => "updateForm()" }do |f| %> | |
<!-- TODO localize placeholders / add labels --> | |
<%= f.label l(:time_tracker_label_current_task) %> | |
<script> | |
updateForm = function() { | |
// prototype ajax request | |
new Ajax.Request(.... |
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' | |
require 'fog' | |
require 'find' | |
require 'set' | |
# create a connection | |
connection = Fog::Storage.new({ | |
:provider => 'AWS', | |
:aws_access_key_id => 'XXXXX', | |
:aws_secret_access_key => 'XXXXX' |
OlderNewer