I hereby claim:
- I am temikus on github.
- I am temikus (https://keybase.io/temikus) on keybase.
- I have a public key whose fingerprint is 75EA 0B04 1004 8AE5 C833 E73C 1818 2EDE 9A18 AA88
To claim this, I am signing this object:
%post | |
# Change to a vt to see progress | |
exec < /dev/tty3 > /dev/tty3 | |
chvt 3 | |
# redirect output to ks-post.log including stdout and stderr | |
( |
#!/bin/bash | |
# The following commands effectively break bluetooth on a mac. Menu is stuck in an "off" state that cannot be toggled back. | |
# Can be used when bluetooth needs to be disabled for security reasons. | |
echo "Powering bluetooth off" | |
sudo defaults write /Library/Preferences/com.apple.Bluetooth.plist "ControllerPowerState" 0 | |
echo "Disabling services" | |
sudo /bin/launchctl unload -w /System/Library/LaunchDaemons/com.apple.blued.plist' |
# Script for sending user defined updates using DO API | |
# 2015 Artem Yakimenko <code at temik dot me> | |
# | |
# activated inside /etc/config/ddns by setting | |
# | |
# option update_script '/usr/lib/ddns/update_do.sh' | |
# | |
# the script is parsed (not executed) inside send_update() function | |
# of /usr/lib/ddns/dynamic_dns_functions.sh | |
# so you can use all available functions and global variables inside this script |
I hereby claim:
To claim this, I am signing this object:
λ vagrant plugin install --debug /Users/temikus/Code/vagrant-dev/vagrant-google/pkg/vagrant-google-0.1.4.gem (1) | |
INFO global: Vagrant version: 1.7.2 | |
INFO global: Ruby version: 2.0.0 | |
INFO global: RubyGems version: 2.0.14 | |
INFO global: VAGRANT_EXECUTABLE="/opt/vagrant/bin/../embedded/gems/gems/vagrant-1.7.2/bin/vagrant" | |
INFO global: VAGRANT_INSTALLER_EMBEDDED_DIR="/opt/vagrant/bin/../embedded" | |
INFO global: VAGRANT_INSTALLER_VERSION="2" | |
INFO global: VAGRANT_DETECTED_OS="Darwin" | |
INFO global: VAGRANT_INSTALLER_ENV="1" | |
INFO global: VAGRANT_INTERNAL_BUNDLERIZED="1" |
terraform graph -draw-cycles -module-depth=-1 plan.tf | dot -Tpng > graph.png` |
# Common taps | |
tap "homebrew/cask-versions" | |
tap "homebrew/bundle" | |
tap "homebrew/cask" | |
tap "homebrew/cask-drivers" | |
tap "homebrew/core" | |
# Runtimes - python | |
brew "[email protected]" | |
brew "pylint" |