Skip to content

Instantly share code, notes, and snippets.

@tshinnic
tshinnic / valgrind_ff_pango.supp
Last active April 10, 2016 11:03
Valgrind suppression file for FontForge built with Pango
# The below suppressions suppress just about every entry that pango
# libraries could have contributed to. This is likely excessive... ;)
#
# We make good use of the wildcarding features of Valgrind. By using
# wildcarded library object filenames we can hope this source is
# portable to more systems.
# On one tested system (Ubuntu 14.04), these libraries are:
# /usr/lib/x86_64-linux-gnu/libpangocairo-1.0.so.0.3600.3
# /usr/lib/x86_64-linux-gnu/libpangoxft-1.0.so.0.3600.3
@KartikTalwar
KartikTalwar / Documentation.md
Last active April 13, 2024 23:09
Rsync over SSH - (40MB/s over 1GB NICs)

The fastest remote directory rsync over ssh archival I can muster (40MB/s over 1gb NICs)

This creates an archive that does the following:

rsync (Everyone seems to like -z, but it is much slower for me)

  • a: archive mode - rescursive, preserves owner, preserves permissions, preserves modification times, preserves group, copies symlinks as symlinks, preserves device files.
  • H: preserves hard-links
  • A: preserves ACLs