<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>AdvancedIdeaMechanics ~ RnD</title>
	<atom:link href="http://www.advancedideamechanics.org/RnD/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.advancedideamechanics.org/RnD</link>
	<description>Memo No. -</description>
	<lastBuildDate>Wed, 23 Nov 2011 17:32:01 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Find N Mount</title>
		<link>http://www.advancedideamechanics.org/RnD/2011/11/23/find-n-mount/</link>
		<comments>http://www.advancedideamechanics.org/RnD/2011/11/23/find-n-mount/#comments</comments>
		<pubDate>Wed, 23 Nov 2011 17:29:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.advancedideamechanics.org/RnD/?p=97</guid>
		<description><![CDATA[I had a little trouble at work yesterday. A user&#8217;s HD showed in Windows7 as RAW format even though I knew that the data was there. She did not reformat or delete anything. This indicated a problem with the partition table. Anyhow, this program (FINDnMount) let me restore the partition table and mount the drive to [...]]]></description>
			<content:encoded><![CDATA[<p>I had a little trouble at work yesterday. A user&#8217;s HD showed in Windows7 as RAW format even though I knew that the data was there. She did not reformat or delete anything. This indicated a problem with the partition table.</p>
<p>Anyhow, this program (<a href="http://findandmount.com/">FINDnMount</a>) let me restore the partition table and mount the drive to retrieve all the data. It is FREE, and only works on the partition tables. This makes it much faster to restore data than trying to use one of those UNdelete programs.</p>
<p>Windows 7 FAT and NTFS only.</p>
<p><strong>More about partition tables ==============================================================</strong></p>
<p>NTFS contains several files which define and organize the file system. In all respects, most of these files are structured like any other user file ($Volume being the most peculiar), but are not of direct interest to file system clients. These metafiles define files, back up critical file system data, buffer file system changes, manage free space allocation, satisfy <a title="BIOS" href="http://en.wikipedia.org/wiki/BIOS">BIOS</a>expectations, track bad allocation units, and store security and disk space usage information. All content is in an unnamed data stream, unless otherwise indicated.</p>
<table>
<thead>
<tr>
<th title="Sort ascending">Segment Number</th>
<th title="Sort ascending">File Name</th>
<th title="Sort ascending">Purpose</th>
</tr>
</thead>
<tbody>
<tr>
<td>0</td>
<td><tt>$MFT</tt></td>
<td>Describes all files on the volume, including file names, timestamps, stream names, and lists of cluster numbers where data streams reside, indexes, <a title="Security identifier" href="http://en.wikipedia.org/wiki/Security_identifier">security identifiers</a>, and file attributes like &#8220;read only&#8221;, &#8220;compressed&#8221;, &#8220;encrypted&#8221;, etc.</td>
</tr>
<tr>
<td>1</td>
<td><tt>$MFTMirr</tt></td>
<td>Duplicate of the first vital entries of $MFT, usually 4 entries (4 <a title="Kilobyte" href="http://en.wikipedia.org/wiki/Kilobyte">Kilobyte</a>).</td>
</tr>
<tr>
<td>2</td>
<td><tt>$LogFile</tt></td>
<td>Contains transaction log of file system metadata changes.</td>
</tr>
<tr>
<td>3</td>
<td><tt>$Volume</tt></td>
<td>Contains information about the volume, namely the volume object identifier, <a title="Volume label" href="http://en.wikipedia.org/wiki/Volume_label">volume label</a>, file system version, and volume flags (mounted, chkdsk requested, requested $LogFile resize, mounted on NT 4, volume serial number updating, structure upgrade request). This data is not stored in a data stream, but in special MFT attributes: If present, a volume object ID is stored in an $OBJECT_ID record; the volume label is stored in a $VOLUME_NAME record, and the remaining volume data is in a $VOLUME_INFORMATION record. Note: volume serial number is stored in file $Boot (below).</td>
</tr>
<tr>
<td>4</td>
<td><tt>$AttrDef</tt></td>
<td>A table of MFT attributes which associates numeric identifiers with names.</td>
</tr>
<tr>
<td>5</td>
<td><tt>.</tt></td>
<td><a title="Root directory" href="http://en.wikipedia.org/wiki/Root_directory">Root directory</a>. Directory data is stored in $INDEX_ROOT and $INDEX_ALLOCATION attributes both named $I30.</td>
</tr>
<tr>
<td>6</td>
<td><tt>$Bitmap</tt></td>
<td>An array of bit entries: each bit indicates whether its corresponding cluster is used (allocated) or free (available for allocation).</td>
</tr>
<tr>
<td>7</td>
<td><tt>$Boot</tt></td>
<td><a title="Volume boot record" href="http://en.wikipedia.org/wiki/Volume_boot_record">Volume boot record</a>. This file is always located at the first clusters on the volume. It contains <a title="Bootstrap code (page does not exist)" href="http://en.wikipedia.org/w/index.php?title=Bootstrap_code&amp;action=edit&amp;redlink=1">bootstrap code</a> (see <a title="NTLDR" href="http://en.wikipedia.org/wiki/NTLDR">NTLDR</a>/<a title="Windows Vista startup process" href="http://en.wikipedia.org/wiki/Windows_Vista_startup_process#Windows_Boot_Manager">BOOTMGR</a>) and a<a title="BIOS parameter block" href="http://en.wikipedia.org/wiki/BIOS_parameter_block">BIOS parameter block</a> including a <a title="Volume serial number" href="http://en.wikipedia.org/wiki/Volume_serial_number">volume serial number</a> and cluster numbers of $MFT and $MFTMirr. $Boot is usually 8192 bytes long.<sup>[<em><a title="Wikipedia:Citation needed" href="http://en.wikipedia.org/wiki/Wikipedia:Citation_needed">citation needed</a></em>]</sup></td>
</tr>
<tr>
<td>8</td>
<td><tt>$BadClus</tt></td>
<td>A file which contains all the clusters marked as having <a title="Bad sector" href="http://en.wikipedia.org/wiki/Bad_sector">bad sectors</a>. This file simplifies cluster management by the chkdsk utility, both as a place to put newly discovered bad sectors, and for identifying unreferenced clusters. This file contains two data streams, even on volumes with no bad sectors: an unnamed stream contains bad sectors—it is zero length for perfect volumes; the second stream is named $Bad and contains all clusters on the volume not in the first stream.<sup id="cite_ref-48"><a href="http://en.wikipedia.org/wiki/NTFS#cite_note-48">[49]</a></sup></td>
</tr>
<tr>
<td>9</td>
<td><tt>$Secure</tt></td>
<td><a title="Access control list" href="http://en.wikipedia.org/wiki/Access_control_list">Access control list</a> database which reduces overhead having many identical ACLs stored with each file, by uniquely storing these ACLs in this database only (contains two indices: $SII <em>(Standard_Information ID)</em> and $SDH <em>(<a title="Security Descriptor" href="http://en.wikipedia.org/wiki/Security_Descriptor">Security Descriptor</a> Hash)</em> which index the stream named $SDS containing actual ACL table).<sup id="cite_ref-insidewin2kntfs_1-4"><a href="http://en.wikipedia.org/wiki/NTFS#cite_note-insidewin2kntfs-1">[2]</a></sup></td>
</tr>
<tr>
<td>10</td>
<td><tt>$UpCase</tt></td>
<td>A table of unicode uppercase characters for ensuring case insensitivity in Win32 and DOS namespaces.</td>
</tr>
<tr>
<td>11</td>
<td><tt>$Extend</tt></td>
<td>A filesystem directory containing various optional extensions, such as $Quota, $ObjId, $Reparse or $UsnJrnl.</td>
</tr>
<tr>
<td>12 &#8230; 23</td>
<td colspan="2">Reserved for $MFT extension entries.<sup id="cite_ref-49"><a href="http://en.wikipedia.org/wiki/NTFS#cite_note-49">[50]</a></sup></td>
</tr>
<tr>
<td>usually 24</td>
<td><tt>$Extend\$Quota</tt></td>
<td>Holds disk quota information. Contains two index roots, named $O and $Q.</td>
</tr>
<tr>
<td>usually 25</td>
<td><tt>$Extend\$ObjId</tt></td>
<td>Holds <a title="Distributed link tracking (page does not exist)" href="http://en.wikipedia.org/w/index.php?title=Distributed_link_tracking&amp;action=edit&amp;redlink=1">distributed link tracking</a> information. Contains an index root and allocation named $O.</td>
</tr>
<tr>
<td>usually 26</td>
<td><tt>$Extend\$Reparse</tt></td>
<td>Holds <a title="Reparse point" href="http://en.wikipedia.org/wiki/Reparse_point">reparse point</a> data (such as <a title="Symbolic link" href="http://en.wikipedia.org/wiki/Symbolic_link">symbolic links</a>). Contains an index root and allocation named $R.</td>
</tr>
<tr>
<td><em>27 &#8230;</em></td>
<td><tt><em>file.ext</em></tt></td>
<td>Beginning of regular file entries.</td>
</tr>
</tbody>
</table>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.advancedideamechanics.org/RnD/2011/11/23/find-n-mount/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IE Reset</title>
		<link>http://www.advancedideamechanics.org/RnD/2011/11/11/ie-reset/</link>
		<comments>http://www.advancedideamechanics.org/RnD/2011/11/11/ie-reset/#comments</comments>
		<pubDate>Fri, 11 Nov 2011 23:03:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.advancedideamechanics.org/RnD/?p=88</guid>
		<description><![CDATA[Here is a handy batch file that will delete all activex objects and Temporary Internet Files from IE. This is tested and working on Windows7 with IE8. WINDOWS ONLY &#8211; NO INSTALL Download IEreset.bat]]></description>
			<content:encoded><![CDATA[<p>Here is a handy batch file that will delete all activex objects and Temporary Internet Files from IE. This is tested and working on Windows7 with IE8.</p>
<p>WINDOWS ONLY &#8211; NO INSTALL</p>
<p>Download<a href="http://advancedideamechanics.org/downloads/IEreset.zip"> IEreset.bat</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.advancedideamechanics.org/RnD/2011/11/11/ie-reset/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Outlook Cleanup</title>
		<link>http://www.advancedideamechanics.org/RnD/2011/11/10/outlook-cleanup/</link>
		<comments>http://www.advancedideamechanics.org/RnD/2011/11/10/outlook-cleanup/#comments</comments>
		<pubDate>Thu, 10 Nov 2011 01:35:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.advancedideamechanics.org/RnD/?p=85</guid>
		<description><![CDATA[Can’t create file: xxxxx.doc This error creeps up in Outlook 2007 and 2010. By default, Outlook stores email attachments in a temp file before unleashing them on your file system. If an attachment with the same name is opened 99 times, the software has trouble writing to the temp folder. Hence, the error above. Use [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Can’t create file</strong>: xxxxx.doc</p>
<p>This error creeps up in Outlook 2007 and 2010. By default, Outlook stores email attachments in a temp file before unleashing them on your file system. If an attachment with the same name is opened 99 times, the software has trouble writing to the temp folder. Hence, the error above. Use this script to clear out the temp file and restore functionality to Outlook. Nothing can be done about the terrible ribbon UI though (<a href="http://advancedideamechanics.org/downloads/classictab2010.zip">or can it?</a>)</p>
<p>&nbsp;</p>
<p><a href="http://advancedideamechanics.org/downloads/OLK_PURGER.zip">Download OLK_PURGER.BAT</a></p>
<p>written by Inferno666</p>
<p>(don&#8217;t worry,  fully virus scanned and verified etc &#8230;.)</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.advancedideamechanics.org/RnD/2011/11/10/outlook-cleanup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>LocalAppLog</title>
		<link>http://www.advancedideamechanics.org/RnD/2011/11/10/localapplog/</link>
		<comments>http://www.advancedideamechanics.org/RnD/2011/11/10/localapplog/#comments</comments>
		<pubDate>Thu, 10 Nov 2011 00:36:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.advancedideamechanics.org/RnD/?p=80</guid>
		<description><![CDATA[Need a quick way to get a list of all locally installed apps? Voila! I present LocalAppLog. It is a powershell script that automatically creates an excel spreadsheet with the following: Name, Publisher, Uninstall command, and install date. Pretty Neat! Maybe someone can use this to automatically send an email with the .xls file to [...]]]></description>
			<content:encoded><![CDATA[<p>Need a quick way to get a list of all locally installed apps? Voila! I present LocalAppLog. It is a powershell script that automatically creates an excel spreadsheet with the following: Name, Publisher, Uninstall command, and install date. Pretty Neat! Maybe someone can use this to automatically send an email with the .xls file to yourself. Anyway&#8230;</p>
<p>&nbsp;</p>
<p>WINDOWS ONLY</p>
<p>Powershell reqd. so that means Vista/7 or XPsp3 with manual Power Shell install.</p>
<p>D0wnload <a href="http://advancedideamechanics.org/downloads/LocalAppLog.zip">LocalAppLog</a></p>
<p>(You may need to Right Click &#8211;&gt; Save target as&#8230;)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.advancedideamechanics.org/RnD/2011/11/10/localapplog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Host File Updater</title>
		<link>http://www.advancedideamechanics.org/RnD/2011/11/08/host-file-updater/</link>
		<comments>http://www.advancedideamechanics.org/RnD/2011/11/08/host-file-updater/#comments</comments>
		<pubDate>Tue, 08 Nov 2011 03:32:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.advancedideamechanics.org/RnD/?p=74</guid>
		<description><![CDATA[If you know about the power of a host file, then you can appreciate this little utility. It grabs the hosts file from : http://www.mvps.org/winhelp2002/hosts.txt and replaces the one on your host with it. OR, just add 67.55.108.167 google.com to your co-worker&#8217;s hosts file and ask them a really hard question! j/k! Just grab this [...]]]></description>
			<content:encoded><![CDATA[<p>If you know about the power of a host file, then you can appreciate this little utility. It grabs the hosts file from :</p>
<p>http://www.mvps.org/winhelp2002/hosts.txt</p>
<p>and replaces the one on your host with it.</p>
<p>OR, just add 67.55.108.167 google.com to your co-worker&#8217;s hosts file and ask them a really hard question!</p>
<p>j/k! Just grab this utility and it makes the internet experience safer for less tech savvy users.</p>
<p>LINUX ONLY</p>
<p>This is a shell script, so remember to</p>
<pre># chmod +x Hosts Updater.sh</pre>
<p>first! Then ./Hosts Updater.sh to run.</p>
<p><a href="http://advancedideamechanics.org/downloads/Hosts%20Updater.zip">Download HostFileUpdater</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.advancedideamechanics.org/RnD/2011/11/08/host-file-updater/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Net Agent</title>
		<link>http://www.advancedideamechanics.org/RnD/2011/11/08/net-agent/</link>
		<comments>http://www.advancedideamechanics.org/RnD/2011/11/08/net-agent/#comments</comments>
		<pubDate>Tue, 08 Nov 2011 03:18:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.advancedideamechanics.org/RnD/?p=71</guid>
		<description><![CDATA[I was mucking about in the Linux command line, and I wanted something to join WiFi networks from the command line (I accidentally deleted the widget from Ubuntu, and didn&#8217;t know how to re-add it). So, here is a quick script that scans local SSIDs and lets you join right from the command line. Tested [...]]]></description>
			<content:encoded><![CDATA[<p>I was mucking about in the Linux command line, and I wanted something to join WiFi networks from the command line (I accidentally deleted the widget from Ubuntu, and didn&#8217;t know how to re-add it). So, here is a quick script that scans local SSIDs and lets you join right from the command line. Tested on Ubuntu Narwhal.</p>
<pre>LINUX ONLY</pre>
<pre>REQUIRES PYTHON TO RUN</pre>
<p><a href="http://advancedideamechanics.org/downloads/NetAgent.zip">Download NET AGENT</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.advancedideamechanics.org/RnD/2011/11/08/net-agent/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Melatonin</title>
		<link>http://www.advancedideamechanics.org/RnD/2011/11/06/melatonin/</link>
		<comments>http://www.advancedideamechanics.org/RnD/2011/11/06/melatonin/#comments</comments>
		<pubDate>Sun, 06 Nov 2011 23:10:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.advancedideamechanics.org/RnD/?p=60</guid>
		<description><![CDATA[&#160; Download Or Source I was tired of being the last one out of class because I had to wait for my Mac to write 4GB of RAM data to the hard disk. So, I wrote this little AppleScript app to help it sleep faster. In addition to the faster sleep benefits, it also recovers [...]]]></description>
			<content:encoded><![CDATA[<p>&nbsp;</p>
<div>
<p style="font-size: 9px;" align="center"><img src="http://advancedideamechanics.org/images/pill.jpg" alt="" /></p>
<p style="font-size: 9px;" align="center"><a style="font-size: 9px;" href="http://advancedideamechanics.org/downloads/Melatonin.dmg">Download</a></p>
<p style="font-size: 9px;" align="center">Or</p>
<p style="font-size: 9px;" align="center"><a style="font-size: 9px;" href="http://advancedideamechanics.org/downloads/MelatoninSource.zip">Source</a></p>
<p class="style3" align="center">I was tired of being the last one out of class</p>
<p class="style3" align="center">because I had to wait for my Mac to write 4GB</p>
<p class="style3" align="center">of RAM data to the hard disk. So, I wrote this</p>
<p class="style3" align="center">little AppleScript app to help it sleep faster.</p>
<p class="style3" align="center">In addition to the faster sleep benefits, it also</p>
<p class="style3" align="center">recovers disk space equivalent to your amount of RAM.</p>
<p class="style3" align="center">More info on Apple sleep modes can be found here :</p>
<p class="style3" align="center"><a href="http://guides.macrumors.com/Your_Mac_and_Sleep_Mode">Sleep Mode Info</a></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.advancedideamechanics.org/RnD/2011/11/06/melatonin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Folder Map</title>
		<link>http://www.advancedideamechanics.org/RnD/2011/11/06/folder-map/</link>
		<comments>http://www.advancedideamechanics.org/RnD/2011/11/06/folder-map/#comments</comments>
		<pubDate>Sun, 06 Nov 2011 23:08:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.advancedideamechanics.org/RnD/?p=56</guid>
		<description><![CDATA[&#160; Download Or Source FolderMap lets you see what files are in any folder on your Mac. It also saves a list of them to a text file on your Desktop. It is useful when rebuilding your computer, since I always forget at least 2 or 3 of the apps in my Applications folder. You [...]]]></description>
			<content:encoded><![CDATA[<p>&nbsp;</p>
<div>
<p style="font-size: 9px;" align="center"><img src="http://advancedideamechanics.org/images/map.jpg" alt="" /></p>
<p style="font-size: 9px;" align="center"><a style="font-size: 9px;" href="http://advancedideamechanics.org/downloads/FolderMap.dmg">Download</a></p>
<p style="font-size: 9px;" align="center">Or</p>
<p style="font-size: 9px;" align="center"><a style="font-size: 9px;" href="http://advancedideamechanics.org/downloads/FolderMap.scpt.zip">Source</a></p>
<p class="style3" align="center">FolderMap lets you see what files are in any</p>
<p class="style3" align="center">folder on your Mac. It also saves a list of</p>
<p class="style3" align="center">them to a text file on your Desktop. It is</p>
<p class="style3" align="center">useful when rebuilding your computer, since</p>
<p class="style3" align="center">I always forget at least 2 or 3 of the apps</p>
<p class="style3" align="center">in my Applications folder. You can also choose</p>
<p class="style3" align="center">to list just files or files and subfolders.</p>
<p class="style3" align="center">Thanks to <a href="http://members.ozemail.com.au/~ronfleckner/">Ron Fleckner</a> for the initial AppleScript.</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.advancedideamechanics.org/RnD/2011/11/06/folder-map/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>LittleFoot</title>
		<link>http://www.advancedideamechanics.org/RnD/2011/11/06/littlefoot/</link>
		<comments>http://www.advancedideamechanics.org/RnD/2011/11/06/littlefoot/#comments</comments>
		<pubDate>Sun, 06 Nov 2011 23:01:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.advancedideamechanics.org/RnD/?p=49</guid>
		<description><![CDATA[&#160; Download Or Source LittleFoot is a BitTorrent Client for OS X that is designed to be as simple as possible. It has a tiny memory footprint, and the TorrentEngine was written in Ruby. The GUI uses AppleScript and is modular to interact easily with the OS and other programs. Enjoy this program free, and [...]]]></description>
			<content:encoded><![CDATA[<p>&nbsp;</p>
<div>
<p style="font-size: 9px;" align="center"><img src="http://advancedideamechanics.org/images/biotorrent.jpg" alt="" /></p>
<p style="font-size: 9px;" align="center"><a style="font-size: 9px;" href="http://advancedideamechanics.org/downloads/LittleFoot.dmg">Download</a></p>
<p style="font-size: 9px;" align="center">Or</p>
<p style="font-size: 9px;" align="center"><a style="font-size: 9px;" href="http://advancedideamechanics.org/downloads/LittleFootSource.zip">Source</a></p>
<p class="style3" align="center">LittleFoot is a BitTorrent Client for OS X</p>
<p class="style3" align="center">that is designed to be as simple as possible.</p>
<p class="style3" align="center">It has a tiny memory footprint, and the</p>
<p class="style3" align="center">TorrentEngine was written in Ruby. The</p>
<p class="style3" align="center">GUI uses AppleScript and is modular to</p>
<p class="style3" align="center">interact easily with the OS and other programs.</p>
<p class="style3" align="center">Enjoy this program free, and leave me some</p>
<p class="style2" align="center"><a style="color: blue;" href="feedback.html">feedback</a>!</p>
<p class="style3" align="center">Thanks to <a href="http://masanjin.net/">William Morgan</a><a> for writing the TorrentEngine aka RubyTorrent.</a></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.advancedideamechanics.org/RnD/2011/11/06/littlefoot/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SysLog Collector</title>
		<link>http://www.advancedideamechanics.org/RnD/2011/11/06/gimme-those-logs/</link>
		<comments>http://www.advancedideamechanics.org/RnD/2011/11/06/gimme-those-logs/#comments</comments>
		<pubDate>Sun, 06 Nov 2011 16:51:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.advancedideamechanics.org/RnD/?p=32</guid>
		<description><![CDATA[This script gathers Windows 7 application and system logs and BAM! 7-zips them for the user. Just have them send you the file evt_logs.7z that appears in the folder where they ran it from. NO INSTALLATION REQUIRED. Download Event log collector &#160; Credits: I did absolutely no work on this (it was found here : [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.advancedideamechanics.org/download/evt_logs.zip">This</a> script gathers Windows 7 application and system logs and BAM! 7-zips them for the user. Just have them send you the file evt_logs.7z that appears in the folder where they ran it from. NO INSTALLATION REQUIRED.</p>
<p><a href="http://www.advancedideamechanics.org/download/evt_logs.zip">Download Event log collector</a></p>
<p>&nbsp;</p>
<p>Credits:</p>
<p>I did absolutely no work on this (it was found here :</p>
<p><a href="http://forums.avg.com/us-en/avg-forums?sec=thread&amp;act=show&amp;id=94155">http://forums.avg.com/us-en/avg-forums?sec=thread&amp;act=show&amp;id=94155</a>)</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.advancedideamechanics.org/RnD/2011/11/06/gimme-those-logs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

