- In MIDI Control Center, set the KeyStep's "Hold Switch Function" to "Both".
- In either Sequencer or Arpeggiator mode, engage the Hold button.
Use Disk Utility.app to identify the drive number for the desired disk device. Then:
$ diskutil unmountDisk disk<n>
$ sudo newfs_msdos -F 16 /dev/disk<n>
$ diskutil mount /dev/disk<n>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
openssl s_client -host google.com -port 443 -prexit -showcerts |
a lil shell guide by mcandre
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"github.com/xwb1989/sqlparser" | |
"flag" | |
"fmt" | |
"io" | |
"io/ioutil" | |
"os" |
VBoxManage list ostypes
$ ifconfig en0 | awk '/inet / { print $2 }'
192.168.1.224
$ docker run \
--rm \
-e host=192.168.1.224 \
-p 8080:80 \
izdock/httpd
$ ifconfig en0 | awk '/inet / { print $2 }'
192.168.1.224
$ docker run -v "$(pwd):/home/vsftpd/admin" \
-p 20:20 \
-p 21:21 \
-p 21100-21110:21100-21110 \
-e FTP_USER=admin \
-e FTP_PASS=vagrant \
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
RUN chgrp -R 0 /src && \ | |
chmod -R g=u /src |