User quilby - Stack Overflowmost recent 30 from stackoverflow.com2009-12-08T09:56:01Zhttp://stackoverflow.com/feeds/user/66950http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1191420/best-open-source-extendable-crawler-to-use-for-image-crawling1Best open source, extendable crawler to use for image crawling.quilby2009-07-28T00:59:49Z2009-08-08T19:44:47Z
<p>Hi-
We are in the starting phase of a project, and we are currently wondering
whether which crawler is the best choice for us.</p>
<p>Our project:</p>
<p>Basically, we're going to set up Hadoop and crawl the web for images.
We will then run our own indexing software on the images stored in HDFS
based on the Map/Reduce facility in Hadoop. We will not use other indexing
than our own.</p>
<p>Some particular questions:</p>
<ul>
<li>Which crawler will handle crawling for images best?</li>
<li>Which crawler will best adapt to a distributed crawling system, in which we
use many servers conducting crawling together?</li>
</ul>
<p>Right now these look like the 3 best options-</p>
<ul>
<li>Nutch: Known to scale. Doesn't look like the best option because it seems that is it tied closely to their text searching software.</li>
<li>Heritrix: Also scales. This one currently looks like the best option.</li>
<li>Scrapy: Has not been used on a large scale (not sure though). I dont know if it has the basic stuff like URL canonicalization. I would like to use this one because it is a python framework (I like python more than java), but I don't know if they have implemented the advanced features of a web crawler.</li>
</ul>
<p><strong>Summary:</strong></p>
<p>We need to get as many images as possible from the web. Which existing crawling framework is both scalable and efficient , but also the one which will be the easiest to modify to get only images?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/7034/graph-visualization-code-in-javascript/1238486#12384861Answer by quilby for Graph visualization code in javascript?quilby2009-08-06T12:14:15Z2009-08-06T12:14:15Z<p>Javascript for displaying graphs (nodes + edges):</p>
<p><a href="http://snipplr.com/view/1950/graph-javascript-framework-version-001/" rel="nofollow">http://snipplr.com/view/1950/graph-javascript-framework-version-001/</a></p>
http://stackoverflow.com/questions/1105046/parse-multimedia-files-out-of-an-html-page-any-language0Parse multimedia files out of an HTML page (any language)quilby2009-07-09T16:34:37Z2009-08-05T19:25:07Z
<p>Given an HTML page I would like to get all the 'x' files that are embedded in the HTML file or are linked by it, where 'x' equals:</p>
<ul>
<li>Images (JPG,PNG,GIF...)</li>
<li>Documents (Word, PowerPoint, PDF...)</li>
<li>Flash (.flv, .swf)</li>
</ul>
<p>How do I do this?</p>
<ol>
<li>So images are easy to extract because they are either linked to with a link ending in a (.png|.jpg|....) or they are embedded with an img tag. </li>
<li>Documents can not be embedded, they can only be linked to (with a link ending in a .doc|.ppt|.pdf|...). So they are also easy to get. </li>
</ol>
<p>Here is my problem:</p>
<p>How do I get the flash files that are embedded in webpages?</p>
<p>Please give me a pseudo-algorithm or a regex pattern.</p>
<p>If I am wrong in my points above (1. and 2.) please tell me so too.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1180723/how-can-i-put-multiple-items-into-a-newegg-shopping-cart-2How can I put multiple items into a NewEgg shopping cart? [closed]quilby2009-07-24T23:56:10Z2009-07-25T01:14:03Z
<p>I am a newegg.com affiliate. Sometimes when a user wants to buy a camera they also want to buy a couple of accessories. I would like to make it so that they can click a button on my site, which would somehow add the camera and the accessories to their newegg shopping cart without requiring them to manually add each.</p>
<p>Following that, I'd like to send them to the shopping cart page so that they can review their order.</p>
<p>Is this possible? If yes how?</p>
http://stackoverflow.com/questions/1093130/java-what-is-public-statict-foo0Java : What is - public static<T> foo() {...} ?quilby2009-07-07T15:46:47Z2009-07-07T16:07:54Z
<p>I saw a java function that looked something like this-</p>
<pre><code>public static<T> foo() {...}
</code></pre>
<p>I know what generics are but can someone explain the in this context? Who decides what T is equal to? Whats going on here?</p>
<p>EDIT: Can someone please show me an example of a function like this.</p>
http://stackoverflow.com/questions/1081183/decompile-swf-file-to-get-images-in-python0Decompile .swf file to get images in pythonquilby2009-07-04T00:15:11Z2009-07-04T01:31:22Z
<p>I would like to decompile a .swf file and get all the images from it, in python.</p>
<p>Are there any libraries that do this?</p>
http://stackoverflow.com/questions/1080219/cleaning-an-image-to-only-black1Cleaning an image to only blackquilby2009-07-03T17:17:16Z2009-07-03T18:42:59Z
<p>I have an image.</p>
<p>I would like to go over that image, pixel by pixel, and any pixel that is not black should be turned to white. How do I do this?</p>
<p>(Python).</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1075037/generating-an-image-thumbnail-that-is-10kb-and-did-not-lose-proportions1Generating an image thumbnail that is <10KB and did not lose proportionsquilby2009-07-02T15:22:30Z2009-07-03T03:44:26Z
<p>Notice how for every image that google indexes it has a small <a href="http://images.google.com/images?q=jeff+atwood" rel="nofollow">thumbnail</a>.
These thumbnails are:</p>
<ol>
<li>Less than 10KB in size.</li>
<li>The proportions of the width / height are the same as the ones in the original image.</li>
</ol>
<p>I would like to write a function (in python) that would take an image and create a thumbnail with these to properties. </p>
<p>EDIT:
So there are 3 answers right now and all of them are half right.</p>
<p>I need a function that not only resizes the image proportionally, but also makes sure the file size is smaller than 10KB. How do I do that?</p>
http://stackoverflow.com/questions/1030114/calling-an-external-program-from-python2Calling an external program from pythonquilby2009-06-23T00:51:14Z2009-06-23T04:09:27Z
<p>So I have this shell script:</p>
<pre><code>echo "Enter text to be classified, hit return to run classification."
read text
if [ `echo "$text" | sed -r 's/ +/ /g' | bin/stupidfilter data/c_rbf` = "1.000000" ]
then
echo "Text is not likely to be stupid."
fi
if [ `echo "$text" | sed -r 's/ +/ /g' | bin/stupidfilter data/c_rbf` = "0.000000" ]
then
echo "Text is likely to be stupid."
fi
</code></pre>
<p>I would like to write it in python. How do I do this?</p>
<p>(As you can see it uses the library <a href="http://stupidfilter.org/stupidfilter-0.2-1.tar.gz" rel="nofollow">http://stupidfilter.org/stupidfilter-0.2-1.tar.gz</a>)</p>
http://stackoverflow.com/questions/553303/generate-a-random-date-between-two-other-dates4Generate a random date between two other dates.quilby2009-02-16T13:30:04Z2009-02-16T15:12:40Z
<p>How would I generate a random date that has to be between two other given dates?
The functions signature should something like this-</p>
<pre><code>randomDate("1/1/2008 1:30 PM", "1/1/2009 4:50 AM", 0.34)
^ ^ ^
date generated has date generated has random number
to be after this to be before this
</code></pre>
<p>and would return a date such as-
"2/4/2008 7:20 PM"</p>
http://stackoverflow.com/questions/1093130/java-what-is-public-statict-foo/1093192#1093192Comment by quilby on Java : What is - public static<T> foo() {...} ?quilby2009-07-29T14:01:28Z2009-07-29T14:01:28ZThis is not relevant to my question.http://stackoverflow.com/questions/1093130/java-what-is-public-statict-fooComment by quilby on Java : What is - public static<T> foo() {...} ?quilby2009-07-29T14:00:34Z2009-07-29T14:00:34ZYes thats what I mean.http://stackoverflow.com/questions/1180723/how-can-i-put-multiple-items-into-a-newegg-shopping-cart/1180824#1180824Comment by quilby on How can I put multiple items into a NewEgg shopping cart?quilby2009-07-25T00:56:22Z2009-07-25T00:56:22ZYes it works. Can you show me what website you found this on?
Thanks!http://stackoverflow.com/questions/1180723/how-can-i-put-multiple-items-into-a-newegg-shopping-cartComment by quilby on How can I put multiple items into a NewEgg shopping cart?quilby2009-07-25T00:14:38Z2009-07-25T00:14:38ZThe user will know that 4 items will be added to their cart.http://stackoverflow.com/questions/1180723/how-can-i-put-multiple-items-into-a-newegg-shopping-cartComment by quilby on How can I put multiple items into a NewEgg shopping cart?quilby2009-07-25T00:14:03Z2009-07-25T00:14:03ZReally Peter? You would rather click 8 links (for every product you have to go to the product page and then click buy) than 1?
http://stackoverflow.com/questions/1180723/how-can-i-put-multiple-items-into-a-newegg-shopping-cartComment by quilby on How can I put multiple items into a NewEgg shopping cart?quilby2009-07-25T00:08:58Z2009-07-25T00:08:58ZThis is not shady at all. The user will be aware that this is happening, and instead of them having to click 8 links, the will click 1.http://stackoverflow.com/questions/1093130/java-what-is-public-statict-foo/1093214#1093214Comment by quilby on Java : What is - public static<T> foo() {...} ?quilby2009-07-07T17:05:11Z2009-07-07T17:05:11ZPlease see my edithttp://stackoverflow.com/questions/1093130/java-what-is-public-statict-foo/1093180#1093180Comment by quilby on Java : What is - public static<T> foo() {...} ?quilby2009-07-07T16:08:07Z2009-07-07T16:08:07ZPlease see my edit.http://stackoverflow.com/questions/1075037/generating-an-image-thumbnail-that-is-10kb-and-did-not-lose-proportions/1075277#1075277Comment by quilby on Generating an image thumbnail that is <10KB and did not lose proportionsquilby2009-07-02T16:53:28Z2009-07-02T16:53:28ZPlease see my edit.http://stackoverflow.com/questions/1075037/generating-an-image-thumbnail-that-is-10kb-and-did-not-lose-proportions/1075089#1075089Comment by quilby on Generating an image thumbnail that is <10KB and did not lose proportionsquilby2009-07-02T16:47:26Z2009-07-02T16:47:26ZPlease see my edit.
http://stackoverflow.com/questions/1075037/generating-an-image-thumbnail-that-is-10kb-and-did-not-lose-proportions/1075079#1075079Comment by quilby on Generating an image thumbnail that is <10KB and did not lose proportionsquilby2009-07-02T16:44:16Z2009-07-02T16:44:16ZPlease see my edit.http://stackoverflow.com/questions/1075037/generating-an-image-thumbnail-that-is-10kb-and-did-not-lose-proportionsComment by quilby on Generating an image thumbnail that is <10KB and did not lose proportionsquilby2009-07-02T16:24:18Z2009-07-02T16:24:18ZThis is not a duplicate! As I have said in my "EDIT" now, I need a function that will not only resize the image proportionally, but also it needs to make sure that the size is smaller than 10KB.http://stackoverflow.com/questions/1021721/generating-a-3d-captcha-pic/1022263#1022263Comment by quilby on Generating a 3d captcha [pic]quilby2009-06-21T09:44:42Z2009-06-21T09:44:42ZVery very nice. Exactly what I wanted. Thanks a lot! ( I got logged out, so I cant vote you for the answer :( ).http://stackoverflow.com/questions/1021900/ocr-graph-paper/1021905#1021905Comment by quilby on OCR graph paperquilby2009-06-20T16:13:56Z2009-06-20T16:13:56ZAre you sure it can take notes written on graph paper?http://stackoverflow.com/questions/1021900/ocr-graph-paperComment by quilby on OCR graph paperquilby2009-06-20T16:13:11Z2009-06-20T16:13:11ZHi this is robert again (I got logged out). I just scanned a notebook of notes from class which was written on graph paper. I would like to turn the pdf file I have into an html file.