Getting a device UDID from .mobileconfig

I found that by using the above that Apache was being talked to by the Ipad/Iphone – The post by Kyle2011 at https://discussions.apple.com/thread/3089948?start=0&tstart=0 filled in the rest of the solution. Basically at the bottom of the retrieve.php page you need to redirect the browser to a directory by using a line similar to the following:- … Read more

Implement touch using Python?

Looks like this is new as of Python 3.4 – pathlib. from pathlib import Path Path(‘path/to/file.txt’).touch() This will create a file.txt at the path. — Path.touch(mode=0o777, exist_ok=True) Create a file at this given path. If mode is given, it is combined with the process’ umask value to determine the file mode and access flags. If … Read more