http://swcdn.apple.com/content/downloads/49/44/041-08708/vtip954dc6zbkpdv16iw18jmilcqdt8uot/InstallAssistantAuto.smd
http://swcdn.apple.com/content/downloads/49/44/041-08708/vtip954dc6zbkpdv16iw18jmilcqdt8uot/OSInstall.mpkg
http://swcdn.apple.com/content/downloads/49/44/041-08708/vtip954dc6zbkpdv16iw18jmilcqdt8uot/InstallInfo.plist
http://swcdn.apple.com/content/downloads/49/44/041-08708/vtip954dc6zbkpdv16iw18jmilcqdt8uot/InstallESDDmg.chunklist
http://swcdn.apple.com/content/downloads/49/44/041-08708/vtip954dc6zbkpdv16iw18jmilcqdt8uot/MajorOSInfo.pkg
https://swdist.apple.com/content/downloads/49/44/041-08708/vtip954dc6zbkpdv16iw18jmilcqdt8uot/MajorOSInfo.pkm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# !/usr/bin/env python3 | |
# | |
# Convert flow records to sqlite3 database | |
# | |
# Author: Yun Zheng Hu <[email protected]> | |
import argparse | |
import logging | |
import sqlite3 | |
import sys |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# created with: | |
# mtree -c -p "/Applications/Install OS X El Capitan.app" -k type,mode,flags,md5digest,sha1digest,ripemd160digest | |
# | |
# check with: | |
# mtree -f /tmp/ElCapitan.mtree -p "/Applications/Install OS X El Capitan.app" | |
# | |
# user: yun | |
# tree: /Applications/Install OS X El Capitan.app | |
# date: Tue May 17 11:38:50 2016 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# created with: | |
# mtree -c -p "/Applications/Install OS X El Capitan.app" -k type,mode,flags,md5digest,sha1digest,ripemd160digest | |
# | |
# check with: | |
# mtree -f /tmp/ElCapitan.mtree -p "/Applications/Install OS X El Capitan.app" | |
# | |
# user: yun | |
# tree: /Applications/Install OS X El Capitan.app | |
# date: Sun May 1 18:18:28 2016 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# created with: | |
# mtree -c -p "/Applications/Install OS X El Capitan.app" -k type,mode,flags,md5digest,sha1digest | |
# | |
# check with: | |
# mtree -f /tmp/ElCapitan.mtree -p "/Applications/Install OS X El Capitan.app" | |
# | |
# user: yun | |
# tree: /Applications/Install OS X El Capitan.app | |
# date: Wed Oct 7 09:54:00 2015 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## ----------- ## | |
## Core tests. ## | |
## ----------- ## | |
configure:2735: checking for a BSD-compatible install | |
configure:2803: result: /usr/bin/install -c | |
configure:2814: checking whether build environment is sane | |
configure:2864: result: yes | |
configure:3005: checking for a thread-safe mkdir -p | |
configure:3044: result: ./install-sh -c -d |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ brew install -v --HEAD ledger | |
==> Installing ledger | |
==> Cloning https://github.com/jwiegley/ledger.git | |
Updating /Library/Caches/Homebrew/ledger--git | |
git remote set-url origin https://github.com/jwiegley/ledger.git | |
git fetch origin | |
==> Checking out branch next | |
git checkout origin/next | |
HEAD is now at 1809e63... Added a test harness error diagnostic | |
git checkout-index -a -f --prefix=/private/tmp/homebrew-ledger-HEAD-E6YH/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
reg add HKLM\SYSTEM\CurrentControlSet\Control\TimeZoneInformation /v RealTimeIsUniversal /t REG_DWORD /d 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import os.path | |
import csv | |
import stat | |
import pwd | |
import grp | |
import sys | |
import datetime | |
ospathjoin = os.path.join |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
""" | |
eicfg_remover.py | |
Based on Kai Liu's eicfg_remover.c @ http://code.kliu.org/misc/winisoutils/ | |
""" | |
import sys | |
from binascii import crc_hqx, hexlify |