<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet type="text/xsl" href="http://www.hiveminds.co.uk/feed.xsl" ?>
<?xml-stylesheet type="text/css" href="http://www.hiveminds.co.uk/feed.css" ?>
<rss version="2.0" xml:base="http://www.hiveminds.co.uk">
<channel>
 <title>Hiveminds Magazine - classic asp</title>
 <link>http://www.hiveminds.co.uk/taxonomy/term/766/classic-asp</link>
 <description></description>
 <language>en</language>
 <copyright><![CDATA[Hiveminds Magazine copyrighted 2005-2006]]></copyright>
<item>
 <title>Soop Content Management Portal - Is it vaporware?</title>
 <link>http://www.hiveminds.co.uk/content/soop-content-management-portal-is-it-vaporware.html</link>
 <description><![CDATA[Even in this day and age their are people that promote vaporware. They seem to think that they are smarter and more crafty than other developers and seek to take advantage of newbies to the world of programming.
Such a project is the Soop Portal ASP project. It is quite litterally nothing but a scam. So if you are looking for a content management system written in Classic ASP don't waste your time with this bunch of con artists.
]]></description>
<comments>http://www.hiveminds.co.uk/content/soop-content-management-portal-is-it-vaporware.html#comment-form</comments>
 <category domain="http://www.hiveminds.co.uk/taxonomy/term/171">Open source</category>
 <category domain="http://www.hiveminds.co.uk/taxonomy/term/174">Opinion</category>
 <category domain="http://www.hiveminds.co.uk/taxonomy/term/840">bluff</category>
 <category domain="http://www.hiveminds.co.uk/taxonomy/term/766">classic asp</category>
 <category domain="http://www.hiveminds.co.uk/taxonomy/term/839">scam</category>
 <category domain="http://www.hiveminds.co.uk/taxonomy/term/842">vaporware</category>
<pubDate>Fri, 01 Aug 2008 01:09:55 -0700</pubDate>
<guid isPermaLink="true">http://www.hiveminds.co.uk/node/3914</guid>
</item>
<item>
 <title>Nukedit - A true open source CMS in Classsic ASP</title>
 <link>http://www.hiveminds.co.uk/content/nukedit-a-true-open-source-cms-in-classsic-asp.html</link>
 <description><![CDATA[Back in 2004 and even today web developers that use Microsoft technology are not willing to embrace the GNU/GPL system for open source software. So it is rare these days to find a mature open source content management system like Nukedit that has a Classic ASP code base. 
]]></description>
<comments>http://www.hiveminds.co.uk/content/nukedit-a-true-open-source-cms-in-classsic-asp.html#comment-form</comments>
 <category domain="http://www.hiveminds.co.uk/taxonomy/term/171">Open source</category>
 <category domain="http://www.hiveminds.co.uk/taxonomy/term/410">Review</category>
 <category domain="http://www.hiveminds.co.uk/taxonomy/term/841">asp.net mvc</category>
 <category domain="http://www.hiveminds.co.uk/taxonomy/term/766">classic asp</category>
 <category domain="http://www.hiveminds.co.uk/taxonomy/term/788">microsoft</category>
