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
'use strict'; | |
var packagejson = require('./package.json'); | |
module.exports = function (grunt) { | |
// Configuration | |
grunt.initConfig({ | |
pkg: packagejson, | |
watch: { | |
scripts: { |
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 name="description" content=""> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<title>Solution</title> | |
<link rel="stylesheet" href="css/style.css"> | |
<link rel="author" href="humans.txt"> | |
</head> |
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
import sys | |
def reverso(str): | |
i = 0 | |
str_len = len(str) - 1 | |
str = list(str) | |
half_len = len(str)/2 | |
for x in str: | |
temp = x |
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
# `ruby reverso.rb "foo"` | |
class Reverso | |
def initialize | |
my_arr = ARGV[0].split("") | |
puts "'#{self.reverso(my_arr)}'" | |
end | |
def reverso my_arr | |
len = my_arr.size - 1 | |
halflen = ((len + 1)/2.0).ceil |
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 enjoy doing interview questions just because they make my brain feel better. | |
// Here's the solution I came up with for this interview question on interviewcake.com | |
// http://www.interviewcake.com/question/matching-parens | |
var str = 'Sometimes (when I nest them (my parentheticals) too much (like this (and this))) they get confusing.'; | |
findMyMate(str, '(', ')', 10); | |
/** | |
* Find the mate of a given character |
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> | |
<title>TypeTo</title> | |
<link href='http://fonts.googleapis.com/css?family=Shadows+Into+Light' rel='stylesheet' type='text/css'> | |
<style type="text/css"> | |
input, div { | |
font-size: 36px; | |
font-weight: bold; | |
} |
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
# $1 : remote name you want to diff against | |
function gdf () { | |
# get the current branch reference, cut with the delimiter / | |
# and grab the 3rd item in the list, copy to the pastebord, use the pbpaste | |
# as the diff name. | |
current_branch=`git symbolic-ref HEAD | cut -d"/" -f 3`; | |
git diff $1/master...HEAD --relative > ~/difflog/$current_branch.diff; | |
open "$jira/$current_branch"; | |
} |
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
root = true | |
[*] | |
end_of_line = lf | |
insert_final_newline = true | |
indent_style = space | |
indent_size = 2 | |
charset = "utf-8" | |
trim_trailing_whitespace = true |
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
#!/usr/bin/env ruby | |
# Hook into the message and append the branch name so that we don't have to | |
# manually do it ourselves! | |
# This is the message that you put when you do: | |
# `git commit -m "This is my message" | |
message_file = ARGV[0] | |
message = File.read(message_file).strip | |
branch_name = `git rev-parse --abbrev-ref HEAD`.strip |