Skip to content

Instantly share code, notes, and snippets.

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Ansi 0 Color</key>
<dict>
<key>Alpha Component</key>
<real>1</real>
@smitfire
smitfire / carousel.js
Last active December 22, 2015 09:49 — forked from ksolo/carousel.js
Image Carousel
@smitfire
smitfire / index.html
Last active December 22, 2015 09:19 — forked from dbc-challenges/zoo.js
index.html
@smitfire
smitfire / index.html
Last active December 22, 2015 09:18 — 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>

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.
@smitfire
smitfire / index.html
Last active December 21, 2015 04:09 — 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>
@smitfire
smitfire / One Dice Game
Created July 19, 2013 17:27
One Dice Game
class DiceGame
def initialize
roll
@a =* (1..6)
puts "what is your name"
@name = gets
puts "hello " + @name + "sup?"
puts "CPU rolled a " + @b.first.to_s
end
@smitfire
smitfire / Blackspot
Last active December 20, 2015 00:19
Blackspot drinking game. Ruby file
class Card
def deck
num = [2,3,4,5,6,7,8,9,10,"Jack","Queen","King","Ace"]
suit = ["spade", "club", "heart", "diamond"]
d = num.product(suit).shuffle
end
end