exFAT support on macOS seems to have some bugs because my external drives with exFAT formatting will randomly get corrupted.
If Disk Utility is unable to repair, consider trying this:
- In Disk Utility, ensure that the drive is not mounted, eject it if it is mounted.
- Use
diskutil listto find the right drive id. - You want the id under the IDENTIFIER column, it should look like
disk1s1 - Run
sudo fsck_exfat -d <id from above>. egsudo fsck_exfat -d disk1s3 -dis debug so you'll see all your files output as they're processed.
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
A handy way to get around DI.fm's new restriction on third-party media players.
You can find a list of all the channels here. Change the CHANNEL variable to adjust the channel to listen to.
This originally comes from http://hackedtogether.blogspot.nl/2016/03/listen-to-difm-streams-with-vlc-as-free.html, but I've modified it a bit to no longer hardcode a path to VLC.
| # Install QEMU OSX port with ARM support | |
| sudo port install qemu +target_arm | |
| export QEMU=$(which qemu-system-arm) | |
| # Dowload kernel and export location | |
| curl -OL \ | |
| https://github.com/dhruvvyas90/qemu-rpi-kernel/blob/master/kernel-qemu-4.1.7-jessie | |
| export RPI_KERNEL=./kernel-qemu-4.1.7-jessie | |
| # Download filesystem and export location |
If you don't have homebrew installed - get homebrew here
Then run: brew install elasticsearch
Update the elasticsearch configuration file in /usr/local/etc/elasticsearch/elasticsearch.yml.
| # allows autocomplete to be used with search history, so typing git c and then up arrow would | |
| # bring up your history options that started with git c . WAAAAY faster. | |
| "\e[A": history-search-backward | |
| "\e[B": history-search-forward | |
| "\e[1;9D": backward-word | |
| "\e[1;9C": forward-word | |
| # non-case-sensative autocomplete, | |
| set show-all-if-ambiguous on |