This file contains hidden or 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
% git clone [email protected]:joshuaclayton/elm-ports-example.git | |
Cloning into 'elm-ports-example'... | |
remote: Enumerating objects: 251, done. | |
remote: Total 251 (delta 0), reused 0 (delta 0), pack-reused 251 | |
Receiving objects: 100% (251/251), 126.73 KiB | 1.62 MiB/s, done. | |
Resolving deltas: 100% (87/87), done. | |
apps % cd elm-ports-example | |
elm-ports-example master % atom . | |
elm-ports-example master % yarn | |
yarn install v1.15.2 |
This file contains hidden or 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 | setting | short_desc | |
----------------------------------------+--------------------------------------------+----------------------------------------------------------------------------------- | |
allow_system_table_mods | off | Allows modifications of the structure of system tables. | |
application_name | psql | Sets the application name to be reported in statistics and logs. | |
archive_command | (disabled) | Sets the shell command that will be called to archive a WAL file. | |
archive_mode | off | Allows archiving of WAL files using archive_command. | |
archive_timeout | 0 | Forces a switch to the next WAL file if a new file has not been start |
This file contains hidden or 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
<table border="1"> | |
<tr> | |
<th align="center">name</th> | |
<th align="center">setting</th> | |
<th align="center">short_desc</th> | |
</tr> | |
<tr valign="top"> | |
<td align="left">allow_system_table_mods</td> | |
<td align="left">off</td> | |
<td align="left">Allows modifications of the structure of system tables.</td> |
This file contains hidden or 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
d3DomUIElement.on("click", clickAndDoubleClick(toggleSelectionHandler, selectAndStartEditingHandler)); | |
clickAndDoubleClick = function(singlecallback, doublecallback) { | |
var f; | |
f = void 0; | |
return f = (function() { | |
var doubleclick, firstclick, g, t1, timer; | |
firstclick = true; | |
timer = null; | |
t1 = null; |
This file contains hidden or 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 simple module makes available a UUID generator created by Jeff Ward | |
// | |
// This module will be available under the global App.UUID | |
// | |
// After this module has completely loaded it registers itself so other modules that | |
// depend on it being present can wait until it is available to complete their startup. | |
** | |
* Fast UUID generator, RFC4122 version 4 compliant. |
This file contains hidden or 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
$ ./autogen.sh | |
autoreconf: Entering directory `.' | |
autoreconf: configure.ac: not using Gettext | |
autoreconf: running: aclocal --force -I m4 | |
autoreconf: configure.ac: tracing | |
autoreconf: running: glibtoolize --copy --force | |
glibtoolize: putting auxiliary files in '.'. | |
glibtoolize: copying file './ltmain.sh' | |
glibtoolize: putting macros in AC_CONFIG_MACRO_DIRS, 'm4'. | |
glibtoolize: copying file 'm4/libtool.m4' |
This file contains hidden or 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
Process: GitX [2973] | |
Path: /Applications/GitX.app/Contents/MacOS/GitX | |
Identifier: net.phere.GitX | |
Version: 0.14.95 dev (0.14.95) | |
Code Type: X86-64 (Native) | |
Parent Process: launchd [243] | |
Responsible: GitX [2973] | |
User ID: 503 | |
Date/Time: 2013-11-19 16:27:49.543 -0500 |
This file contains hidden or 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
{ | |
"caveats": null, | |
"conflicts_with": [], | |
"dependencies": [ | |
"pkg-config", | |
"texi2html", | |
"yasm", | |
"x264", | |
"faac", | |
"lame", |
This file contains hidden or 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
$ brew regenerate | |
brew install -v ack | |
brew install -v apple-gcc42 | |
brew install -v autoconf213 | |
brew install -v ccache | |
brew install -v cmake | |
brew install -v couchdb | |
brew install -v elixir | |
brew install -v wget | |
brew install -v gawk |
This file contains hidden or 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
# Outputs brew install commands that can be used to re-install all packages | |
# Place brew-regenerate on the PATH | |
# run: brew regenerate | |
require 'formula' | |
require 'tab' | |
# To debug with pry install the gem into the Ruby 1.8 installed with the system. | |
# /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/bin/ruby | |
# |