Skip to content

Instantly share code, notes, and snippets.

#!/usr/bin/env python
# -*- coding: utf-8 -*-
import sys
import random
def scramble(word):
"""Returns word with innards scrambled"""
if len(word) < 4:
return word
findblob:
la $t3, image # address of image
or $t0, $zero, $zero # i = 0
mult $a1, $a2
mflo $t1 # max = w * h
loop: beq $t0, $t1, exit
sll $t2, $t0, 2 # mult by 4
add $t2, $t2, $t3 # t3 = i + address
# Controller
class GuestsController < ApplicationController
def create
@guest = Guest.new(params[:guest])
if @guest.save
redirect_to :action => 'index'
else
render :action => 'new'
end