An easy to refer to document for regularly setting up macOS 10.15 Catalina.
I have a long history of creating these gists... one for every major version of the OS.
My previous macOS / OSX setup gists:
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.
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.
I hereby claim:
To claim this, I am signing this object:
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.
The state of the web has evolved to the point that javascript is an essential developer skill.
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
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; |
# 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' |
#!/bin/bash | |
castles="newhavengill/dotfiles" | |
prompt_castle() { | |
if [[ $2 = y ]]; then | |
def="[Yn]" | |
else | |
def="[yN]" | |
fi |
# 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 |