Skip to content

Instantly share code, notes, and snippets.

View micahbrich's full-sized avatar

Micah Rich micahbrich

View GitHub Profile
@micahbrich
micahbrich / amgleft.js
Created August 16, 2009 17:39
anthony's imageswapping js
function swapPhoto(photoSRC,theCaption,theLink) {
var displayedImage = document.getElementById("thephoto");
var displayedCaption = document.getElementById("caption");
// to make the link go to a new window, i just added 'target="_blank"' to both links below.
// target is just an attribute of the a tag in html
//
// however, i added a conditional to the image & link replacers.
// it says that if there is no third variable, there won't be any links. it's written as follows:
class ImagesController < ApplicationController
session :cookie_only => false, :only => :upload_image_block
def upload_image_block
@image = Image.new(:file => swf_upload_data) # here you can use your favourite plugin to work with attachments
if @image.save
render :partial => 'image', :object => @image
else
render :text => "error"
end
require 'fleakr'
class Fetchr < ActiveRecord::Base
# This script fetches flickr photos
@flickr ||= Fleakr.api_key = < my key >
@user ||= Fleakr.user('[email protected]')
@photos ||= @user.sets.first.photos
@photos.each do |photo|