#Installing PostgreSQL#
##Drag-and-Drop Install##
- Download Postgres.app
- Drag to
Applications
folder and double-click
##Full-Beard Install##
- Update homebrew:
<?xml version="1.0"?> | |
<!--Phoronix Test Suite v3.0.0a3 (Iveland) [ http://www.phoronix-test-suite.com/ ]--> | |
<PhoronixTestSuite> | |
<SuiteInformation> | |
<Title>Server Bench 2</Title> | |
<Version>1.0.0</Version> | |
<TestType>System</TestType> | |
<Description>A collection of general tests for a server environment.</Description> | |
<Maintainer>Chad Moone</Maintainer> | |
</SuiteInformation> |
unless Modernizr.input.placeholder | |
# if password input have to clone it as a text input and then remove this later (otherwise it will show up as ******) | |
# add focus state to remove this input and show / focus the original | |
$("[placeholder]").focus(-> | |
input = $(this) | |
if input.val() is input.attr("placeholder") | |
input.val "" | |
input.removeClass "placeholder" |
Process: VEILS Builder [32697] | |
Path: /Applications/VEILS Builder.app/Contents/MacOS/VEILS Builder | |
Identifier: com.willinteractive.VEILS-Builder | |
Version: Beta 0.4.3 (0.4.3) | |
Code Type: X86-64 (Native) | |
Parent Process: launchd [312] | |
User ID: 501 | |
Date/Time: 2013-03-05 13:31:11.655 -0500 | |
OS Version: Mac OS X 10.8.2 (12C60) |
#!/bin/sh | |
# POST-COMMIT HOOK | |
# | |
# The post-commit hook is invoked after a commit. Subversion runs | |
# this hook by invoking a program (script, executable, binary, etc.) | |
# named 'post-commit' (for which this file is a template) with the | |
# following ordered arguments: | |
# | |
# [1] REPOS-PATH (the path to this repository) |
module Tracer extend ActiveSupport::Concern | |
included do | |
unless (const_defined?(:TRACER_INIT)) | |
# Prevent redefining constants when Rails reloads | |
TRACER_INIT = true; | |
# Formatting Options | |
CLEAR = "\e[0m" | |
BOLD = "\e[1m" |
unless File.exists?('Gemfile') | |
File.write('Gemfile', <<-GEMFILE) | |
source 'https://rubygems.org' | |
gem 'rails', github: 'rails/rails' | |
gem 'sqlite3' | |
GEMFILE | |
system 'bundle' | |
end |
#Installing PostgreSQL#
##Drag-and-Drop Install##
Applications
folder and double-click##Full-Beard Install##
Chad's 2016 WWDC Talk Reccomendations
(Loosely in order of importance/value)