- 12mm socket
- 15mm socket
- C-clamp
- Hanging bracket for caliper
- pads
- rotor
- brake grease
- brake cleaner
- hammer
- dot3 brake fluid
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
package main | |
import ( | |
"crypto" | |
"crypto/ecdsa" | |
"crypto/rsa" | |
"crypto/tls" | |
"crypto/x509" | |
"encoding/pem" | |
"fmt" |
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
import React, { Component } from 'react'; | |
import { | |
View, | |
Text, | |
TouchableOpacity, | |
} from 'react-native'; | |
import WebViewHack from './WebViewHack'; | |
class ImportFileScreen extends Component { |
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
current=$(xcrun simctl list devices | grep Booted | sed 's/^ *//;s/([A-F0-9]\{8\}.*//;s/ *$//' | head -n1) | |
react-native run-ios --simulator="$current" |
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
fqdn="test.dillonhafer.com" | |
# Ubuntu | |
# config_file="/usr/lib/ssl/openssl.cnf" | |
# macOS | |
# config_file="/System/Library/OpenSSL/openssl.cnf" | |
openssl req \ | |
-newkey rsa:2048 \ |
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
java -jar /Applications/UniFi.app/Contents/Java/ace.jar import_cert <certs> <inter> |
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
set system name-server 9.9.9.9 | |
set system name-server '2620:fe::fe' | |
set service dns forwarding cache-size 300 | |
set service dns forwarding listen-on switch0 | |
set service dns forwarding name-server 9.9.9.9 | |
set service dns forwarding name-server '2620:fe::fe' | |
set service dns forwarding system |
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
# Taken from https://medium.com/@nurblieh/ipv6-on-the-edgerouter-lite-c95e3cc8d49d | |
# just a copy in case that goes away someday | |
# eth1 is my WAN | |
# switch0 is my LAN | |
configure | |
# Firewall Rule 1/2 | |
edit firewall ipv6-name WAN6_IN |
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
#!/usr/bin/osascript | |
# Installation: | |
# curl -o /usr/local/bin/budgetal-dev https://gist.githubusercontent.com/dillonhafer/52dfc24cbe3ddc2b85267a01d312e01b/raw/d78d3cacde5b80ae9be7bec9feff74e1703a00df/budgetal-dev | |
set project to "/Users/dillon/dev/go/src/github.com/dillonhafer/budgetal" | |
tell application "iTerm2" | |
tell current window | |
tell current session to write text "cd " & project |