Skip to content

Instantly share code, notes, and snippets.

View JoeyPinilla's full-sized avatar

Joey Pinilla JoeyPinilla

  • Independent
  • United States
View GitHub Profile
@JoeyPinilla
JoeyPinilla / macos-sierra-commands.sh
Created January 24, 2017 21:23 — forked from ProfFrnswrth/macos-sierra-commands.sh
Updating to macOS Sierra Developer Preview 1 directly from Apple
## based on https://github.com/lioonline/OS-X-El-Capitan
## pkg file link - http://osxapps.itunes.apple.com/apple-assets-us-std-000001/Purple30/v4/cc/62/24/cc62243b-7ed7-74cd-d47e-374bc470ecdf/diu414781394017735583.pkg
# !!IMPORTANT!! Run this from folder where you have downloaded or copied diu414781394017735583.pkg file
#create a tmp folder
mkdir sierraRoot && cd sierraRoot
#create a folder structure to match apple server
sudo mkdir -p ./apple-assets-us-std-000001/Purple30/v4/cc/62/24/cc62243b-7ed7-74cd-d47e-374bc470ecdf/
@JoeyPinilla
JoeyPinilla / OSX Development System Maintenance Tasks
Created October 2, 2016 22:54 — forked from kevinelliott/OSX Development System Maintenance Tasks
OSX 10.8 Mountain Lion Development System Maintenance Tasks
#OSX 10.8 Mountain Lion Development System Maintenance Tasks
Tasks necessary to maintain a healthy OSX development system environment. Some tasks should be performed daily, weekly, and monthly.
##Daily
* Empty Trash
* Time Machine is automatically keeping daily backups locally, and a weekly Time Machine backup (automatic when you plug in the Time Machine external drive) will capture these. More frequent Time Machine synchronizations to the external drive could/should occur.
##Weekly
if [ -f "$rvm_path/scripts/rvm" ]; then
source "$rvm_path/scripts/rvm"
if [ -f ".rvmrc" ]; then
source ".rvmrc"
fi
if [ -f ".ruby-version" ]; then
rvm use `cat .ruby-version`
fi
@JoeyPinilla
JoeyPinilla / gist:e7e51c27c7a5fe58f92a97535a114ceb
Created October 2, 2016 22:54 — forked from nbibler/gist:5307941
A .powrc file which works with RVM's .rvmrc or .ruby-version (+ .ruby-gemset) configuration files.
if [ -f "$rvm_path/scripts/rvm" ]; then
source "$rvm_path/scripts/rvm"
if [ -f ".rvmrc" ]; then
source ".rvmrc"
fi
if [ -f ".ruby-version" ]; then
rvm use `cat .ruby-version`
fi

Themes

  • Soda
  • RailsCasts Colour Scheme

Fonts

  • Source Code Pro, size 12

Plugins

Business Models

Advertising

Models Examples
Display ads Yahoo!
Search ads Google
@JoeyPinilla
JoeyPinilla / setup-ubuntu-15.10-dev.sh
Created October 2, 2016 22:54 — forked from kevinelliott/setup-ubuntu-15.10-dev.sh
Setup standard development environment on Ubuntu 15.10
#!/bin/bash
#
# setup-ubuntu-15.10-dev.sh - Setup standard development environment on Ubuntu 15.10
#
# Kevin Elliott <[email protected]>
#
echo "=== Installing OpenConnect and the Network Manager support ==="
sudo apt-get install openconnect network-manager-openconnect-gnome
echo
@JoeyPinilla
JoeyPinilla / keybase.md
Created October 2, 2016 22:53 — forked from kevinelliott/keybase.md
keybase.md

Keybase proof

I hereby claim:

  • I am kevinelliott on github.
  • I am kevinelliott (https://keybase.io/kevinelliott) on keybase.
  • I have a public key whose fingerprint is F82D BBB7 B582 2B54 D451 B7D5 FE1B A54C 7269 D619

To claim this, I am signing this object:

macOS 10.12 Sierra Setup

Custom recipe to get macOS 10.12 Sierra running from scratch, setup applications and developer environment. This is very similar (and currently mostly the same) as my 10.11 El Capitan setup recipe and 10.10 Yosemite setup recipe. I am currently tweaking this for 10.12 Sierra and expect to refine this gist over the next few weeks.

I use this gist to keep track of the important software and steps required to have a functioning system after a semi-annual fresh install. I generally reinstall each computer from scratch every 6 months, and I do not perform upgrades between releases.

This keeps the system performing at top speeds, clean of trojans, spyware, and ensures that I maintain good organizational practices for my content and backups. I highly recommend this.

You are encouraged to fork this and modify it to your heart's content to match your o

@JoeyPinilla
JoeyPinilla / app-store-pkgs.sh
Created August 28, 2016 12:08 — forked from jacobsalmela/app-store-pkgs.sh
Save App Store downloads as .pkgs
#!/bin/bash
appStoreFolder=$(sudo find /private/var/folders -type f -name "*.pkg")
i=0
for package in $appStoreFolder
do
sudo ln $package ~/Downloads/_MAS_$i.pkg
i=$(($i+1))
done