Mini Searches with Answers

These are links associated with recent searches I’ve done. They’re not difficult enough to warrant to their own posts but still super useful.

favicon.ico Generator
this looks like a fresh, compelling favicon editor/creator. Try it out.

Python – How to view request message sent from urllib2
Here is how to do it for the simple case:

opener = urllib2.build_opener(urllib2.HTTPHandler(debuglevel=1))
urllib2.install_opener(opener)

But for using the HTTPBasicAuthHandler I had no clue, so I temporarily just hard coded debug levels in urllib2

Validator that tests whether an XML document matches an XSD document
You upload your XML file and your XSD (XML schema document) file and it tells you whether your XML validates to your XSD.

The softlimit program
softlimit runs another program with new resource limits. This might work when /etc/security/limits.conf doesn’t. I think limits.conf only works for logged in users?

friendsnippets.com – Snippet: A function to enumerate the items of a set product.
Example:
>>> list(enumerate_set_product([1,2],[1,2]))
[[1, 1], [2, 1], [1, 2], [2, 2]]

VectorMagic
This site traces bitmap images, turning them into beautiful vector art. Just upload your image and we will convert it for you.

Tags: , , , , , , , , , , , , , , , , , , , , , , , , , ,

Comments are closed.