I hereby claim:
- I am tcurdt on github.
- I am tcurdt (https://keybase.io/tcurdt) on keybase.
- I have a public key whose fingerprint is 3909 C287 9232 7FAD 3810 0EAF 0463 3A57 7C20 0941
To claim this, I am signing this object:
#!/bin/bash | |
mkdir -p ~/.ssh | |
chmod 700 ~/.ssh | |
echo "ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEA2CLOzyXcqk4uo6hCkkQAtozJCebA/Dh4ps6Vr2GVNTC7j7nF5HuT+penp/Y9yPAuTorxunmFn7BPwZggzopEgfmUQ4gf0CysTwPQMxt9yK3ZHpxgkGoJyR0n91OdPAbukqwWZHYxGGxvHNoap59kobUrIImIa97gKxW+IVKwL9iyWXyqonRpue1mf1N1ioDtPLS1yvzf4Jo7aDND+4I/34X6436VwZItUwzvhFcuNh/gQmvKpmVjD+ED2Q/yRtGq0EzsPfrDZg1ZKV5V1cT/3w7QtYFcZB9+AQxq88jVRcIlf3K45kpmbsWVfBFN6ND+NeZK1mlp/3TV8C6dNVqU2w== [email protected]" >> ~/.ssh/authorized_keys | |
chmod 600 ~/.ssh/authorized_keys | |
echo "SSH key has been added to authorized_keys." |
#!/bin/bash | |
# Sign a file with a private key using OpenSSL | |
# Encode the signature in Base64 format | |
# | |
# Usage: sign <file> <private_key> | |
# | |
# NOTE: to generate a public/private key use the following commands: | |
# | |
# openssl genrsa -aes128 -passout pass:<passphrase> -out private.pem 2048 | |
# openssl rsa -in private.pem -passin pass:<passphrase> -pubout -out public.pem |
#!/bin/bash | |
#get current xcode uuid | |
UUID=$(defaults read /Applications/Xcode.app/Contents/Info DVTPlugInCompatibilityUUID) | |
#update spark inspector uuid | |
defaults write ~/Library/Application\ Support/Developer/Shared/Xcode/Plug-ins/SparkInspectorXcodePlugin.xcplugin/Contents/Info.plist DVTPlugInCompatibilityUUIDs -array-add $UUID |
I hereby claim:
To claim this, I am signing this object:
<target name="package" depends="jar"> | |
<taskdef name="deb" classname="org.vafer.jdeb.ant.DebAntTask"/> | |
<deb destfile="${build.dir}/${ant.project.name}.deb" verbose="true"> | |
<control> | |
<package>(no default)</package> | |
<version>(no default)</version> | |
<section>(default 'misc')</section> | |
<priority>(default 'low')</priority> | |
<architecture>(default 'all')</architecture> |