paravz's comments

paravz | 6 months ago | on: %CPU utilization is a lie

Cpu utilization %% needs to be contrasted with a "business" metric like latency or RPS. Depending on the environment and hardware 40% can be too utilized or way underutilized

paravz | 1 year ago | on: MagiskSSH – SSH server on Android without Termux

my rsync backup use case over usb and adb (with adb root)

start rsync daemon: adb root adb forward tcp:6010 tcp:11873 adb shell "rsync --daemon --port 11873 --config=/sdcard/rsyncd.conf &"

rsync: rsync -rltHDhP --stats --size-only --append-verify --partial --delete rsync://localhost:6010/root/data/data/ /backup/data

cleanup: adb kill-server

/sdcard/rsyncd.conf for the phone: address = 127.0.0.1 uid = root gid = root [root] path = / read only = true

paravz | 1 year ago | on: Microsoft Word and Excel AI data scraping switched to opt-in by default

From the article:

>To do so, users must actively opt out by finding and disabling the feature in settings. The process requires unchecking the box 'Turn on optional connected experiences' that is enabled by default.

>On a Windows PC, the steps include going to File > Options > Trust Center > Trust Center Settings > Privacy Options > Privacy Settings > Optional Connected Experiences and unchecking the box.

paravz | 2 years ago | on: RAG to Riches

this type of marketing satire worked for me: 80% entertainment 20% substance

paravz | 3 years ago | on: CDC File Transfer

sounds like cdc_rsync should be a good replacement for rsync in a generic backup

paravz | 3 years ago | on: The various scripts I use to back up my home computers using SSH and rsync

I switched from Cygwin+rsync(over ssh) to robocopy+samba to speed up backups (up to saturating 1Gbit connection):

    for %i in (C D) do robocopy %i:\ \\backup-server\b-%COMPUTERNAME%\%i /MIR /DCOPY:T /NFL /NDL /R:0 /W:1 /XJ /XD "System Volume Informatiowsn" /XD "$RECYCLE.BIN" /XD "Windows" /XD "Windows.old"
page 1