├── .gitignore ├── README.md ├── auth_db.py ├── board_id.py ├── cert_check.py ├── ck_passwords.py ├── consoleuser.py ├── corefoundation_example.py ├── diskman.py ├── firewall_status.py ├── generate_macaddress.py ├── genpass.py ├── get_ip.py ├── gethub.py ├── getwifi.py ├── incompatible_apps.py ├── ip_by_cidr.py ├── ip_primary_interface.py ├── lock_screen.py ├── logger.py ├── marketing_model.py ├── mount_shares.py ├── nvram.py ├── password_age.py ├── password_generator.py ├── pid_runtime.py ├── pyappvers.py ├── pybattery.py ├── pycidr.py ├── pydiskutil.py ├── pyfacter.py ├── pyfacts ├── pyioreg-objc.py ├── pyioreg.py ├── pynotify.py ├── pypkgutil.py ├── pypsutil.py ├── pyscreenrez.py ├── pysystemprofiler.py ├── pyvm.py ├── pywifi.py ├── re.py ├── renew_dhcp_lease.py ├── serial_uuid.py ├── set_spotlight_exclusions.py ├── softwareupdate_example.py ├── ssids.py ├── sysctl.py ├── verify_password.py ├── verify_password2.py ├── visible_apps.py ├── vm_status.py └── waitfornetwork.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | todo.txt 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilcote/pylab/HEAD/README.md -------------------------------------------------------------------------------- /auth_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilcote/pylab/HEAD/auth_db.py -------------------------------------------------------------------------------- /board_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilcote/pylab/HEAD/board_id.py -------------------------------------------------------------------------------- /cert_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilcote/pylab/HEAD/cert_check.py -------------------------------------------------------------------------------- /ck_passwords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilcote/pylab/HEAD/ck_passwords.py -------------------------------------------------------------------------------- /consoleuser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilcote/pylab/HEAD/consoleuser.py -------------------------------------------------------------------------------- /corefoundation_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilcote/pylab/HEAD/corefoundation_example.py -------------------------------------------------------------------------------- /diskman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilcote/pylab/HEAD/diskman.py -------------------------------------------------------------------------------- /firewall_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilcote/pylab/HEAD/firewall_status.py -------------------------------------------------------------------------------- /generate_macaddress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilcote/pylab/HEAD/generate_macaddress.py -------------------------------------------------------------------------------- /genpass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilcote/pylab/HEAD/genpass.py -------------------------------------------------------------------------------- /get_ip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilcote/pylab/HEAD/get_ip.py -------------------------------------------------------------------------------- /gethub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilcote/pylab/HEAD/gethub.py -------------------------------------------------------------------------------- /getwifi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilcote/pylab/HEAD/getwifi.py -------------------------------------------------------------------------------- /incompatible_apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilcote/pylab/HEAD/incompatible_apps.py -------------------------------------------------------------------------------- /ip_by_cidr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilcote/pylab/HEAD/ip_by_cidr.py -------------------------------------------------------------------------------- /ip_primary_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilcote/pylab/HEAD/ip_primary_interface.py -------------------------------------------------------------------------------- /lock_screen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilcote/pylab/HEAD/lock_screen.py -------------------------------------------------------------------------------- /logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilcote/pylab/HEAD/logger.py -------------------------------------------------------------------------------- /marketing_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilcote/pylab/HEAD/marketing_model.py -------------------------------------------------------------------------------- /mount_shares.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilcote/pylab/HEAD/mount_shares.py -------------------------------------------------------------------------------- /nvram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilcote/pylab/HEAD/nvram.py -------------------------------------------------------------------------------- /password_age.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilcote/pylab/HEAD/password_age.py -------------------------------------------------------------------------------- /password_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilcote/pylab/HEAD/password_generator.py -------------------------------------------------------------------------------- /pid_runtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilcote/pylab/HEAD/pid_runtime.py -------------------------------------------------------------------------------- /pyappvers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilcote/pylab/HEAD/pyappvers.py -------------------------------------------------------------------------------- /pybattery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilcote/pylab/HEAD/pybattery.py -------------------------------------------------------------------------------- /pycidr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilcote/pylab/HEAD/pycidr.py -------------------------------------------------------------------------------- /pydiskutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilcote/pylab/HEAD/pydiskutil.py -------------------------------------------------------------------------------- /pyfacter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilcote/pylab/HEAD/pyfacter.py -------------------------------------------------------------------------------- /pyfacts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilcote/pylab/HEAD/pyfacts -------------------------------------------------------------------------------- /pyioreg-objc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilcote/pylab/HEAD/pyioreg-objc.py -------------------------------------------------------------------------------- /pyioreg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilcote/pylab/HEAD/pyioreg.py -------------------------------------------------------------------------------- /pynotify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilcote/pylab/HEAD/pynotify.py -------------------------------------------------------------------------------- /pypkgutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilcote/pylab/HEAD/pypkgutil.py -------------------------------------------------------------------------------- /pypsutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilcote/pylab/HEAD/pypsutil.py -------------------------------------------------------------------------------- /pyscreenrez.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilcote/pylab/HEAD/pyscreenrez.py -------------------------------------------------------------------------------- /pysystemprofiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilcote/pylab/HEAD/pysystemprofiler.py -------------------------------------------------------------------------------- /pyvm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilcote/pylab/HEAD/pyvm.py -------------------------------------------------------------------------------- /pywifi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilcote/pylab/HEAD/pywifi.py -------------------------------------------------------------------------------- /re.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilcote/pylab/HEAD/re.py -------------------------------------------------------------------------------- /renew_dhcp_lease.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilcote/pylab/HEAD/renew_dhcp_lease.py -------------------------------------------------------------------------------- /serial_uuid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilcote/pylab/HEAD/serial_uuid.py -------------------------------------------------------------------------------- /set_spotlight_exclusions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilcote/pylab/HEAD/set_spotlight_exclusions.py -------------------------------------------------------------------------------- /softwareupdate_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilcote/pylab/HEAD/softwareupdate_example.py -------------------------------------------------------------------------------- /ssids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilcote/pylab/HEAD/ssids.py -------------------------------------------------------------------------------- /sysctl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilcote/pylab/HEAD/sysctl.py -------------------------------------------------------------------------------- /verify_password.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilcote/pylab/HEAD/verify_password.py -------------------------------------------------------------------------------- /verify_password2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilcote/pylab/HEAD/verify_password2.py -------------------------------------------------------------------------------- /visible_apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilcote/pylab/HEAD/visible_apps.py -------------------------------------------------------------------------------- /vm_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilcote/pylab/HEAD/vm_status.py -------------------------------------------------------------------------------- /waitfornetwork.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chilcote/pylab/HEAD/waitfornetwork.py --------------------------------------------------------------------------------