A freeway, Tilton warned, "is a device which can make or break the city. It can liberate or contribute to congestion. It can cut the city into unrelated parts, or bind it together. It can destroy values, or create new ones. The State cannot soundly develop its urban freeway plans without attention to the planning problems of the city itself." Tilton criticized the state for a narrow approach that considered merely "the assembly and interpretation of traffic data...
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 FileQueue | |
def initialize(file_name) | |
@file_name = file_name | |
end | |
def push(obj) | |
safe_open('a') do |file| | |
file.write(obj + "\n") | |
end |
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 re | |
# http://atomboy.isa-geek.com/plone/Members/acoil/programing/double-metaphone | |
from metaphone import dm as double_metaphone | |
# get the Redis connection | |
from jellybean.core import redis | |
import models | |
# Words which should not be indexed |
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>Sproingg</title> | |
<link rel="stylesheet" href="style/main.css" type="text/css"> | |
</head> | |
<body> |
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
# Patterns matching CSS files that should be minified. Files with a -min.css | |
# suffix will be ignored. | |
CSS_FILES = $(filter-out %-min.css,$(wildcard \ | |
public/css/*.css \ | |
public/css/**/*.css \ | |
)) | |
# Patterns matching JS files that should be minified. Files with a -min.js | |
# suffix will be ignored. | |
JS_FILES = $(filter-out %-min.js,$(wildcard \ |
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
{ | |
"name" : basename.replace(/^node-/, ''), | |
"description" : prompt(), | |
"version" : "0.0.0", | |
"repository" : { | |
"type" : "git", | |
"url" : "git://github.com/juliangruber/" + basename + ".git" | |
}, | |
"homepage": "https://github.com/juliangruber/" + basename, | |
"main" : prompt('entry point', 'index.js'), |
- Go to https://github.com/bmpvieira/heroku-dat-template and click Deploy;
- Choose a name (like test-dat);
- Wait for deploy to finish and click "View it" (http://test-dat.herokuapp.com);
- Click import -> paste JSON -> Copy/Paste example;
- Do
dat clone http://test-dat.herokuapp.com
and cd into folder; - Do
dat serve
and go tolocalhost:6461
; - PROBLEM 1: No data;
- Kill, do
echo '{"hello":"world"}'|dat import --json
and serve again; - Now there's some data, kill and do
dat push http://test-dat.herokuapp.com
- PROBLEM 2: Nothing changed on Heroku
From Fabrice Bellard, with minor name change (umulh
):
// return the high 32 bit part of the 64 bit addition of (hi0, lo0) and (hi1, lo1)
Math.iaddh(lo0, hi0, lo1, hi1)
// return the high 32 bit part of the 64 bit subtraction of (hi0, lo0) and (hi1, lo1)
Math.isubh(lo0, hi0, lo1, hi1)
// return the high 32 bit part of the signed 64 bit product of the 32 bit numbers a and b
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
/* | |
Openshift uses haproxy (haproxy.org) as a front proxy to route request to instances of the app. | |
This proxy does the job of unwrapping https and sets the 'x-forwarded-proto' header. | |
Because of this, the Node.JS app never sees the actual protocol of the request, unless it checks the presence of this header. | |
I modified the code written by goloroden (https://github.com/goloroden/node-force-domain) to check this header instead of ports. | |
This gist does exactly what his code does, except checks for actual protocol instead of relying on the port for the protocol. | |
*/ | |
var rewrite = function (route, options) { | |
options = _.defaults({ |
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
for f in *.jpg; do | |
convert ./"$f" -gravity center -resize 1137 -extent 1137x640 -blur 0x4 ./finalcat/"new-$f" | |
convert ./finalcat/"new-$f" -page +248 ./"$f" -flatten ./finalcat/"new-$f" | |
done |
OlderNewer