Skip to content

Instantly share code, notes, and snippets.

View eigenhombre's full-sized avatar

John Jacobsen eigenhombre

View GitHub Profile
My Apple devices started stating "incorrect password" for my network, even though they had conncted previously.
So how to fix Unifi network "incorrect password" error on iPhone, iPod, iPad and Macbook pro?
The reason for the error is the WiFi management done on iOS devices.
The default settings for the Unifi AP range are not compatible with iOS 11 and 12 and OSX High Sierra (and maybe more).
The reason for the error is the "DTIM Mode" (beacon timing) setting for power saving.
@eigenhombre
eigenhombre / boiler.py
Last active December 18, 2015 13:09 — forked from mrocklin/slotted.py
class Boiler(object):
""" Boilerplate for standard Python class
>>> class Account(Boiler):
... __slots__ = ['first', 'last', 'id', 'balance']
...
... def name(self):
... return "%s %s" (self.first, self.last)
>>> guido = Account('Guido', 'van Rossum', 0, 1000.)
"""