This file contains 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
// Disk N is the id of the external usb drive from the diskutil commands | |
// This transfers most files over except for the >4GB file, which we need to use 3rd party tool to split | |
// Double tap the Windows 11/10 iso to mount it, plug in the USB | |
brew install wimlib | |
diskutil list | |
diskutil eraseDisk MS-DOS "WINDOWS11" MBR diskN | |
ls /Volumes | |
rsync -avh --progress --exclude=sources/install.wim /Volumes/CCCOMA_X64FRE_EN-US_DV9/ /Volumes/WINDOWS11 |
This file contains 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
# Postgresql fancy datatypes! | |
* array | |
* hstore (=~ hash) | |
* json | |
* jsonb | |
Philippe Creux - [@pcreux](http://twitter.com/pcreux) |