<pubDate>Fri, 01 Aug 2008 01:02:38 -0700</pubDate>
<guid isPermaLink="true">http://www.hiveminds.co.uk/node/3915</guid>
</item>
<item>
 <title>Capture video thumbnails with Classic  ASP</title>
 <link>http://www.hiveminds.co.uk/content/capture-video-thumbnails-with-classic-asp.html</link>
 <description><![CDATA[
Robert Simpson shows a way he found to get a Classic ASP script to interact with FFmpeg and create a thumbnail from the first frame of a video file without any user interaction or file manipulation.
It goes something like this:

User uploads a video file to his web server
User runs a specially prepared script
The script detects the file's type
A Wscript fires off a command to create the thumbnail and save it to a specified directory

The script looks something like this (see the attachment for more info):

&amp;lt;%option&amp;nbsp;explicitdim&amp;nbsp;sExecuteabledim&amp;nbsp;oShelldim&amp;nbsp;sVideoFilepathdim&amp;nbsp;sOutputFilepathdim&amp;nbsp;cmdsExecuteable&amp;nbsp;=&amp;nbsp;"ffmpeg.exe"sVideoFilepath&amp;nbsp;=&amp;nbsp;"sphere1.wmv"sOutputFilepath&amp;nbsp;=&amp;nbsp;"sphere.png"cmd&amp;nbsp;=&amp;nbsp;server.mappath(sExecuteable)&amp;nbsp;&amp;amp;&amp;nbsp;"&amp;nbsp;-y&amp;nbsp;-i&amp;nbsp;"""&amp;amp;&amp;nbsp;_server.mappath(sVideoFilepath)&amp;nbsp;&amp;amp;"""&amp;nbsp;-vframes&amp;nbsp;1&amp;nbsp;-an&amp;nbsp;_-vcodec&amp;nbsp;png&amp;nbsp;-f&amp;nbsp;rawvideo&amp;nbsp;-s&amp;nbsp;320x240&amp;nbsp;&amp;nbsp;"""&amp;amp;_server.mappath(sOutputFilepath)&amp;nbsp;&amp;amp;""""set&amp;nbsp;oShell&amp;nbsp;=&amp;nbsp;server.createobject("Wscript.Shell")oShell.run&amp;nbsp;cmdset&amp;nbsp;oShell&amp;nbsp;=&amp;nbsp;nothing%&amp;gt;

Note that this works off a specially compiled version of FFmpeg, so it may not work for everyone. And for all you non-Windows users, beware! I have no clue if it'll work for you.
Download the the files and save them on your web server. Then, execute the default.asp script through your browser.
]]></description>
<comments>http://www.hiveminds.co.uk/content/capture-video-thumbnails-with-classic-asp.html#comment-form</comments>
 <category domain="http://www.hiveminds.co.uk/taxonomy/term/164">Developer Zone</category>
 <category domain="http://www.hiveminds.co.uk/taxonomy/term/177">Tutorials</category>
 <category domain="http://www.hiveminds.co.uk/taxonomy/term/766">classic asp</category>
 <category domain="http://www.hiveminds.co.uk/taxonomy/term/834">ffmpeg</category>
 <category domain="http://www.hiveminds.co.uk/taxonomy/term/835">thumbnails</category>
 <category domain="http://www.hiveminds.co.uk/taxonomy/term/782">video</category>
<pubDate>Wed, 30 Jul 2008 08:49:31 -0700</pubDate>
<guid isPermaLink="true">http://www.hiveminds.co.uk/node/3913</guid>
</item>
<item>
 <title>FFmpeg compiled for windows</title>
 <link>http://www.hiveminds.co.uk/content/ffmpeg-compiled-for-windows.html</link>
 <description><![CDATA[This is a specially compiled version of FFmpeg designed to work with Robert Simpson's tutorial on how to use FFmpeg to create thumnails using Classic ASP
]]></description>
<comments>http://www.hiveminds.co.uk/content/ffmpeg-compiled-for-windows.html#comment-form</comments>
 <category domain="http://www.hiveminds.co.uk/taxonomy/term/411">File downloads</category>
 <category domain="http://www.hiveminds.co.uk/taxonomy/term/423">Open Source Applications</category>
 <category domain="http://www.hiveminds.co.uk/taxonomy/term/766">classic asp</category>
 <category domain="http://www.hiveminds.co.uk/taxonomy/term/834">ffmpeg</category>
 <category domain="http://www.hiveminds.co.uk/taxonomy/term/835">thumbnails</category>
 <category domain="http://www.hiveminds.co.uk/taxonomy/term/782">video</category>
<pubDate>Wed, 30 Jul 2008 07:47:00 -0700</pubDate>
<guid isPermaLink="true">http://www.hiveminds.co.uk/node/3912</guid>
</item>
<item>
 <title>Refactoring Classic ASP</title>
 <link>http://www.hiveminds.co.uk/content/refactoring-classic-asp.html</link>
 <description><![CDATA[Kurt Harriger puts out a call to Classic ASP programmers to share their experiences,techniques  and code when refactoring and testing for Classic ASP. Asp Refactoring is a creative commons wiki started by him and invites others to join in on the fun.]]></description>
<comments>http://www.hiveminds.co.uk/content/refactoring-classic-asp.html#comment-form</comments>
 <category domain="http://www.hiveminds.co.uk/taxonomy/term/173">Announcements</category>
 <category domain="http://www.hiveminds.co.uk/taxonomy/term/164">Developer Zone</category>
 <category domain="http://www.hiveminds.co.uk/taxonomy/term/766">classic asp</category>
 <category domain="http://www.hiveminds.co.uk/taxonomy/term/833">programming</category>
 <category domain="http://www.hiveminds.co.uk/taxonomy/term/832">refactoring</category>
<pubDate>Wed, 30 Jul 2008 06:43:00 -0700</pubDate>
<guid isPermaLink="true">http://www.hiveminds.co.uk/node/3911</guid>
</item>
<item>
 <title>A Simple Classic ASP and AJAX framework</title>
 <link>http://www.hiveminds.co.uk/content/a-simple-classic-asp-and-ajax-framework.html</link>
 <description><![CDATA[If you are using Classic ASP, but need to implement some AJAX effects your search is over. Here is a framework that will make building your first Classic ASP and AJAX enabled page easy and robust.
]]></description>
<comments>http://www.hiveminds.co.uk/content/a-simple-classic-asp-and-ajax-framework.html#comment-form</comments>
 <category domain="http://www.hiveminds.co.uk/taxonomy/term/441">AJAX</category>
 <category domain="http://www.hiveminds.co.uk/taxonomy/term/164">Developer Zone</category>
 <category domain="http://www.hiveminds.co.uk/taxonomy/term/177">Tutorials</category>
 <category domain="http://www.hiveminds.co.uk/taxonomy/term/766">classic asp</category>
 <category domain="http://www.hiveminds.co.uk/taxonomy/term/793">frameworks</category>
<pubDate>Fri, 18 Jul 2008 05:16:20 -0700</pubDate>
<guid isPermaLink="true">http://www.hiveminds.co.uk/node/3830</guid>
</item>
</channel>
</rss>
