I hereby claim:
- I am dougborg on github.
- I am dougborg (https://keybase.io/dougborg) on keybase.
- I have a public key ASBgKq_69U1WeYgnFY9YI09FLsHuKO5ifZ0FfHyFgQfm9wo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
# Mavericks has a nasty issue regarding ARPs in corporate networks. | |
# It appears that they have tried to reduce bandwidth utilization by caching | |
# the results of ARPs. Unfortunately, this causes big problems with corporate | |
# networks with Virtual IPs or other corporate network redundancy measures. | |
# There exist other patches for this issue | |
# (see https://github.com/MacMiniVault/Mac-Scripts/blob/master/unicastarp/unicastarp-README.md) | |
# but they write a value that will be pulled everytime the machine reboots. Because |
#!/bin/bash | |
# Find the system gradle executable to fall back on. | |
GRADLE=$(which gradle) | |
# Default names for things | |
GRADLEW='gradlew' | |
BUILD_GRADLE='build.gradle' | |
GRADLEW_FOUND=false | |
BUILD_GRADLE_FOUND=false |