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
require "rails" | |
require "action_controller/railtie" | |
class Dummy < Rails::Application | |
config.root = File.dirname(__FILE__) | |
config.session_store :cookie_store, key: '****************************************' | |
config.secret_token = '****************************************' | |
# Log to spec/dummy/test.log |
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> | |
<script type="text/javascript" src="sugar-1.3.5-full.min.js"></script> | |
</head> | |
<body> | |
<div id="container" style="height: 900px; min-width: 310px; max-width: 1400px; margin: 0 auto"></div> | |
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script> | |
<script src="http://code.highcharts.com/highcharts.js"></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
var repo_prefixes = []string{"git://","git@","http://","https://","ssh://"} | |
func (r *Repo) isGitImproved() bool { | |
for _,prefix := range repo_prefixes { | |
if strings.HasPrefix(r.Path, prefix) { return true } | |
} | |
return false | |
} |
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
# This is ripe for some refactoring, but I think it shows an okay | |
# implementation of the factory pattern | |
class Animal(object): | |
sound = "" | |
description = "" | |
def describe(self): | |
return self.description |
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
cat *.json |\ | |
jq 'map(select(.from.name=="Nate Klaiber"))' |\ | |
jq '.[].message' |\ | |
grep -v 'jq' |\ | |
sed -e 's/\([[:punct:]]\)//g' |\ | |
grep -v '^$' |\ | |
tr '\n' ' ' |\ | |
tr ' ' '\n' |\ | |
tr '[:upper:]' '[:lower:]' |\ | |
sort |\ |
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
sendKeyPress: function() { | |
console.log('sendKeyPress'); | |
var $editor = $(this.get('editor').getDocument()).find('body'); | |
var keyEvent = $.Event( "keypress", { keyCode: 69, which: 69, charCode: 69 }); | |
$editor.focus(); | |
$editor.trigger(keyEvent); | |
}, |
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
{ | |
"meta": { | |
"limit": 10, | |
"offset": 0, | |
"page_count": 10, | |
"data_type": "collection", | |
"links": { | |
"last": "http://localhost:3000/collections?limit=10&offset=10", | |
"root": "http://localhost:3000/", | |
"self": "http://localhost:3000\n/collections?limit=10&offset=0", |
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
── blanket#1.1.5 (latest is 1.1.7) | |
├── bourbon#4.2.1 (latest is 4.2.3) | |
├─┬ dinosheets#0.0.1 (latest is 0.1.0) | |
│ └── loader.js#3.2.0 (latest is 3.2.1) | |
├─┬ ember#1.12.1 (latest is 1.13.0-beta.2) | |
│ └── jquery#2.1.3 (2.1.4 available) | |
├─┬ ember-cli-moment-shim#0.1.0 | |
│ └── moment#2.10.3 | |
├─┬ ember-cli-shims#0.0.3 | |
│ └── ember#1.12.1 (1.13.0-beta.2 available) |
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
module ZeroOneOne (main, parMain) where | |
import Lib as L | |
import Data.List (transpose) | |
import Control.Parallel.Strategies | |
{- | |
Problem 11: | |
In the 2020 grid below, four numbers along a diagonal line have been marked in red. |
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> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" /> | |
<!-- WARNING: for iOS 7, remove the width=device-width and height=device-height attributes. See https://issues.apache.org/jira/browse/CB-4323 --> | |
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height, target-densitydpi=device-dpi" /> | |
<title>battleship</title> | |
</head> | |
<body> | |
<div id="board"> |