Skip to content

Instantly share code, notes, and snippets.

View scarow's full-sized avatar

Sam Carow scarow

  • Los Angeles, CA
View GitHub Profile
@scarow
scarow / zoo.js
Created September 12, 2013 22:58 — forked from dbc-challenges/zoo.js
//------------------------------------------------------------------------------------------------------------------
// YOUR CODE: Create your Zoo "object literal" and Animal "constructor" and "prototypes" here.
//------------------------------------------------------------------------------------------------------------------
//------------------------------------------------------------------------------------------------------------------
// DRIVER CODE: Do **NOT** change anything below this point. Your task is to implement code above to make this work.
//------------------------------------------------------------------------------------------------------------------
@scarow
scarow / form-validator.js
Created September 5, 2013 22:29 — forked from ksolo/form-validator.js
Form Validation
// shorthand for $(document).ready();
$(function(){
jQuery.validator.addMethod('mypassword', function(value, element) {
return this.optional(element) || (value.match(/[A-Z]/) && value.match(/[0-9]/));
},
'Password must contain at least one capital and one number.'
);

Instructions:

  1. Download this application skeleton.
  2. Convert the app to use AJAX.
  3. Add any files you changed to your gist and submit your code.
/* Here is your chance to take over Socrates!
Spend 10 minutes on each of the following hacks to the Socrates website.
Enter them in the console to make sure it works and then save
your results here.
Choose a new pair for each. Add your names to the section you complete.
*/
@scarow
scarow / index.html
Created September 1, 2013 06:55 — forked from dbc-challenges/index.html
DBC Phase 2 Practice Assessment Part 3
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="http://cdn.jsdelivr.net/normalize/2.1.0/normalize.css">
<link rel="stylesheet" href="main.css">
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800">
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Lato:100,900">
<link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/font-awesome/3.0.2/css/font-awesome.min.css">
</head>
@scarow
scarow / gist:6289519
Created August 21, 2013 01:46
Address Book Schema
SCREEN SHOT: http://min.us/lbgppAeuKGPSk4
XML:
<?xml version="1.0" encoding="utf-8" ?>
<!-- SQL XML created by WWW SQL Designer, http://code.google.com/p/wwwsqldesigner/ -->
<!-- Active URL: http://socrates.devbootcamp.com/sql.html -->
<sql>
<datatypes db="mysql">
<group label="Numeric" color="rgb(238,238,170)">
@scarow
scarow / gist:6207689
Created August 12, 2013 01:24
Ruby Racer: COMPLETE Note: Both players will still finish the race; but correct winner will be reported.
require_relative 'racer_utils'
require 'pry'
class RubyRacer
attr_reader :players, :length
def initialize(players, length = 30)
@playerA = players[0]
@playerB = players[1]
@scoreA = 0
@scarow
scarow / gist:6171042
Created August 7, 2013 03:48
Pig latin keeping punctuation
def pig_latin word
results_array = Array.new
counter = 0
vowels = ["a","e","i","o","u"]
if word.downcase[0] != ("a" || "e" || "i" || "o" || "u")
split_word = word.split(//)
split_word.each do |current_letter|
if vowels.include?(current_letter)
@scarow
scarow / gist:5913569
Created July 2, 2013 21:54
Social Security madness
# Determine whether a string contains a Social Security number.
def has_ssn?(string)
/\d{3}-\d{2}-\d{4}/ =~ string
end
# Return the Social Security number from a string.
def grab_ssn(string)
mtch = string.match(/\d{3}-\d{2}-\d{4}/)
if mtch.to_s == ""
return nil
@scarow
scarow / gist:5904586
Last active December 19, 2015 05:29
Fibonacci Number Exercise
def is_fibonacci?(i)
fib_arr = [0, 1]
while fib_arr[-1] <= i do
next_num = (fib_arr[-1] + fib_arr[-2])
fib_arr << next_num
end
if fib_arr.include?(i)
true