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
-- | |
-- PostgreSQL database dump | |
-- psql dbname < hubway_stations.sql | |
-- | |
SET statement_timeout = 0; | |
SET lock_timeout = 0; | |
SET client_encoding = 'UTF8'; | |
SET standard_conforming_strings = on; | |
SET check_function_bodies = 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
pg_restore: [archiver (db)] Error while PROCESSING TOC: | |
pg_restore: [archiver (db)] Error from TOC entry 1274; 0 0 SHELL TYPE box2d postgres | |
pg_restore: [archiver (db)] could not execute query: ERROR: type "box2d" already exists | |
Command was: CREATE TYPE box2d; | |
pg_restore: [archiver (db)] Error from TOC entry 254; 1255 16461 FUNCTION box2d_in(cstring) postgres | |
pg_restore: [archiver (db)] could not execute query: ERROR: function "box2d_in" already exists with same argument types | |
Command was: CREATE FUNCTION box2d_in(cstring) RETURNS box2d |
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
License_restricts_use OS_type MD5sum NeedsCompilation Built | |
acepack NA NA NA "yes" "3.1.2" | |
car NA NA NA "no" "3.1.2" | |
codetools NA NA NA "no" "3.1.2" | |
colorspace NA NA NA "yes" "3.1.2" | |
DBI NA NA NA "no" "3.1.2" | |
dichromat NA NA NA NA "3.1.2" | |
digest NA NA NA "yes" "3.1.2" | |
evaluate NA NA NA "no" "3.1.2" | |
formatR NA NA NA "no" "3.1.2" |
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
asdfsdaf |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file has been truncated, but you can view the full file.
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
Matts-iMac:~ mattgardner$ pwd | |
/Users/mattgardner | |
Matts-iMac:~ mattgardner$ ls | |
Applications Documents Movies Public exercism | |
Desktop Downloads Music VirtualBox VMs install | |
Development Library Pictures bin | |
Matts-iMac:~ mattgardner$ ssh [email protected] | |
The authenticity of host '104.131.72.8 (104.131.72.8)' can't be established. | |
RSA key fingerprint is 38:37:d7:93:e1:7a:a4:40:b2:f4:4d:69:35:05:9d:60. | |
Are you sure you want to continue connecting (yes/no)? yes |
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 fullList = jQuery(".elementList .editFriends div a"); var emptyArray=[]; jQuery(".elementList .editFriends div a").map(function(elem) { emptyArray.push(fullList[elem].href); }); emptyArray.forEach(function(el) { jQuery.post(el); }); |
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 Ember from 'ember'; | |
var get = Ember.get, | |
arrayComputed = Ember.arrayComputed; | |
export default function (dependentKey, property) { | |
var options = { | |
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
-- Adapted from these sources: | |
-- http://peterdowns.com/posts/open-iterm-finder-service.html | |
-- https://gist.github.com/cowboy/905546 | |
-- | |
-- Modified to work with files as well, cd-ing to their container folder | |
on run {input, parameters} | |
tell application "Finder" | |
set my_file to first item of input | |
set filetype to (kind of (info for my_file)) | |
-- Treats OS X applications as files. To treat them as folders, integrate this SO answer: |
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 Ember from 'ember'; | |
export default Ember.Controller.extend({ | |
queryParams: [{ redevelopment: { type: 'boolean' } }], | |
redevelopment: null, | |
actions: { | |
toggleIt: function() { | |
this.toggleProperty("redevelopment"); | |
console.log(this.get("redevelopment")); | |
} |
OlderNewer