Comments on: Webpage Thumbnails — Screenshots via Page Glimpse in JavaScript http://925html.com/code/webpage-thumbnails/ For those of us who work with the web daily. Sun, 16 Jan 2011 12:41:12 +0000 hourly 1 http://wordpress.org/?v=3.0.4 By: how to earn money http://925html.com/code/webpage-thumbnails/comment-page-1/#comment-787 how to earn money Mon, 25 Jan 2010 00:04:09 +0000 http://925html.com/?p=306#comment-787 Substantially, the article is really the greatest on this deserving topic. I fit in with your conclusions and will thirstily look forward to your upcoming updates. Just saying thanks will not just be sufficient, for the wonderful lucidity in your writing. I will directly grab your rss feed to stay abreast of any updates. Good work and much success in your business dealings! Substantially, the article is really the greatest on this deserving topic. I fit in with your conclusions and will thirstily look forward to your upcoming updates. Just saying thanks will not just be sufficient, for the wonderful lucidity in your writing. I will directly grab your rss feed to stay abreast of any updates. Good work and much success in your business dealings!

]]>
By: Generar Captura de pantalla con Ajax | Craftyman Blog http://925html.com/code/webpage-thumbnails/comment-page-1/#comment-607 Generar Captura de pantalla con Ajax | Craftyman Blog Fri, 02 Oct 2009 14:19:12 +0000 http://925html.com/?p=306#comment-607 [...] Thumbnails.js es una librería Javascript que utiliza la API de PageGlimpse para traer la captura de pantalla con una funcion en Javascript el cual utiliza los mismos parametros que la url. [...] [...] Thumbnails.js es una librería Javascript que utiliza la API de PageGlimpse para traer la captura de pantalla con una funcion en Javascript el cual utiliza los mismos parametros que la url. [...]

]]>
By: Jigg http://925html.com/code/webpage-thumbnails/comment-page-1/#comment-606 Jigg Wed, 23 Sep 2009 18:53:04 +0000 http://925html.com/?p=306#comment-606 I found http://www.sitethumbshot.com/ through search engine. It looks promising. Comments or feedback. It looks cheap as well (http://www.sitethumbshot.com/premium_service.php). I found http://www.sitethumbshot.com/ through search engine. It looks promising. Comments or feedback. It looks cheap as well (http://www.sitethumbshot.com/premium_service.php).

]]>
By: Alternatives to Amazon’s Deceased Alexa Thumbnail Service? Just Make Your Own! : Marc Mezzacca http://925html.com/code/webpage-thumbnails/comment-page-1/#comment-590 Alternatives to Amazon’s Deceased Alexa Thumbnail Service? Just Make Your Own! : Marc Mezzacca Mon, 13 Jul 2009 11:47:31 +0000 http://925html.com/?p=306#comment-590 [...] also came across a really good writeup about the whole Amazon deal, transitioning to the PageGlimpse API, and using JavaScript.  [...] [...] also came across a really good writeup about the whole Amazon deal, transitioning to the PageGlimpse API, and using JavaScript.  [...]

]]>
By: AD Design http://925html.com/code/webpage-thumbnails/comment-page-1/#comment-342 AD Design Wed, 10 Jun 2009 04:59:45 +0000 http://925html.com/?p=306#comment-342 I though i might add this, this is PHP5 only code which i used to pull the images from the pageglimpse and copy them to my server - not that i dont believe they will continue with the free service :D http://gist.github.com/127449 I though i might add this, this is PHP5 only code which i used to pull the images from the pageglimpse and copy them to my server – not that i dont believe they will continue with the free service :D

http://gist.github.com/127449

]]>
By: Andrew http://925html.com/code/webpage-thumbnails/comment-page-1/#comment-174 Andrew Mon, 20 Apr 2009 01:12:32 +0000 http://925html.com/?p=306#comment-174 Thanks Eric, not trivial for me! I think I'll have to wait until someone/radsense produce a simple implementation like websnapr's. :) Thanks Eric, not trivial for me! I think I’ll have to wait until someone/radsense produce a simple implementation like websnapr’s.

:)

]]>
By: Eric Ferraiuolo http://925html.com/code/webpage-thumbnails/comment-page-1/#comment-173 Eric Ferraiuolo Mon, 20 Apr 2009 00:24:52 +0000 http://925html.com/?p=306#comment-173 <strong>@Andrew</strong> Adding a class attribute to the image DOM Node would be trivial using any JavaScript library. The <code>callback function</code> passed to the <code>get method</code> will be passed a standard <a href="http://www.quirksmode.org/dom/intro.html" rel="nofollow">DOM Node</a> representing the thumbnail; the client can do what they want with this node. In my example I'm wrapping it with an anchor (link) Node and appending it to the DOM. @Andrew Adding a class attribute to the image DOM Node would be trivial using any JavaScript library. The callback function passed to the get method will be passed a standard DOM Node representing the thumbnail; the client can do what they want with this node. In my example I’m wrapping it with an anchor (link) Node and appending it to the DOM.

]]>
By: Andrew http://925html.com/code/webpage-thumbnails/comment-page-1/#comment-172 Andrew Sun, 19 Apr 2009 22:34:13 +0000 http://925html.com/?p=306#comment-172 This looks fantastic. I'm pretty lame at js, is there any plan for allowing some type of hookup so a class name can be placed near any url's we choose to have 'pageglimpsed' to make it even easier to integrate? This looks fantastic. I’m pretty lame at js, is there any plan for allowing some type of hookup so a class name can be placed near any url’s we choose to have ‘pageglimpsed’ to make it even easier to integrate?

]]>
By: Eric Ferraiuolo http://925html.com/code/webpage-thumbnails/comment-page-1/#comment-154 Eric Ferraiuolo Fri, 17 Apr 2009 16:07:21 +0000 http://925html.com/?p=306#comment-154 <strong>@Marcio</strong> Since XDRs in JavaScript are still pretty hairy, I would have to create a server-side proxy to send off the requests to you guys for the <code>exist</code> API call (which appears to be what Adjix.com is doing via a DNS A record) and call my poxy via XHRs (which I would prefer not to do). <a href="http://www.ibm.com/developerworks/library/wa-aj-jsonp1/" rel="nofollow"><strong>JSONP</strong></a> is an extension to JSON; basically adding the idea of function callbacks— making it more like JavaScript. The response's <code>Content-Type</code> would also have to be <code>text/javascript</code> since a <code>script</code> node would have it's <code>src</code> attribute making the API call. The contents of the script tag would then be the response body (JSON) as the argument to the callback function specified in the request's query-parameter. @Marcio Since XDRs in JavaScript are still pretty hairy, I would have to create a server-side proxy to send off the requests to you guys for the exist API call (which appears to be what Adjix.com is doing via a DNS A record) and call my poxy via XHRs (which I would prefer not to do).

JSONP is an extension to JSON; basically adding the idea of function callbacks— making it more like JavaScript. The response’s Content-Type would also have to be text/javascript since a script node would have it’s src attribute making the API call. The contents of the script tag would then be the response body (JSON) as the argument to the callback function specified in the request’s query-parameter.

]]>
By: Marcio Castilho http://925html.com/code/webpage-thumbnails/comment-page-1/#comment-152 Marcio Castilho Fri, 17 Apr 2009 15:50:27 +0000 http://925html.com/?p=306#comment-152 Follow us on Twitter at http://twitter.com/pageglimpse Follow us on Twitter at http://twitter.com/pageglimpse

]]>