User quilby - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T09:56:01Z http://stackoverflow.com/feeds/user/66950 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1191420/best-open-source-extendable-crawler-to-use-for-image-crawling 1 Best open source, extendable crawler to use for image crawling. quilby 2009-07-28T00:59:49Z 2009-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#1238486 1 Answer by quilby for Graph visualization code in javascript? quilby 2009-08-06T12:14:15Z 2009-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-language 0 Parse multimedia files out of an HTML page (any language) quilby 2009-07-09T16:34:37Z 2009-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 -2 How can I put multiple items into a NewEgg shopping cart? [closed] quilby 2009-07-24T23:56:10Z 2009-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-foo 0 Java : What is - public static<T> foo() {...} ? quilby 2009-07-07T15:46:47Z 2009-07-07T16:07:54Z <p>I saw a java function that looked something like this-</p> <pre><code>public static&lt;T&gt; 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-python 0 Decompile .swf file to get images in python quilby 2009-07-04T00:15:11Z 2009-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-black 1 Cleaning an image to only black quilby 2009-07-03T17:17:16Z 2009-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-proportions 1 Generating an image thumbnail that is <10KB and did not lose proportions quilby 2009-07-02T15:22:30Z 2009-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-python 2 Calling an external program from python quilby 2009-06-23T00:51:14Z 2009-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-dates 4 Generate a random date between two other dates. quilby 2009-02-16T13:30:04Z 2009-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#1093192 Comment by quilby on Java : What is - public static<T> foo() {...} ? quilby 2009-07-29T14:01:28Z 2009-07-29T14:01:28Z This is not relevant to my question. http://stackoverflow.com/questions/1093130/java-what-is-public-statict-foo Comment by quilby on Java : What is - public static<T> foo() {...} ? quilby 2009-07-29T14:00:34Z 2009-07-29T14:00:34Z Yes thats what I mean. http://stackoverflow.com/questions/1180723/how-can-i-put-multiple-items-into-a-newegg-shopping-cart/1180824#1180824 Comment by quilby on How can I put multiple items into a NewEgg shopping cart? quilby 2009-07-25T00:56:22Z 2009-07-25T00:56:22Z Yes 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-cart Comment by quilby on How can I put multiple items into a NewEgg shopping cart? quilby 2009-07-25T00:14:38Z 2009-07-25T00:14:38Z The 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-cart Comment by quilby on How can I put multiple items into a NewEgg shopping cart? quilby 2009-07-25T00:14:03Z 2009-07-25T00:14:03Z Really 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-cart Comment by quilby on How can I put multiple items into a NewEgg shopping cart? quilby 2009-07-25T00:08:58Z 2009-07-25T00:08:58Z This 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#1093214 Comment by quilby on Java : What is - public static<T> foo() {...} ? quilby 2009-07-07T17:05:11Z 2009-07-07T17:05:11Z Please see my edit http://stackoverflow.com/questions/1093130/java-what-is-public-statict-foo/1093180#1093180 Comment by quilby on Java : What is - public static<T> foo() {...} ? quilby 2009-07-07T16:08:07Z 2009-07-07T16:08:07Z Please see my edit. http://stackoverflow.com/questions/1075037/generating-an-image-thumbnail-that-is-10kb-and-did-not-lose-proportions/1075277#1075277 Comment by quilby on Generating an image thumbnail that is <10KB and did not lose proportions quilby 2009-07-02T16:53:28Z 2009-07-02T16:53:28Z Please see my edit. http://stackoverflow.com/questions/1075037/generating-an-image-thumbnail-that-is-10kb-and-did-not-lose-proportions/1075089#1075089 Comment by quilby on Generating an image thumbnail that is <10KB and did not lose proportions quilby 2009-07-02T16:47:26Z 2009-07-02T16:47:26Z Please see my edit. http://stackoverflow.com/questions/1075037/generating-an-image-thumbnail-that-is-10kb-and-did-not-lose-proportions/1075079#1075079 Comment by quilby on Generating an image thumbnail that is <10KB and did not lose proportions quilby 2009-07-02T16:44:16Z 2009-07-02T16:44:16Z Please see my edit. http://stackoverflow.com/questions/1075037/generating-an-image-thumbnail-that-is-10kb-and-did-not-lose-proportions Comment by quilby on Generating an image thumbnail that is <10KB and did not lose proportions quilby 2009-07-02T16:24:18Z 2009-07-02T16:24:18Z This is not a duplicate! As I have said in my &quot;EDIT&quot; 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#1022263 Comment by quilby on Generating a 3d captcha [pic] quilby 2009-06-21T09:44:42Z 2009-06-21T09:44:42Z Very 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#1021905 Comment by quilby on OCR graph paper quilby 2009-06-20T16:13:56Z 2009-06-20T16:13:56Z Are you sure it can take notes written on graph paper? http://stackoverflow.com/questions/1021900/ocr-graph-paper Comment by quilby on OCR graph paper quilby 2009-06-20T16:13:11Z 2009-06-20T16:13:11Z Hi 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.