Skip to content

Instantly share code, notes, and snippets.

View hcarreras's full-sized avatar

Hari Abtion hcarreras

View GitHub Profile
@hcarreras
hcarreras / Scrabbel
Created June 27, 2012 15:39
Scrabbel best move
class Dictionary
attr_reader :my_words
def initialize(rows)
@my_words = rows
end
def valid_words(letters)
good_words = Array.new #here is where gonna be the words we can use
contains = true
@hcarreras
hcarreras / description.md
Created October 8, 2012 16:15 — forked from mraaroncruz/description.md
granadajs Hacknight Uno

Granadajs Hacknight Uno

Ideas for app

  • Shopping - a shopping list app, maybe with phonegap. Web/phone sync.
  • Tapatracker - categorize, describe, photos?, location tapa tracker. "Do I want asian noodles or oxtail? I'll check tapatracker!"
  • Unlikeable - a facebook app that checks which of your friends liked things that you disliked. I don't know if this is possible. It probably is.
  • SoundCloud playlist creator
<!DOCTYPE html>
<html>
<head>
<title>QueTiemblen.com</title>
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script>
<![endif]-->
<link href="/assets/application.css?body=1" media="all" rel="stylesheet" type="text/css" />
<link href="/assets/bootstrap_and_overrides.css?body=1" media="all" rel="stylesheet" type="text/css" />
<h1>Catalog</h1>
<div class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="#">Dropdown trigger</a>
<ul class="dropdown-menu" role="menu" aria-labelledby="dLabel" id="menu1">
<li class="dropdown-submenu">
<a class="dropdown-toggle" data-toggle="dropdown" tabindex="-1" href="#">Clothes</a>
<ul class="dropdown-menu" id="clothes">
<li class="dropdown-submenu" id="coats">Coats</li>
<li class="dropdown-submenu" id="shirts">Shirts</li>
<h1>Catalog</h1>
<div class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="#">Dropdown trigger</a>
<ul class="dropdown-menu" role="menu" aria-labelledby="dLabel" id="menu1">
<li class="dropdown-submenu">
<div class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" tabindex="-2" href="#">Clothes</a>
<ul class="dropdown-menu" id="clothes">
<li id="coats">Coats</li>
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
<style type="text/css">
html { height: 100% }
body { height: 100%; margin: 0; padding: 0 }
#map-canvas { height: 70% }
compara(name1, asked_clues1, name2, clues2)
{
NSMutableString *respuesta;
bool attribute? = false;
Clues clueA, clueB;
for (clueA in asked_clues1)
for(clueB in clues2)
if(clueA.attr == clueB.attr){
attribute? = true;
if(clueB.value == clueB.value){
#import "Nature.h"
@implementation Nature
-(id)init
{
self = [super init];
return self;
}
+(NSMutableString *) compara : (NSString *) name1 : (NSMutableArray *) asked_clues1 : (NSString *) name2 : (NSMutableArray *) clues2
{
NSMutableString *respuesta;
Clue *clueA, *clueB;
for (clueA in asked_clues1){
for(clueB in clues2){
if(clueA.attr == clueB.attr){
if(clueA.value != clueB.value){
respuesta = [[NSMutableString alloc] initWithString:name2];
+(NSMutableString *) compara : (NSString *) name1 : (NSMutableArray *) asked_clues1 : (NSString *) name2 : (NSMutableArray *) clues2
{
NSMutableString *respuesta;
Clue *clueA, *clueB, *some_clue;
bool mismo_attr = false;
for (clueA in asked_clues1){
for(clueB in clues2){
if(clueA.attr == clueB.attr){
if(clueA.value != clueB.value){