Saturday, February 4, 2017

Preparing to format a Windows device using a Macintosh device

Task (-1): Choosing Windows OS Version

Task 0: Preparing the Mac, check disk storage, connect storage device as source of Build Image (ISO file).
Task 1: Find the fastest USB drives with enough disk space, (try USB 3.0)

diskutil list

Task 2: Preparing the USB device


sudo dd if=/Volumes/MAC/iOSTools/Windows/Windows\ 7/"Windows 7 Ultimate x64 64-Bit Build 7600.iso" of=/dev/rdisk2 bs=1m

Task 3: Preparing the Windows device, backing it up! (is USB 4.0/3.1 already out there? bings... duckduckgo)

Task 4: Formatting it!

Task 5: Coffee & Code?

Going one step further with Kotlin & gRPC

Recently, I tried using Quarkus with Kotlin for grpc. I have worked with grpc for communication between microservices in Java & Golang. ...