Skip to content

Instantly share code, notes, and snippets.

# Controller
class GuestsController < ApplicationController
def create
@guest = Guest.new(params[:guest])
if @guest.save
redirect_to :action => 'index'
else
render :action => 'new'
end
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
#!/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
#!/usr/bin/python
# Program to convert a number into the format
# hh mm ss.sssss
# Input format: ./converter.py DEC RA
import math
import sys
import string
def to_dec(inp):
def deg2ra(num)
if num < 0
deg = deg + 360
elsif num > 360
puts "input should not exceed 360!"
end
hour = (num/15).to_i()
min = ((num-15*hour)*4).to_i()
sec = (4*num-60*hour-min)*60
public void ParseFile(string strPath)
{
XmlTextReader xmlReader = new XmlTextReader(strPath);
int iTab = 0;
// Read the line of the xml file
while (xmlReader.Read())
{
switch (xmlReader.NodeType)
{
case XmlNodeType.Element:
get '/rugs/?' do
@images = Image.all
haml(:home)
end
get '/rugs/:id' do
@image = Image.get(params[:id])
haml :show
end
-----------------------
!!! strict
!!!
%h1.header HI!
%table
- @images.each do |i|
%tr
%td
%img{ :src => "#{i.path}" }
#include <iostream>
#include <string>
#include <sstream>
using namespace std;
#define DAYS_IN_YEAR 360 // In order to simplify the program
#define DAYS 30 // use 30 days in each month.
#define MONTHS 12 // This still gives a rough estimate on how
// well the hashing functions work.
#include <iostream>
#include <string>
#include <sstream>
using namespace std;
#define DAYS_IN_YEAR 360 // In order to simplify the program
#define DAYS 30 // use 30 days in each month.
#define MONTHS 12 // This still gives a rough estimate on how
// well the hashing functions work.