Skip to content

Instantly share code, notes, and snippets.

View tomchuk's full-sized avatar

Tom Achtemichuk tomchuk

  • Helogen
  • Portland, ME
View GitHub Profile
@devnoname120
devnoname120 / My macOS setup.md
Last active December 3, 2025 00:16
My macOS setup

ℹ️ Enable iCloud end-to-end encryption:

  • Nobody knows that, but iCloud actually supports end-to-end encryption (see “Advanced Data Protection for iCloud”) but it’s disabled by default. If you care about data privacy, you should turn it on.
    • System settingsApple IDiCloud → Set Advanced Data Protection to On.
    • System settingsApple IDiCloud → Disable Access iCloud Data on the Web.
  • It supports almost all the native Apple apps, with the notable exceptions of iCloud Mail, Contacts, and Calendars. See official data protection matrix for more info.

Table of Contents

@tzickel
tzickel / cythoncheck.py
Created December 12, 2016 21:23
A simple script to check python projects for bugs via cython's static analysis...
from __future__ import print_function
import sys
import os
import subprocess
import shutil
import tempfile
import time
import hashlib
import argparse
try:
@bhang
bhang / install_graphite_statsd_ubuntu_precise.sh
Created May 15, 2012 17:41
Install Graphite and statsd on Ubuntu 12.04 LTS (Precise Pangolin)
#!/bin/bash
# node.js using PPA (for statsd)
sudo apt-get install python-software-properties
sudo apt-add-repository ppa:chris-lea/node.js
sudo apt-get update
sudo apt-get install nodejs npm
# Install git to get statsd
sudo apt-get install git