- Use an iPod or an iPad without a SIM card
- Use an iPhone
- Do not jailbreak
- Always upgrade to new iOS versions
- Use Brave browser
# latest supported electron version as of october 2024 | |
LATEST_SUPPORTED_VERSION=30 | |
RED='\033[0;31m' | |
GREEN='\033[0;32m' | |
NC='\033[0m' # no color | |
mdfind "kind:app" 2>/dev/null | sort -u | while read app; | |
do | |
filename="$app/Contents/Frameworks/Electron Framework.framework/Electron Framework" | |
if [[ -f $filename ]]; then |
#!/bin/bash | |
# Paste at shell prompt (or download and execute) and get: | |
# | |
# sdc 9936 hours ( 1.13 years) 3.49TiB SAMSUNG MZ7KH3T8 | |
# nvme0n1 9936 hours ( 1.13 years) 3.49TiB SAMSUNG MZQLB3T8HALS-00007 | |
# sde 9932 hours ( 1.13 years) 4.55TiB ST5000LM000-2AN1 | |
# sdd 9931 hours ( 1.13 years) 4.55TiB ST5000LM000-2AN1 | |
# sdb 9617 hours ( 1.09 years) 0.01TiB SuperMicro SSD | |
# sda 9616 hours ( 1.09 years) 0.01TiB SuperMicro SSD |
#lang racket | |
;; printing s-exps as DCS and TDCS, plus examples of what DCS and TDCS look like | |
(define (dcs l) | |
(cond ((pair? l) | |
(begin | |
(display ".") | |
(dcs (car l)) | |
(dcs (cdr l)))) |
### | |
### | |
### UPDATE: For Win 11, I recommend using this tool in place of this script: | |
### https://christitus.com/windows-tool/ | |
### https://github.com/ChrisTitusTech/winutil | |
### https://www.youtube.com/watch?v=6UQZ5oQg8XA | |
### iwr -useb https://christitus.com/win | iex | |
### | |
### OR take a look at | |
### https://github.com/HotCakeX/Harden-Windows-Security |
Updated: Just use qutebrowser (and disable javascript). The web is done for.
Update (2019-05-06): The Broadcom wireless card in the MacBook Pro works and can be crammed into the Air.
Update (2015-12-04): This document used to be very lengthy as there were many manual steps required to get OpenBSD and Mac OS X working together through Boot Camp Assistant (BCA), which created a hybrid MBR and enabled a legacy BIOS emulation mode which older versions of Windows (and OpenBSD) required. Newer Macbooks stopped supporting older versions of Windows through BCA and now only support Windows 10 since it uses GPT and UEFI. However, now that newer versions of OpenBSD support GPT and UEFI, Boot Camp Assistant is no longer needed at all to boot OpenBSD.
OpenBSD works pretty well on at least the Mid-2011 Macbook Air (A1370, SandyBridge) and Mid-2013 Macbook Air (Haswell). The new KMS code in 5.4 brings up the MBA's eDP display in 1366x768 with backlight
#!/bin/bash | |
# pull apart a bzImage compressed with xz (or gzip), | |
# and put it back together in a format that pv-grub understands | |
# useful when your kernel is compressed but your pv-grub doesn't | |
# recognise it, for example rescue64 from system rescue cd. | |
# the result is *not* a bootable kernel outside of pv-grub | |
# worksforme on OS X, YMMV |
;; emacsd-tile.el -- tiling windows for emacs | |
(defun swap-with (dir) | |
(interactive) | |
(let ((other-window (windmove-find-other-window dir))) | |
(when other-window | |
(let* ((this-window (selected-window)) | |
(this-buffer (window-buffer this-window)) | |
(other-buffer (window-buffer other-window)) | |
(this-start (window-start this-window)) |