Skip to content

Instantly share code, notes, and snippets.

@vaddieg
vaddieg / gist:47538d297dc4f88fd9550e6c04be29dc
Last active November 11, 2022 13:56
TimeMachine over SMB
Hardware:
---------
USB3 HDD, a Router with USB port and SMB file sharing
Prep physical disk:
-------------------
Format 1 Volume exFAT, connect to router
Share it via SMB in Router settings
Prep a disk image:
@vaddieg
vaddieg / DLog
Created February 18, 2015 16:56
DLog() for swift
func DLog(format: String, args: CVarArgType) {
#if DEBUG
NSLog(format, args.encode())
#endif
}