- Open the Terminal Application
- Type in
sudo -iand type in your Mac Administrator account password.sudogives you root level or administrator level privileges.
dsconfigad -show
sudo -i and type in your Mac Administrator account password. sudo gives you root level or administrator level privileges.dsconfigad -show
| Verifying that +phillpafford is my blockchain ID. https://onename.com/phillpafford |
| #!/bin/bash | |
| # $1 => Slack hook URL | |
| # $2 => Channel name | |
| # $3 => URL to web repo browser for base project | |
| slack_url="$1" | |
| channel="$2" | |
| browser_url="$3" | |
| # Debugging output in /tmp/stash_slack.txt |
This is a short article on how we integrate stash and slack in openmind
First of all i assume you have:
| (* | |
| Speed up Mail.app by vacuuming the Envelope Index | |
| Code from: http://www.hawkwings.net/2007/03/03/scripts-to-automate-the-mailapp-envelope-speed-trick/ | |
| Originally by "pmbuko" with modifications by Romulo | |
| Updated by Brett Terpstra 2012 <http://brettterpstra.com> | |
| *) | |
| tell application "Mail" to quit | |
| set sizeBefore to do shell script "ls -lah ~/Library/Mail/V2/MailData | grep -E 'Envelope Index$' | awk {'print $5'}" | |
| do shell script "/usr/bin/sqlite3 ~/Library/Mail/V2/MailData/Envelope\\ Index vacuum" |
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/sh | |
| # NOTE: To execute this script: bash install_mcrypt.sh | |
| # Pre Reqs, These are important!!! | |
| # Install xCode | |
| # Launch xCode and open Preferences | |
| # Select the Downloads Tab in the Preference Panel | |
| # Under Components install Command Line Tools |
| # Must give props to Plamoni | |
| https://gist.github.com/plamoni/1428474 | |
| # Additional props to Elvis as I'm pulling some steps from his installation process which you can find here: | |
| https://gist.github.com/elvisimprsntr/3985559 | |
| # READ if you need | |
| https://help.ubuntu.com/community/VimHowto ( This works for vi command as well ) | |
| # START HERE <------------------------------------------------------------ |