Popular recipes by Timothy Makobu http://code.activestate.com/recipes/users/4165901/2012-11-27T04:13:29-08:00ActiveState Code RecipesTweet Google+ posts (Python)
2012-10-31T10:29:32-07:00Timothy Makobuhttp://code.activestate.com/recipes/users/4165901/http://code.activestate.com/recipes/578297-tweet-google-posts/
<p style="color: grey">
Python
recipe 578297
by <a href="/recipes/users/4165901/">Timothy Makobu</a>
(<a href="/recipes/tags/google/">google</a>, <a href="/recipes/tags/python/">python</a>, <a href="/recipes/tags/twitter/">twitter</a>).
Revision 2.
</p>
<p>Tweet public Google+ posts.</p>
<p>The SQLite table was created with: CREATE TABLE posts(post varchar(200) unique);</p>
CGI doc string reader (Python)
2010-04-13T14:06:06-07:00Timothy Makobuhttp://code.activestate.com/recipes/users/4165901/http://code.activestate.com/recipes/576850-cgi-doc-string-reader/
<p style="color: grey">
Python
recipe 576850
by <a href="/recipes/users/4165901/">Timothy Makobu</a>
(<a href="/recipes/tags/dosctring/">dosctring</a>, <a href="/recipes/tags/python_developer_tools/">python_developer_tools</a>).
Revision 10.
</p>
<p>Displays docstrings of attributes of the given Python module on a web browser.
Drop it into the cgi-bin of your web-server, and access it like this,
for example:</p>
<p><a href="http://localhost/cgi-bin/cgidir.py?m=socket" rel="nofollow">http://localhost/cgi-bin/cgidir.py?m=socket</a></p>
Tweet your GPS coordinates (Symbian) (Python)
2012-11-27T04:13:29-08:00Timothy Makobuhttp://code.activestate.com/recipes/users/4165901/http://code.activestate.com/recipes/576601-tweet-your-gps-coordinates-symbian/
<p style="color: grey">
Python
recipe 576601
by <a href="/recipes/users/4165901/">Timothy Makobu</a>
(<a href="/recipes/tags/gps/">gps</a>, <a href="/recipes/tags/mobile_development/">mobile_development</a>, <a href="/recipes/tags/pys60/">pys60</a>, <a href="/recipes/tags/sms/">sms</a>, <a href="/recipes/tags/symbian/">symbian</a>).
Revision 10.
</p>
<p>Tweet your GPS coordinates via SMS.</p>
<p>Environment:</p>
<ul>
<li>Phone: Nokia E71</li>
<li>PyS60: 2.0</li>
</ul>
Reverse DNS zone file generator (Python)
2010-04-13T14:04:46-07:00Timothy Makobuhttp://code.activestate.com/recipes/users/4165901/http://code.activestate.com/recipes/576560-reverse-dns-zone-file-generator/
<p style="color: grey">
Python
recipe 576560
by <a href="/recipes/users/4165901/">Timothy Makobu</a>
(<a href="/recipes/tags/dns/">dns</a>, <a href="/recipes/tags/isp/">isp</a>, <a href="/recipes/tags/reverse_dns/">reverse_dns</a>, <a href="/recipes/tags/reverse_dns_zone_file/">reverse_dns_zone_file</a>, <a href="/recipes/tags/zone_file/">zone_file</a>).
Revision 2.
</p>
<p>Generates reverse DNS zone files for a given subnet.</p>
NTFS DACL setter (Python)
2010-04-13T14:03:01-07:00Timothy Makobuhttp://code.activestate.com/recipes/users/4165901/http://code.activestate.com/recipes/576383-ntfs-dacl-setter/
<p style="color: grey">
Python
recipe 576383
by <a href="/recipes/users/4165901/">Timothy Makobu</a>
(<a href="/recipes/tags/set_windows_acl/">set_windows_acl</a>, <a href="/recipes/tags/windows_folder_permissions/">windows_folder_permissions</a>).
Revision 8.
</p>
<p>A script that sets an object's DACL on an NTFS partition, getting users from the active directory.
Dependencies:
* Tim Golden's active directory module <a href="http://timgolden.me.uk/python/active_directory.html" rel="nofollow">http://timgolden.me.uk/python/active_directory.html</a>
* fileacl.exe <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=723F64EA-34F0-4E6D-9A72-004D35DE4E64&displaylang=en" rel="nofollow">http://www.microsoft.com/downloads/details.aspx?FamilyID=723F64EA-34F0-4E6D-9A72-004D35DE4E64&displaylang=en</a></p>