Skip to content

Instantly share code, notes, and snippets.

View newhavengill's full-sized avatar

Justin Gill newhavengill

View GitHub Profile
@newhavengill
newhavengill / 1-macOS-10.15-catalina-setup.md
Last active October 9, 2020 19:28
3-macOS 10.15 Catalina Fresh Install

macOS 10.15 Catalina Mostly-Automated Setup

An easy to refer to document for regularly setting up macOS 10.15 Catalina.

Previous Setup Gists

I have a long history of creating these gists... one for every major version of the OS.

My previous macOS / OSX setup gists:

Devops Engineer

We appreciate your interest in joining SeeClickFix's development team. As an exercise to base our conversation moving forward, please complete and submit the following small app.

For this project, please use the programming language that you think will best illustrate your skills. For reference SeeClickFix uses Javascript, Ruby, Kotlin, Swift, and Java but you aren't required to use one of our languages.

Description

Create a web app or command line tool that will query the open311 API (https://seeclickfix.com/open311/v2/docs) by latitude and longitude and return a csv file with the service_request_id, description, service_name fields for each request.

If you have time, please include one or two tests or document what type of tests you might add.

Keybase proof

I hereby claim:

  • I am newhavengill on github.
  • I am justingill (https://keybase.io/justingill) on keybase.
  • I have a public key ASAjtqBUZoLrVmylvYdaq-LlB2fZ0p9CqZCJhPRFRtrzogo

To claim this, I am signing this object:

@newhavengill
newhavengill / 1-macOS-10.13-high-sierra-setup.md
Created February 12, 2018 20:00 — forked from kevinelliott/1-macOS-10.13-high-sierra-setup.md
macOS 10.13 High Sierra Mostly-Automated Setup

macOS 10.13 High Sierra Mostly-Automated Setup

An easy to refer to document for regularly setting up macOS 10.13 High Siera, in flavor of my previous macOS/OSX setup gists:

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.

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

@newhavengill
newhavengill / simple-espn-parser.java
Last active December 26, 2015 21:52
Simple ESPN Video API Parser. GSON. No POJO
package com.espn.data;
import com.google.gson.JsonArray;
import com.google.gson.JsonElement;
import com.google.gson.JsonObject;
import com.google.gson.JsonParser;
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.net.URL;
@newhavengill
newhavengill / bash_profile
Last active August 29, 2015 14:24
Basic server settings
# PS1='\[\033[31m\]\w\[\033[0m\] $ '
# PS1='${debian_chroot:+($debian_chroot)}\[\e[34m\]\u\[\e[0m\]@\h:\[\e[36m\]\W\[\e[0m\]\$ '
# PS1='\n[\!] `if [ $? = 0 ]; then echo \[\e[32m\]^_^\[\e[0m\]; else echo \[\e[31m\]O.O\[\e[0m\]; fi` (\j) \[\e[36m\]\W\[\e[0m\]\n\$ ~> '
PS1='\n[\!] `if [ $? = 0 ]; then echo \[\e[32m\]^_^\[\e[0m\]; else echo \[\e[31m\]O.O\[\e[0m\]; fi` \u@\h:\[\e[36m\]\w\[\e[0m\]\n\$${debian_chroot:+($debian_chroot)} \j> '
export EDITOR=vim
alias ll='ls -l'
alias la='ls -la'
@newhavengill
newhavengill / homeshick.sh
Created January 15, 2015 17:30
Set up dotfiles and vimrc
#!/bin/bash
castles="newhavengill/dotfiles"
prompt_castle() {
if [[ $2 = y ]]; then
def="[Yn]"
else
def="[yN]"
fi
@newhavengill
newhavengill / apache2-custom.conf
Created January 2, 2015 16:51
Apache2 local config on Yosemite
# Apache configuration
#
# To install on an OS X machine do this:
#
# Open /etc/apache2/httpd.conf
# set DocumentRoot "/Users/newhavengill/www/docs"
# set <Directory "/Users/newhavengill/www/docs">
#
# To use .htaccess in each site make edit to allow all
# set AllowOverride All