This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#envato_dropdown | |
Part of | |
%img{:src=>'/img/envato.png', :alt=>'Envato'} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Finished adapting your PATH environment variable for use with MacPorts. | |
# | |
[[ -s "/Users/garthdb/.rvm/scripts/rvm" ]] && source "/Users/garthdb/.rvm/scripts/rvm" # This loads RVM into a shell session. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
auto: true | |
server: true | |
server_port: 4000 | |
safe: true | |
source: . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset='utf-8' /> | |
<meta content='description' name='description' /> | |
<title>Nerd Radio</title> | |
<link href='css/main.css' media='screen' rel='stylesheet' /> | |
<script src='https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js' type='text/javascript'></script> | |
<!--[if lt IE 7 ]> | |
<script src='http://html5shiv.googlecode.com/svn/trunk/html5.js' type='text/javascript'></script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
html, body, div, span, object, iframe, | |
h1, h2, h3, h4, h5, h6, p, blockquote, pre, | |
abbr, address, cite, code, | |
del, dfn, em, img, ins, kbd, q, samp, | |
small, strong, sub, sup, var, | |
b, i, | |
dl, dt, dd, ol, ul, li, | |
fieldset, form, label, legend, | |
table, caption, tbody, tfoot, thead, tr, th, td, | |
article, aside, canvas, details, figcaption, figure, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
--- | |
{% include reset.css %} | |
{% include default.css %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
layout: default | |
title: Portfolio | |
--- | |
{% for post in site.posts %} | |
{% endfor %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
layout: episode | |
title: Test Episode | |
comment_count: 5 | |
guest: Test Episode | |
host: <a href='http://www.twitter.com/garthdb'>Garth Braithwaite</a> and <a href='http://www.twitter.com/leifwells'>Leif Wells</a> | |
producer: <a href='http://www.twitter.com/artienorman'>Brad Feuerstein</a> | |
audio_url: http://traffic.libsyn.com/riaradio/35_Episode_35__Ben_and_Burman.m4a.mp3 | |
image_url: /img/posts/comb_over_charlie.jpg | |
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
i = 0 | |
while i < (totalDigits-n.length) | |
pad += '0' | |
i++ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class UsersController < ApplicationController | |
def login | |
error = false; | |
@user = User.find_by_email(params['email']); | |
if(@user.nil?) | |
error = true | |
else | |
error = [email protected]_password?(params['password']) |
OlderNewer