<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress.com" -->
<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/"
	>

<channel>
	<title>32-bit &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://wordpress.com/tag/32-bit/</link>
	<description>Feed of posts on WordPress.com tagged "32-bit"</description>
	<pubDate>Sun, 12 Oct 2008 09:25:38 +0000</pubDate>

	<generator>http://wordpress.com/tags/</generator>
	<language>en</language>

<item>
<title><![CDATA[Test for 64-bit capability]]></title>
<link>http://yourmacguy.wordpress.com/?p=227</link>
<pubDate>Wed, 08 Oct 2008 17:11:49 +0000</pubDate>
<dc:creator>pmbuko</dc:creator>
<guid>http://yourmacguy.pl.wordpress.com/2008/10/08/archbits/</guid>
<description><![CDATA[The arch tool is an easy way to test whether a Mac&#8217;s processor is intel or ppc, but it does no]]></description>
<content:encoded><![CDATA[<p>The <code><strong><a title="apple's arch man page" href="http://developer.apple.com/documentation/Darwin/Reference/ManPages/man1/arch.1.html#//apple_ref/doc/man/1/arch">arch</a></strong></code> tool is an easy way to test whether a Mac's processor is intel or ppc, but it does not draw a distinction between the different types of intel processors. It will return <strong><code>i386</code></strong> whether it's a Core Duo, Core 2 Duo, or Xeon. <span style="text-decoration:line-through;">We can use the fact that the Core Duo is only intel processor found in Macs incapable of running 64-bit code to write a script that extend arch to test for 64-bit capability.</span></p>
<pre><span style="text-decoration:line-through;">    #!/bin/bash

    proc=$(/usr/sbin/system_profiler SPHardwareDataType &#124; \
    /usr/bin/awk -F': ' '/Processor Name:/ {print $2}')

    if [ "$(/usr/bin/arch)" == "i386" ]; then
        if [ "$proc" != "Intel Core Duo" ]; then
            /bin/echo $(/usr/bin/arch)-64
        else
            /bin/echo $(/usr/bin/arch)-32
        fi
    else
        /bin/echo $(/usr/bin/arch)
    fi</span></pre>
<p><span style="text-decoration:line-through;">This script will return <strong><code>i386-32</code></strong> for intel processors limited to 32 bits, <strong><code>i386-64</code></strong> for 64-bit capable intel processors, and <strong><code>ppc</code></strong> for non-intel processors.</span></p>
<p><span style="text-decoration:line-through;">I've called this script <em><strong>archbits</strong></em> and made it downloadable <a title="download archbits" href="http://pmbuko.googlepages.com/archbits.zip">here</a>.</span></p>
<p><strong>UPDATE (10/8/08)</strong>: I discovered a much easier way to accomplish this. The following one-liner will work on ppc or intel boxes and will return <strong>1</strong> if the computer is 64-bit capable or <strong>0</strong> if it is not.</p>
<pre style="padding-left:30px;">sysctl hw.optional &#124; awk -F': ' '/64/ {print $2}'</pre>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Running 32 bit DLL or EXE on a 64 bit Machine]]></title>
<link>http://pcheruku.wordpress.com/?p=44</link>
<pubDate>Tue, 05 Aug 2008 19:53:27 +0000</pubDate>
<dc:creator>Praveen</dc:creator>
<guid>http://pcheruku.pl.wordpress.com/2008/08/05/running-32-bit-dll-or-exe-on-a-64-bit-machine/</guid>
<description><![CDATA[In order to run the 32 bit(x86) DLL(Windows Class Library) or EXE(Windows Application) generated fro]]></description>
<content:encoded><![CDATA[<p>In order to run the 32 bit(x86) DLL(Windows Class Library) or EXE(Windows Application) generated from a Visual Studio Project on a 64 bit(x64) machine, Make sure you have set the "Platform target" as x86.</p>
<p>This can be done by:<br />
1. Right-clicking on the project in the "Solution Explorer"<br />
2. Select "Properties"<br />
3. In "Properties", Select "Build"<br />
4. In "General" part, Set the "Platform target" as x86.</p>
<p>And if you are creating a Setup or Deployment project, you should set the "TargetPlatform" to x86.<br />
To do this, Select the setup or deployment Project in the Solution Explorer and in the properties window, set the "TargetPlatform" to x86.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[ServerBeach Customer Provides How-To on Installing Ubuntu (Hardy) Remotely via SSH - 32 or 64-bit]]></title>
<link>http://serverbeach.wordpress.com/?p=258</link>
<pubDate>Tue, 05 Aug 2008 17:30:34 +0000</pubDate>
<dc:creator>kylistah</dc:creator>
<guid>http://serverbeach.pl.wordpress.com/2008/08/05/serverbeach-customer-provides-how-to-on-installing-ubuntu-hardy-remotely-via-ssh-32-or-64-bit/</guid>
<description><![CDATA[



ServerBeach customer and forum member Jeff Duckett (SB forum name jduckett01) has graciously pro]]></description>
<content:encoded><![CDATA[<div class="smallfont" style="text-align:center;"><img class="aligncenter" src="http://www.ubuntu.com/themes/ubuntu07/images/ubuntulogo.png" alt="" width="202" height="55" /></div>
<div class="smallfont" style="text-align:center;"></div>
<div class="smallfont" style="text-align:center;"></div>
<p><br><br><br></p>
<div class="smallfont">ServerBeach customer and forum member Jeff Duckett (SB forum name <a class="bigusername" href="http://forums.serverbeach.com/member.php?u=2681">jduckett01</a>) has graciously provided a how-to on installing Ubuntu (Hardy) remotely via SSH on 32-bit or 64-bit systems.</div>
<p>On his blog, he states -</p>
<blockquote>
<div class="smallfont">Honestly, it took me almost ten days of trial and error to figure out all of the details of doing a remote install and to work out all of the bugs prior to actually attempting it remotely on a production server. I developed this process and simulated the remote install on one of my local machines prior to the actual install. The process is broken into three stages and is fully scripted. You should be able to download the scripts, configure them to meet your environment, and remote install via ssh.</div>
</blockquote>
<p>To view this step-by-step guide, please visit his blog by <a href="http://blog.jeffduckett.com/articles/2008/08/04/install-ubuntu-hardy-8-04-remotely-via-ssh-32-or-64-bit/">clicking here</a>.</p>
<p>Thanks Jeff!</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[A Quick 64 bit Update]]></title>
<link>http://maclochlainn.wordpress.com/?p=150</link>
<pubDate>Sat, 26 Jul 2008 19:08:27 +0000</pubDate>
<dc:creator>maclochlainn</dc:creator>
<guid>http://maclochlainn.pl.wordpress.com/2008/07/26/a-quick-64-bit-update/</guid>
<description><![CDATA[Over the last month I&#8217;ve built a number of test environments. Specifically, working with 64 bi]]></description>
<content:encoded><![CDATA[<p>Over the last month I've built a number of test environments. Specifically, working with 64 bit OS. I've found a number of quirks.</p>
<p>Pet peeves include: (1) The Microsoft patching progrm auto detects x64 and chooses to install IE x64 when <a title="Flash Inoperable on 64 bit Browsers" href="http://kb.adobe.com/selfservice/viewContent.do?externalId=6b3af6c9" target="_self">Flash is 32 bit and inoperable with 64 bit browsers</a>; (2) VMWare Workstation disallows installation of 64 bit OS when running on Vista Home x64 (appears to require Vista Business or Ultimate); and (3) the <a title="Install work arounds for Oracle XE on Ubuntu x64" href="http://littlebrain.org/2008/05/12/how-to-install-oracle-xe-in-ubuntu-64-bit/" target="_self">work arounds required to install Oracle XE on Ubuntu x64</a>.</p>
<p>A bright note is how slick VMWare Fusion manages installation on a Mac over VMWare Workstation on Windows or Linux. Perhaps those features will be in the next release.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Windows Live Applications with Server 2003 and/or x64]]></title>
<link>http://itjogger.wordpress.com/?p=3</link>
<pubDate>Wed, 16 Jul 2008 05:21:47 +0000</pubDate>
<dc:creator>itjogger0</dc:creator>
<guid>http://itjogger.pl.wordpress.com/2008/07/16/windows-live-applications-with-server-2003-andor-x64/</guid>
<description><![CDATA[If you are one of many who have tried installing the Windows Live applications (Messenger, Mail, Wri]]></description>
<content:encoded><![CDATA[<p>If you are one of many who have tried installing the Windows Live applications (Messenger, Mail, Writer, Photo Gallery, etc.) using the WLInstaller.exe file on Windows Server 2003 or perhaps a 64-bit version of windows which I have no personal experience with, you will have probably gotten the following error message:</p>
<blockquote><p>"Sorry, Windows Live programs cannot be installed on Windows Server, Windows XP Professional x64 Edition, or Windows <a class="iAs" href="http://www.techspot.com/blog/129/how-to-run-windows-live-messenger-on-windows-xp-x64/#" target="_blank">operating systems</a> earlier than Windows XP Service Pack 2."</p></blockquote>
<p>or</p>
<blockquote><p>"Windows Live programs can't be installed on this operating system"</p></blockquote>
<p>It is not that Windows Live programs "cannot be installed," it is just that the folks at Microsoft who decreed such a thing made a stupid move. That's surprising... Apparently, there is not sufficient application testing on these "unsupported" operating systems, and so they decided not to release it for them period.</p>
<p>Feel free to skip down to the uploaded MSI set up files if you do not want to know the knitty gritties.</p>
<p>On a "compatible" XP SP2 machine, WLInstaller.exe smacks relevant set up files and logs in</p>
<blockquote><p><strong>C:\Program Files\Common Files\WindowsLiveIntaller\MsiSources</strong></p></blockquote>
<p><strong>NOTE: WindowsLiveInstaller</strong> was (sneakily) made a "protected operating system [folder]" so you would need to change this under Folder Options...View, Show Hidden Files and <em>Uncheck</em> "Hide protected operating system files"</p>
<p>Finally, browse over to the <strong>MsiSources</strong> folder and voila.</p>
<p>I am surprised there is not more accessibility to these set ups, or at least ease in finding them. Any how, I hope someone benefits from these. Enjoy.</p>
<p><strong>Shared Folder</strong></p>
<p><a href="http://liveinstallers.4shared.com">http://liveinstallers.4shared.com</a></p>
<p><strong>Direct links:</strong></p>
<p>Windows Live-<br />
<strong>Mail </strong>(Build 12.0.1606)-<br />
<a href="http://www.4shared.com/file/55367964/81c74411/WindowsLiveMail-Install_184E7118-0295-43C4-B72C-1D54AA75AAF7.html">http://www.4shared.com/file/55367964/81c74411/WindowsLiveMail-Install_184E7118-0295-43C4-B72C-1D54AA75AAF7.html</a></p>
<p><strong>Messenger</strong> (Build 8.5.1302.1018)-<br />
<a href="http://www.4shared.com/file/55367960/86aa8008/WindowsLiveMessenger-Install_508CE775-4BA4-4748-82DF-FE28DA9F03B0.html">http://www.4shared.com/file/55367960/86aa8008/WindowsLiveMessenger-Install_508CE775-4BA4-4748-82DF-FE28DA9F03B0.html</a></p>
<p><strong>Photo Gallery</strong> (Build 12.0.1308.1023)-<br />
<a href="http://www.4shared.com/file/55367957/33e34668/WindowsLivePhotoGallery-Install_257E440F-781F-459B-9A68-A0872B80C1D6.html">http://www.4shared.com/file/55367957/33e34668/WindowsLivePhotoGallery-Install_257E440F-781F-459B-9A68-A0872B80C1D6.html</a></p>
<p><strong>Writer</strong> (Build 12.0.1366.1026)-<br />
<a href="http://www.4shared.com/file/55368115/eff1a3ae/WindowsLiveWriter-Install_9176251A-4CC1-4DDB-B343-B487195EB397.html">http://www.4shared.com/file/55368115/eff1a3ae/WindowsLiveWriter-Install_9176251A-4CC1-4DDB-B343-B487195EB397.html</a></p>
<p><strong>Sign-In Assistant-<br />
</strong><a href="http://www.4shared.com/file/55368117/1ffc282/WindowsLiveSignInAssistant-Install_AFA4E5FD-ED70-4D92-99D0-162FD56DC986.html">http://www.4shared.com/file/55368117/1ffc282/WindowsLiveSignInAssistant-Install_AFA4E5FD-ED70-4D92-99D0-162FD56DC986.html</a></p>
<p>Please mirror these if you can.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Windows 7]]></title>
<link>http://stephenrobinson.wordpress.com/?p=95</link>
<pubDate>Thu, 26 Jun 2008 21:03:44 +0000</pubDate>
<dc:creator>Stephen Robinson</dc:creator>
<guid>http://stephenrobinson.pl.wordpress.com/2008/06/26/windows-7/</guid>
<description><![CDATA[
The next version of windows, windows 7 is expected to be released in Jan 2010, client versions of W]]></description>
<content:encoded><![CDATA[<p><img src="http://www.liewcf.com/blog/wp-content/uploads/unofficial-windows7-logo.jpg"></p>
<p>The next version of windows, windows 7 is expected to be released in Jan 2010, client versions of Windows 7 will ship in both 32-bit and 64-bit. I am more than likely not going to swap to vista anytime soon due to the bad press its been having, I'm more than likely going to wait and see what windows 7 has to offer.</p>
<p><a href="http://en.wikipedia.org/wiki/Image:7desktop.png"><img src="http://upload.wikimedia.org/wikipedia/en/thumb/6/6c/7desktop.png/290px-7desktop.png"></a><br />
<sub>Screenshot of Windows 7 Milestone 1 Build 6519</sub></p>
<p>Right now it just looks like vista as its in early development but I'm looking forward to see what differences there will be in looks, features and reliability. Oh and if you are wondering its named 7 as vista was the 6th version.</p>
<p><img src="http://www.blogsmithmedia.com/www.engadget.com/media/2008/01/windows-7-ultimate-leak-1.jpg"></p>
<p><b><u>Fake or Real?</u></b></p>
<p>I am pretty sure the above shots are real but here are some more below that I'm not too sure about, I think there fake but take a look anyway.</p>
<p><img src="http://i28.tinypic.com/9s8qit.jpg"><img src="http://i25.tinypic.com/euloj6.jpg"><br />
<img src="http://i32.tinypic.com/nzhxrs.jpg"><img src="http://i32.tinypic.com/2wejfc7.png"></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Imperdible: OpenSuse 11.0]]></title>
<link>http://entregeeks.wordpress.com/?p=744</link>
<pubDate>Fri, 20 Jun 2008 15:52:59 +0000</pubDate>
<dc:creator>entregeeks</dc:creator>
<guid>http://entregeeks.pl.wordpress.com/2008/06/20/imperdible-opensuse-110/</guid>
<description><![CDATA[
Finalmente ha salido la version 11.0 de uno de los distros mas queridos de Linux, me refiero al Ope]]></description>
<content:encoded><![CDATA[<p style="text-align:center;"><a href="http://entregeeks.files.wordpress.com/2008/06/suse2362245.jpg"><img class="size-full wp-image-745" src="http://entregeeks.wordpress.com/files/2008/06/suse2362245.jpg" alt="" width="400" height="320" /></a></p>
<p>Finalmente ha salido la version <strong>11.0</strong> de uno de los distros mas queridos de <a href="http://www.linux.org"><strong>Linux</strong></a>, me refiero al <a href="http://software.opensuse.org/"><strong>OpenSuse</strong></a>. Esta nueva version incluye mas de <a href="http://en.opensuse.org/Testing:Features_11.0"><strong>200 nuevas funciones</strong></a>, un <a href="http://news.opensuse.org/2008/06/05/sneak-peeks-at-opensuse-110-new-installer-with-stephan-kulow/"><strong>instalador rediseñado</strong></a> que hace de este nuevo Suse algo mucho mas sencillo de instalar, un manejo mas rapido de paquetes gracias a las <strong><a href="http://news.opensuse.org/2008/06/06/sneak-peeks-at-opensuse-110-package-management-with-duncan-mac-vicar/">mejoras del ZYpp</a></strong>, tambien tenemos mejoras en <a href="http://news.opensuse.org/2008/06/17/sneak-peeks-at-opensuse-110-kde-with-stephan-binner/"><strong>KDE 4</strong></a>, <a href="http://news.opensuse.org/2008/06/18/sneak-peeks-at-opensuse-110-talking-gnome-with-vincent-untz/"><strong>GNOME 2.22</strong></a>, <a href="http://news.opensuse.org/2008/06/07/sneak-peeks-at-opensuse-110-compiz-with-dennis-kasprzyk/"><strong>Compiz Fusion</strong></a> y <a href="http://en.opensuse.org/Testing:Features_11.0"><a href="http://news.opensuse.org/2008/06/19/sneak-peeks-at-opensuse-110-a-plethora-of-improvements/"><strong>mucho mas.</strong></a></a></p>
<p>Si estas interesado en adquirir el Open Suse puedes bajarlo <a href="http://software.opensuse.org/"><strong>siguiendo este link</strong></a>, desde el cual podras escoger entre 3 tipos de arquitecturas <strong>32 bits</strong>, <strong>64 bits</strong> y <strong>PowerPc</strong>, tambien esta disponible el <strong>Live CD</strong> para que puedas probar el <strong>Open Suse</strong> antes de instalarlo.</p>
<p>-----------------</p>
<p>Probando nuevos features desde <a href="http://software.opensuse.org/"><strong>Open Suse</strong></a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Running 32 bit Windows Service in 64 bit environment and related Oracle issue]]></title>
<link>http://vaidhe.wordpress.com/?p=3</link>
<pubDate>Thu, 19 Jun 2008 20:59:38 +0000</pubDate>
<dc:creator>vaidhe</dc:creator>
<guid>http://vaidhe.pl.wordpress.com/2008/06/19/running-32-bit-windows-service-in-64-bit-environment-and-related-oracle-issue/</guid>
<description><![CDATA[Recently, I had to install a Windows service in a machine running the 64 bit Windows server 2003.  I]]></description>
<content:encoded><![CDATA[<p>Recently, I had to install a Windows service in a machine running the 64 bit Windows server 2003.  I compiled the service and installed it successfully in the target machine.</p>
<p>When I ran the service and the service tried to connect to Oracle, I got the following error:</p>
<p><span style="color:red;">System.IO.FileNotFoundException: Could not load file or assembly 'Oracle.DataAccess, Version=2.102.2.20, Culture=neutral, PublicKeyToken=89b483f429c47342' or one of its dependencies. The system cannot find the file specified.<br />
File name: 'Oracle.DataAccess, Version=2.102.2.20, Culture=neutral, PublicKeyToken=89b483f429c47342'</span></p>
<p>I checked and found that the correct version of Oracle DataAccess provider was installed on the machine.  I suspected that it might be some permissions issue and tried explicitly setting permissions on the Oracle folder.  That did not help.  I then thought it might be some bad install of Oracle DataAccess provider and re-installed it.  I still got the same error mentioned above.</p>
<p>Finally, I found the problem:</p>
<p>When I compiled the service application, I had used the default compilation option, which was to target any CPU.</p>
<p><img src="http://vaidhe.wordpress.com/files/2008/06/advancedcompileroptions1.jpg" alt="Advanced Compiler Options" /></p>
<p>When 'AnyCPU' is specified for the Target CPU, the service will run in 64 bit mode in a 64 bit OS.  I had installed only the 32 bit Oracle DataAccess provider on the machine.  The service was running in 64 bit mode and trying to load the 64 bit Oracle DataAccess provider DLL and not finding it.</p>
<p>I re-compiled the application and selected 'X86' for the Target CPU and published it to the server.</p>
<p>Voila!!!  No more Oracle errors.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[64 bit Vista and Flash Tutorials]]></title>
<link>http://procareblog.wordpress.com/?p=123</link>
<pubDate>Mon, 16 Jun 2008 15:18:27 +0000</pubDate>
<dc:creator>Phil Eschtruth Harrison</dc:creator>
<guid>http://procareblog.pl.wordpress.com/2008/06/16/64-bit-vista-and-flash/</guid>
<description><![CDATA[Have you recently purchased a new computer or perhaps you&#8217;re shopping around for one? If so, y]]></description>
<content:encoded><![CDATA[<p>Have you recently purchased a new computer or perhaps you're shopping around for one? If so, you may discover some of them are now being sold with 64-bit editions of Windows Vista. That sounds fine until you discover that Flash based movies, like <a href="http://www.procaresoftware.com/support/WebHelp/help_system.html#online_tutorials.html" target="_blank">ProCare Tutorials</a>, no longer work. Luckily, there is a work around. <!--more--></p>
<p><strong>32 bit, 64 bit and the 6 Million Dollar Man</strong></p>
<p>Since the days of Windows 95, computers have been primarily based on a 32-bit operating system. In fact, up ‘til now Vista itself has been shipped in 32-bit format. The new Vista is intended to be bigger, faster, stronger - like Lee Majors, who played Steve Austin, in the Six Million Dollar Man - for those of you who remember that 70's serial.</p>
<p><strong>Why You Should Care</strong></p>
<p>You may be asking, "Why does this matter - how will it affect me?". To you a "bit" is something that belongs in the mouth of a horse, not a technology thing. And as far as Flash goes, he's some comic book hero from by gone days.</p>
<p>Well, here it is, plain as day. <em>The Adobe Flash Player is not 64-bit compatible.</em> Clear as mud, right? It means that Flash based web sites, movies, and tutorials - like ProCare Tutorials - won't run in the new Vista without a little work around.</p>
<p><strong>Download Firefox</strong></p>
<p><a href="http://kb.adobe.com/selfservice/viewContent.do?externalId=6b3af6c9" target="_blank">The solution, according to Adobe</a>, is to use a 32-bit browser, like Firefox. Then install the Free Flash Player in your new browser. You may want to make it your default browser, otherwise, Internet Explorer will still come up.</p>
<ol type="1">
<li><a href="http://www.mozilla.com/en-US/firefox/?utm_id=Q108&#38;utm_source=google&#38;utm_medium=ppc&#38;gclid=CNulqLm-8pMCFSahiQodvE5PWw" target="_blank">Download Firefox</a></li>
<li><a href="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=shockwaveFlash" target="_blank">Install the Flash Player</a></li>
<li><a href="http://www.vista4beginners.com/set-program-access-computer-defaults" target="_blank">Change Your Default Browser in Vista</a> (optional)</li>
</ol>
<p><strong>Are you sure this isn't a ProCare thing?</strong></p>
<p>Really and truly, this has nothing to do with ProCare. We are the victim here just like any of the other millions of websites that rely on Flash. This is a compatibility problem between Microsoft's Internet Explorer (which is built into 64 bit Vista) and the Adobe Flash Player. According to Adobe they are "working on Flash Player support for 64-bit platforms".</p>
<p>Happy browsing and until next time, cheers!</p>
<p>-Phil</p>
<p>If you have questions or comments about this article (or suggestions for another article) I'd be pleased to hear from you. Drop me at note at <a href="mailto:phil@procaresoftware.com">phil@procaresoftware.com</a>.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Ubuntu Linux Canon ip1800/2500 Printer Drivers]]></title>
<link>http://deviantcode.wordpress.com/?p=7</link>
<pubDate>Tue, 07 Oct 2008 08:49:36 +0000</pubDate>
<dc:creator>deviantcode</dc:creator>
<guid>http://deviantcode.pl.wordpress.com/2008/10/07/ubuntu-linux-canon-ip18002500-printer-drivers/</guid>
<description><![CDATA[If you run Ubuntu Hardy on your computer and it happens to have a Canon Pixma i1800/2500 Printer, it]]></description>
<content:encoded><![CDATA[<p>If you run Ubuntu Hardy on your computer and it happens to have a Canon Pixma i1800/2500 Printer, it might be hard to find the right 32-bit Linux drivers for it.</p>
<p>Download them from these URLs.</p>
<p>Then install them in this order, just by double-clicking them:</p>
<p><strong><a href="http://www.mediafire.com/?jtmicwjyomg">http://www.mediafire.com/?jtmicwjyomg</a></strong> -&#62; cnijfilter-common_2.70-3_i386.deb</p>
<p><strong><a href="http://www.mediafire.com/?mzr0rrmtyt3">http://www.mediafire.com/?mzr0rrmtyt3</a></strong> -&#62; cnijfilter-ip1800series_2.70-3_i386.deb</p>
<p>Then, start any browser and open <strong><a href="http://localhost:631">http://localhost:631</a></strong> to configure your printers.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[New Adobe Cs4 Products!]]></title>
<link>http://gadgetbitz.wordpress.com/?p=5</link>
<pubDate>Sun, 05 Oct 2008 04:29:28 +0000</pubDate>
<dc:creator>gadgetbitz</dc:creator>
<guid>http://gadgetbitz.pl.wordpress.com/2008/10/05/new-adobe-cs4-products/</guid>
<description><![CDATA[That’s right folks, we’re already talking about the next installment of Adobe’s flagship Creat]]></description>
<content:encoded><![CDATA[<p>That’s right folks, we’re already talking about the next installment of Adobe’s flagship Creative Applications.These include <a href="http://www.adobe.com/go/EN_US_P_FP_5_L">Illustrator CS4</a>,<a href="http://www.adobe.com/go/EN_US_P_FP_7_L">Flash CS4 Professional</a>,<a href="http://www.adobe.com/go/EN_US_P_FP_9_L">After Effects CS4 Professional</a>,<a href="http://www.adobe.com/go/EN_US_P_FP_6_L">Dreamweaver CS4</a>,<a href="http://www.adobe.com/go/EN_US_P_FP_8_L">Premiere Pro CS4</a>,<a href="http://www.adobe.com/go/EN_US_P_FP_10_L">InDesign CS4</a>, and last but not least <a href="http://www.adobe.com/go/EN_US_P_FP_4_L">Photoshop CS4 Extended</a>! The programs have huge imporvments from their previous versions but <a href="http://www.adobe.com/go/EN_US_P_FP_4_L">Photoshop CS4 Extended</a> seems to have the most. The Windows version of all the Apps comes in both 32-bit and 64-bit flavors for more speed. Mac version of the Cs4 products are stuck on 32-bit.</p>
<p><a href="http://gadgetbitz.wordpress.com/files/2008/10/cs4_master_bxshot_3in_png.png"><img class="alignnone size-full wp-image-6" title="cs4_master_bxshot" src="http://gadgetbitz.wordpress.com/files/2008/10/cs4_master_bxshot_3in_png.png" alt="" width="230" height="243" /></a><a href="http://gadgetbitz.files.wordpress.com/2008/10/boxshot-200x200-1.gif"><img class="alignnone size-full wp-image-8" title="boxshot-200x200-1" src="http://gadgetbitz.wordpress.com/files/2008/10/boxshot-200x200-1.gif" alt="" width="200" height="200" /></a></p>
<p>For More info check out:</p>
<p><a href="http://www.adobe.com/products/"></a>http://www.adobe.com/products/</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[32-bit vs. 64-bit CRM SDK Assemblies]]></title>
<link>http://javista.wordpress.com/?p=154</link>
<pubDate>Thu, 02 Oct 2008 08:39:57 +0000</pubDate>
<dc:creator>Imad HAJJAR</dc:creator>
<guid>http://blogs.javista.com/2008/10/02/32-bit-vs-64-bit-crm-sdk-assemblies/</guid>
<description><![CDATA[As you may have noticed, recent updates to the Microsoft Dynamics CRM 4.0 SDK now include two differ]]></description>
<content:encoded><![CDATA[<p>As you may have noticed, recent updates to the Microsoft Dynamics CRM 4.0 SDK now include two different sets of SDK assemblies. This had led many of you to ask when the different sets of assemblies should be used. Luckily enough, most of the time there is no wrong choice because the Common Language Runtime and CRM will take care of the heavy lifting without you even knowing. However, depending on the type of application being developed and how your code will execute, there are some things to be aware of and associated actions you can take to ensure that your solution can easily be ported to any CRM 4.0 deployment.</p>
<p><span style="font-size:medium;">Common Language Runtime Support</span></p>
<p>For the sake of this discussion, I’m going to assume some familiarity with the Common Language Runtime (CLR) and .NET development, but will dive into some of the details regarding its support for 32-bit and 64-bit applications. The 2.0 release of the CLR introduced a 64-bit version in addition to the already existing 32-bit version. Along with this, the capability to have your .NET code compiled to target a specific platform was also introduced. For instance, when developing with C# and Visual Basic, the developer can pass in the /platform switch to the compiler with potential values of x86, Itanium, x64, or anycpu with anycpu being the default if the switch is not provided. As you can see, this allows the developer to control exactly what platforms the compiled .NET code can execute on. For executables, what happens is relatively straightforward – x86 compiled executables run in 32-bit mode on all systems (WOW64 on 64-bit operating systems), x64 will only execute on computers that support the AMD64 or EM64T instruction sets, and for executables compiled with anycpu, the application will run as a 64-bit process on 64-bit operating systems and a 32-bit process on 32-bit operating systems. Similarly, .NET class libraries can be loaded by an executable only if they support the platform that the loading executable is running under. Therefore, a 32-bit process cannot load a .NET class library that is compiled as x64 assembly only and a 64-bit process cannot load an assembly that is compiled to be x86 only. However, if the class library is compiled as anycpu, it can be loaded by both 32-bit and 64-bit processes.</p>
<p>You can refer to the articles referenced at the end of this article for more information regarding how to build 64-bit applications using the CLR and the .NET Framework.</p>
<p><span style="font-size:medium;">CRM 4.0 SDK Assemblies</span></p>
<p>To determine what platform a specific assembly is compiled to target, you can use the CorFlags.exe tool included with the .NET SDK. Simply running it with the file that you want to examine as a command line argument, you will be able to gather enough information to determine what platforms the targeted file supports. For instance, here’s what the output looks like when running CorFlags.exe on the 32-bit version of Microsoft.Crm.SdkTypeProxy.dll.</p>
<p><a href="http://blogs.msdn.com/blogfiles/crm/WindowsLiveWriter/32bitvs.64bitCRMSDKAssemblies_7369/clip_image001_2.jpg"><img style="border-width:0;" src="http://blogs.msdn.com/blogfiles/crm/WindowsLiveWriter/32bitvs.64bitCRMSDKAssemblies_7369/clip_image001_thumb.jpg" border="0" alt="clip_image001" width="644" height="321" /></a></p>
<p>The important pieces of information here are the PE and 32BIT values. The breakdown for the various different platform targets and their associated values are as follows:</p>
<p> </p>
<table class="MsoTableGrid" style="border-collapse:collapse;border-style:none;" border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td style="width:159.6pt;border:black 1pt solid;padding:0 5.4pt;" width="213" valign="top">
<p class="MsoNormal" style="margin-bottom:0;line-height:normal;text-align:center;" align="center"><span style="font-family:v;">/platform Switch </p>
<p></span></p>
<p> </td>
<td style="border-right:black 1pt solid;border-top:black 1pt solid;border-left-width:1pt;border-left-color:black;width:159.6pt;border-bottom:black 1pt solid;padding:0 5.4pt;" width="213" valign="top">
<p class="MsoNormal" style="margin-bottom:0;line-height:normal;text-align:center;" align="center"><span style="font-family:v;">PE </p>
<p></span></p>
<p> </td>
<td style="border-right:black 1pt solid;border-top:black 1pt solid;border-left-width:1pt;border-left-color:black;width:159.6pt;border-bottom:black 1pt solid;padding:0 5.4pt;" width="213" valign="top">
<p class="MsoNormal" style="margin-bottom:0;line-height:normal;text-align:center;" align="center"><span style="font-family:v;">32BIT </p>
<p></span></p>
<p> </td>
</tr>
<tr>
<td style="border-top-width:1pt;border-right:black 1pt solid;border-left:black 1pt solid;width:159.6pt;border-top-color:black;border-bottom:black 1pt solid;padding:0 5.4pt;" width="213" valign="top">
<p class="MsoNormal" style="margin-bottom:0;line-height:normal;"><span style="font-family:v;">anycpu </p>
<p></span></p>
<p> </td>
<td style="border-right:black 1pt solid;width:159.6pt;border-top-style:none;border-bottom:black 1pt solid;border-left-style:none;padding:0 5.4pt;" width="213" valign="top">
<p class="MsoNormal" style="margin-bottom:0;line-height:normal;text-align:center;" align="center"><span style="font-family:v;">PE32 </p>
<p></span></p>
<p> </td>
<td style="border-right:black 1pt solid;width:159.6pt;border-top-style:none;border-bottom:black 1pt solid;border-left-style:none;padding:0 5.4pt;" width="213" valign="top">
<p class="MsoNormal" style="margin-bottom:0;line-height:normal;text-align:center;" align="center"><span style="font-family:v;">0 </p>
<p></span></p>
<p> </td>
</tr>
<tr>
<td style="border-top-width:1pt;border-right:black 1pt solid;border-left:black 1pt solid;width:159.6pt;border-top-color:black;border-bottom:black 1pt solid;padding:0 5.4pt;" width="213" valign="top">
<p class="MsoNormal" style="margin-bottom:0;line-height:normal;"><span style="font-family:v;">x86 </p>
<p></span></p>
<p> </td>
<td style="border-right:black 1pt solid;width:159.6pt;border-top-style:none;border-bottom:black 1pt solid;border-left-style:none;padding:0 5.4pt;" width="213" valign="top">
<p class="MsoNormal" style="margin-bottom:0;line-height:normal;text-align:center;" align="center"><span style="font-family:v;">PE32 </p>
<p></span></p>
<p> </td>
<td style="border-right:black 1pt solid;width:159.6pt;border-top-style:none;border-bottom:black 1pt solid;border-left-style:none;padding:0 5.4pt;" width="213" valign="top">
<p class="MsoNormal" style="margin-bottom:0;line-height:normal;text-align:center;" align="center"><span style="font-family:v;">1 </p>
<p></span></p>
<p> </td>
</tr>
<tr>
<td style="border-top-width:1pt;border-right:black 1pt solid;border-left:black 1pt solid;width:159.6pt;border-top-color:black;border-bottom:black 1pt solid;padding:0 5.4pt;" width="213" valign="top">
<p class="MsoNormal" style="margin-bottom:0;line-height:normal;"><span style="font-family:v;">64-bit </p>
<p></span></p>
<p> </td>
<td style="border-right:black 1pt solid;width:159.6pt;border-top-style:none;border-bottom:black 1pt solid;border-left-style:none;padding:0 5.4pt;" width="213" valign="top">
<p class="MsoNormal" style="margin-bottom:0;line-height:normal;text-align:center;" align="center"><span style="font-family:v;">PE32+ </p>
<p></span></p>
<p> </td>
<td style="border-right:black 1pt solid;width:159.6pt;border-top-style:none;border-bottom:black 1pt solid;border-left-style:none;padding:0 5.4pt;" width="213" valign="top">
<p class="MsoNormal" style="margin-bottom:0;line-height:normal;text-align:center;" align="center"><span style="font-family:v;">0 </p>
<p></span></p>
<p> </td>
</tr>
</tbody>
</table>
<p>Based on this chart, we can see that this is indeed the 32-bit version of the Microsoft.Crm.SdkTypeProxy assembly. If we ran the same command on the 64-bit version, we’d see that it is compiled with the anycpu value. I won’t get into the details about why these are compiled as such, but given this information, we can start seeing where the problems might pop up during solution development and when it is appropriate to use the two different sets of CRM 4.0 SDK assemblies.</p>
<p>For more information regarding CorFlags.exe, refer to the link at the end of this post.</p>
<p><span style="font-size:medium;">CRM 4.0 Solution Development</span></p>
<p>Now that we have understand of some of the details about how the CLR executes .NET code in 32-bit and 64-bit processes and the differences between the two sets of CRM 4.0 SDK assemblies, let’s talk about what it takes to build a portable solution against the CRM 4.0 SDK. There are several different places where you may write code that links against the SDK assemblies, so let’s walk through each of them.</p>
<h4>Plug-ins</h4>
<p>Plug-ins could be one of the more challenging ones to get correct given the different factors making up who will actually end up executing the code. If the plug-in is registered to execute synchronously, it will execute in the IIS worker process, if the plug-in is registered to execute asynchronously, its execution will be in the MSCRM Asynchronous service, and if the plug-in is available offline, it will run in the Outlook client hosting process. Depending on the complexity of the CRM topology that your plug-in is running in, the “bitness” of the various processes that will execute your plug-in may be incompatible with each other. In this case, the best solution would be to see if you can compile your plug-in code using the anycpu option as this would allow your plug-in to execute in each of these processes without any changes. If you require your plug-in to be compiled platform specific, then you will need to take into account how the plug-in is going to be registered, the processes that may execute the plug-in, and ensure that your plug-in is compiled in a manner that is consistent with the bitness with which those processes will run. This may, however, limit the portability of your solution and require that you have different plug-in assemblies for the different environments you plan on deploying your plug-ins in.</p>
<h4>Custom Workflow Activities</h4>
<p>Custom workflow activity assemblies pose many of the same challenges as plug-ins. The one scenario we can rule out is having the custom workflow activity executing in the Outlook client hosting process. However, both the IIS worker process and MSCRM Asynchronous service may load the custom workflow activity assembly at various points in a workflow’s lifetime. Therefore, like plug-ins, if you can compile your custom workflow activity assembly with the anycpu option, you can rely on the CLR and CRM to do the heavy lifting for you. If you need to compile your custom workflow activity assembly to be platform specific, you’ll need to ensure that you are registering a version of the assembly that is compatible with the CRM processes that it will execute in for the environments you want it to have it registered.</p>
<h4>SDK Client Applications</h4>
<p>This type of solution is the one that developers hit most often as the code is not executing from within CRM, but rather an external process that is reading and writing data from CRM via the SDK. When the code is executing within a CRM process, the CRM setup process will ensure that the correct SDK assemblies are in place to ensure that your solution can execute given the CLR restrictions already discussed. However, when calling the SDK from outside of CRM, your application needs to link to the appropriate SDK assemblies so that they can be loaded into your process. Luckily, this is easy to fix using the two sets of assemblies that are now included in the CRM 4.0 SDK. If we look back at the information we gathered from CorFlags.exe earlier, you’ll remember that the 32-bit SDK assemblies are compiled to target x86 and that 64-bit SDK assemblies are compiled to target anycpu. Given this information, simply linking against the 64-bit SDK assemblies from your client application will do the trick as these can be loaded in both 32-bit processes as well as 64-bit processes. If you are building a SDK client application that is going to execute as a 32-bit process only, then you can use either set of the SDK assemblies without running into any issues.</p>
<p><span style="font-size:medium;">Putting It All Together </span></p>
<p>As we’ve discussed, there are two sets of CRM 4.0 SDK assemblies – one for 32-bit and one for 64-bit. This may pose problems at runtime for your code, but with a few simple checks and some configuration when building your code, you can make your solution portable across the various environments where your code may execute. The simplest solution is to build your code using the anycpu so that it can target both 32-bit and 64-bit processes and let the CLR and CRM take care of the rest. Luckily enough, this is the default setting in Visual Studio, so you don’t even need to do anything to add this capability to your solution. Just remember to link against the 64-bit version of the SDK assemblies if you are going to potentially run your anycpu code from outside of CRM. If you do need to compile your code to target a specific platform, then you are going to limit the portability of your solution. In this case, you will need to verify that the platform that your code is compiled to target is the same platform that CRM is going to be executing in when tries to execute your code.</p>
<p>To get the CRM SDK assemblies I’ve referred to, you can <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=82E632A7-FAF9-41E0-8EC1-A2662AAE9DFB&#38;displaylang=en">download the latest version of the SDK</a>.</p>
<p><span style="font-size:medium;">Additional Resources:</span></p>
<ul>
<li><a href="http://msdn.microsoft.com/en-us/library/zekwfyz4.aspx">/platform Compiler Switch</a></li>
<li><a href="http://msdn.microsoft.com/en-us/library/ms973190.aspx#64mig_topic4">64-bit Applications</a></li>
<li><a href="http://msdn.microsoft.com/en-us/library/ms973190.aspx#64mig_topic4">Migrating 32-bit Managed Code to 64-bit</a></li>
<li><a href="http://msdn.microsoft.com/en-us/library/ms164699(VS.80).aspx">CorFlags.exe documentation</a></li>
</ul>
<p>Cheers,</p>
<p><a href="http://blogs.msdn.com/crm/pages/bio-nirav-shah.aspx" target="_blank">Nirav Shah</a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[The Different Between One Registry Cleaner Software And Another]]></title>
<link>http://techipedia.wordpress.com/?p=51</link>
<pubDate>Fri, 05 Sep 2008 02:58:09 +0000</pubDate>
<dc:creator>handonow</dc:creator>
<guid>http://techipedia.pl.wordpress.com/2008/09/05/the-different-between-one-registry-cleaner-software-and-another/</guid>
<description><![CDATA[Here’s a fact: 92% of computers run on Windows, and every 32-bit edition of Windows has a storage ]]></description>
<content:encoded><![CDATA[<p>Here’s a fact: 92% of computers run on Windows, and every 32-bit edition of Windows has a storage sector where options and settings are saved. This sector is called the registry, and it is one of the busiest databases in a computer. As such, it is one of the databases that are most susceptible to corruption and breakage. This is why the demand for an efficient registry fix is consistently high. <!--more--></p>
<p>But there are many options on the internet when it comes to a quick registry fix.</p>
<p>Which is the best one? Which registry fix is worth the download? Which registry fix will provide the best results?</p>
<p>In this article, we will review five of the most popular registry cleaners available on the World Wide Web today. It is hoped that you, the reader, will be guided properly on how to choose the best registry fix for your needs.</p>
<p>Registry Fix No. 1: Stompsoft Registry Repair</p>
<p>Stomp is known as the most thorough and most aggressive registry fix in the market today. Where other registry fixers can only diagnose 50 to 70 registry-related errors, Stomp can pinpoint more than 700.</p>
<p>Is this a good thing or a bad thing?</p>
<p>Some say that Stomp merely counts errors in the registry that Windows will auto-correct eventually. Some say that Stomp merely looks for errors in places where files don’t really have a bearing on the processes conducted by the system.</p>
<p>Regardless, Stomp’s aggressiveness wouldn’t hurt, and at the end of the day, it’s still about how well the registry is fixed, and on this, Stomp has a pretty good record.</p>
<p>Registry Fix No. 2: CCleaner</p>
<p>Being a free registry cleaner, CCleaner has built a huge and solid following, with most of its patrons claiming that they have been using this registry fix as soon as it was released almost 5 years ago, and they have never looked for any other reg cleaner since then.</p>
<p>For a free registry fix, CCleaner’s features are simply amazing. CCleaner does things right. It erases the useless and redundant files in the registry, and it never meddles with files that may affect the performance of Windows.</p>
<p>And it is constantly updated! This is something that free registry fixes can seldom afford.</p>
<p>Registry Fix No. 3: Registry Mechanic</p>
<p>Registry Mechanic is likewise a stable registry fix. With the newest update, Version 6.0, Registry Mechanic is now capable of recognizing previously unrecognizable errors, and correcting the same, resulting in a cleaner, better performance for your Windows-based PC.</p>
<p>Many online authorities attest to the integrity of Registry Mechanic, mainly because of the aforementioned stability and consistency of this registry fix. This has created a wave of acclaim for the program, which has been translated to many downloads for the same.</p>
<p>Registry Fix No. 4: Registry First Aid</p>
<p>Speaking of acclaims, if the number of awards is to be used as gauge, then Registry First Aid should top this list.</p>
<p>Registry First Aid is a registry fix that boasts of a seamless cleaning process for your Windows operating system. It promises a stable program that will provide the registry fix you need fast and easy.</p>
<p>Registry Fix No. 5: Registry Medic</p>
<p>Registry Medic’s claim to fame, on the other hand, lies in three things: its amazing user-friendly interface, its powerful scan engine, and its ability to remove and immunize your system from spyware and malware infestation.</p>
<p>Registry medic is indeed more than just a mere registry fix. It aims to be a spyware cure and prevention solution as well, making it one of the top downloads of people who wish to speed up and protect the integrity of their PCs.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Domino Notes 8 32-bit vs. 64-bit... when to use what when?]]></title>
<link>http://tokenblog.wordpress.com/?p=173</link>
<pubDate>Wed, 03 Sep 2008 22:47:56 +0000</pubDate>
<dc:creator>Rainier</dc:creator>
<guid>http://tokenblog.wordpress.com/2008/09/03/domino-notes-8-32-bit-vs-64-bit-when-to-use-what-when/</guid>
<description><![CDATA[Notes 8 Logo
Customer of mine is currently going through a migration of their Notes environment to N]]></description>
<content:encoded><![CDATA[[caption id="attachment_174" align="alignleft" width="93" caption="Notes 8 Logo"]<a href="http://tokenblog.files.wordpress.com/2008/09/nd8logo.jpg"><img class="size-full wp-image-174" src="http://tokenblog.wordpress.com/files/2008/09/nd8logo.jpg" alt="Notes 8 Logo" width="93" height="85" /></a>[/caption]
<p>Customer of mine is currently going through a migration of their Notes environment to Notes 8.0.1.  Of course, as any good customer would do, they want to re-evaluate their infrastructure and consulted with their favorite vendor, IBM.  One of the questions that came up was, would it behoove them if they switched from a 32-bit environment to a 64-bit environment in order to maximize performance and efficiency?</p>
<p>So here's the skinny and thanks to my teammate Matt Engstrom and IBM's Techline organization.  Windows itself can't use anything more than 4 GB of RAM per instance unless you're running 64-bit Windows.  If your organization is running 64-bit Windows, then you can also run 64-bit Domino, and take advantage of configurations that have more than 4 GB of RAM.</p>
<p>64-bit Domino is 100% compatible with both 32-bit Domino (so that you can run mixed server environments) and the Notes client.  The only thing to be aware of is that upgrading a 32-bit Domino server to 64-bits will take a little bit longer (maybe a couple of hours) because database indices need to be rebuilt with the 64-bit indexing engine.  It's a transparent process that happens automatically - no manual intervention required</p>
<p>Regarding 64-bit vs 32-bit support, the recommendation would be that if the servers are memory constrained then they would probably be better off with 64-bit, but if they are processor constrained then 64-bit probably wouldn't do much for them.  For details see: <a href="http://www-01.ibm.com/support/docview.wss?uid=swg21296452">http://www-01.ibm.com/support/docview.wss?uid=swg21296452</a>.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[64 Bit...]]></title>
<link>http://experiencetheexperience.wordpress.com/?p=6</link>
<pubDate>Wed, 03 Sep 2008 15:00:45 +0000</pubDate>
<dc:creator>Rindra Putra</dc:creator>
<guid>http://experiencetheexperience.pl.wordpress.com/2008/09/03/64-bit/</guid>
<description><![CDATA[Ahhoyyy&#8230;
this is your captain speaking, kekeke.. this will be my second post dan gw coba cari ]]></description>
<content:encoded><![CDATA[<p>Ahhoyyy...</p>
<p style="text-align:justify;">this is your <strong><span style="color:#000080;">captain</span></strong> speaking, kekeke.. this will be my second post dan gw coba cari kategori pertama buat blog gw ini, abis jiper ngeliat blog <a href="http://ricohsanusi.wordpress.com/">ricoh</a>..</p>
<p style="text-align:justify;">ok let's start, diawali oleh pembelian laptop compaq v3802 yang dilakukan pada bulan juni 2008 gw dah niat pingin memaksimalkan pengunaan laptop gw, nah secara yang diinstall pada saat pembelian ialah vista basic home edition sedangkan proc yang digunakan <strong>AMD Turion(tm) 64 X2</strong> hmmm..</p>
<p style="text-align:justify;">pada akhirnya setelah ditimbang maka diputuskan klo laptop gw beratnya sekitar <span><span style="font-size:9pt;font-family:Lucida Sans;">2.4 kg</span> </span>huehehehe... kembali ke laptop maka akhirnya diinstal lah <strong>vista ultimate 64</strong> kekeke.. sebenernya sih mo diinstalin <strong>Ubuntu</strong> tapi apa daya hardisk masih blom mencukupi, apalagi masih dibutuhkan buat nyimpen yang "seger-seger" dari GA2008 hehehe.. hehehe.. jadi intinya apa sih?? oleh karena digunakannya OS 64 bit oleh gw maka disini gw akan membahas kelebihan dari digunakannya aplikasi2 64 bit dan apa keunggulan dari OS 64 bit.</p>
<p><!--more Let's Learn more--><br />
<strong>32 bit vs 64 bit</strong></p>
<p style="text-align:justify;">jadi apa sih beda nya? oh ya lupa all of my post is based on my opinion so fell free to give me some comment if there is something wrong, hehehe..</p>
<p style="text-align:justify;">oke kita mulai, salah satu benefit dari menggunakan 64-bit long: memberikan kesempatan untuk processor menembus batasan 4gb memory (&#60;i&#62;padahal laptop gw cuma support max 4gb juga de... &#60;/i&#62;) selain itu juga memberikan ruang untuk General purpose register sebanyak 2 kali lipat dibandingkan proc 32-bi t(bayangkan saudara-saudara <strong>2 kali lipat</strong> hehehe..) which explains why it is faster than a 32-bit processor/mode dan juga memberikan kemungkinan optimasi aplikasi 64-bit. BTW: Windows  Vista 64-bit lebih cepat 10.9 % dibandingkan versi 32-bit, data didapat dari hasil benchmark pake <a href="http://www.primatelabs.ca/geekbench/">GeekBench</a>.</p>
<p style="text-align:justify;">Tapi perubahan dari 32-bit ke 64-bit membutuhkan modifikasi Operating System yang tidak sedikit untuk dapat menggunakan kelebihan arsitektur yang baru ini. Dan selain itu software juga harus di porting untuk dapat menggunakan fungsi atau kemampuan baru yang lebih baik; sedangkan software yang lebih lama biasanya tetap di support melalui <em>hardware compatibility mode</em> (di mode ini processors baru tetap mensupport instruksi 32-bit sebaik 64-bit version), menggunakan software emulasi<a class="mw-redirect" title="Emulation" href="http://en.wikipedia.org/wiki/Emulation"></a>, atau implementasi 32-bit processor core didalam 64-bit processor (contonya Itanium processors dari Intel, yang mensertakan x86 processor core untuk menjalankan applikasi 32-bit x86). Oerating systems untuk arsitektur 64-bit  biasanya mensupport applikasi 32-bit dan 64-bit.</p>
<p style="text-align:justify;">64-bit arsitektur memang dapat membuat pekerjaan yang melibatkan data set yang besar dalam appliksi seperti digital vide, komputasi scientific, dan database yang besar menjadi lebih mudah, ada pertimbangan apakah dalam mode kompabilitas dapat lebih cepat  dibandingkan dijalankan dalam sistem 32-bit situ sendiri. Di arsitektur x86-64 (AMD64), sebagian besar operating system dan aplikasi-aplikasi 32-bit dapat berjalan dengan baik menggunakan hardware 64-bit. selain itu kecepatan bukan cuma satu-satunya faktor yang perlu diperhatikan dalam perbandingan processor 32-bit dan 64-bit. Aplikasi seperti multi-tasking, stress testing, dan clustering (untuk <a title="High-performance computing" href="http://en.wikipedia.org/wiki/High-performance_computing">high-performance computing</a>), HPC, lebih cocok untuk arsitektur 64-bit makanya IBM, HP and Microsoft banyak mengembangkan penggunaan 64-bit.</p>
<p style="text-align:justify;"><strong>64-Bit Sofware Support</strong></p>
<p style="text-align:justify;">Terkadang x86-based 64-bit systems kurang kompatible terhadap software yang dibuat untuk arsitektur 32-bit. Masalah yang umum di temui di Microsoft Windows ialah device driver yang tidak kompatible, walaupun rata-rata software dapat berjalan di 32-bit compatibility mode (atau <a class="mw-redirect" title="Emulation" href="http://en.wikipedia.org/wiki/Emulation">emulation</a> mode) atau berjalan di 32-bit mode secara native (AMD64), hampir tidak mungkin menjalankan driver menggunakan mode<br />
tersebut. Untungnya hardware/device yang dibuat saat ini sudah memiliki 64-bit driver.</p>
<p>Naahhh, oleh karena itu mungkin salah satu pembahasan di blog gw ini mengenai kesulitan yang saya dapat saat menggunakan 64-bit OS ini dan share informasi atau software 64-bit yang saya temui dalam perjalanan berselancar di dunia maya...</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Windows XP and Windows Vista 32-bit and 64-bit]]></title>
<link>http://techqa.wordpress.com/?p=271</link>
<pubDate>Mon, 18 Aug 2008 21:56:51 +0000</pubDate>
<dc:creator>techqa</dc:creator>
<guid>http://techqa.pl.wordpress.com/2008/08/18/windows-xp-and-windows-vista-32-bit-and-64-bit/</guid>
<description><![CDATA[I&#8217;ve been asked what is the difference between Windows XP and VIsta 32-bit and 64-bit. It]]></description>
<content:encoded><![CDATA[<p>I've been asked what is the difference between Windows XP and VIsta 32-bit and 64-bit. It's a great question. So here's what I was able to dig up...</p>
<p>According to <a href="http://support.microsoft.com/kb/946765" target="_blank">Microsoft itself</a>... (more information is <a href="http://windowshelp.microsoft.com/windows/en-us/Help/41531554-d5ef-4f2c-8fb9-149bdc5c8a701033.mspx" target="_blank">available here</a>)</p>
<p>"The main differences between the 32-bit versions of Windows Vista and the 64-bit versions of Windows Vista relate to memory accessibility, memory management, and enhanced security features. The security features that are available in the 64-bit versions of Windows Vista include the following:</p>
<p>•Kernel Patch Protection<br />
•Support for hardware-backed Data Execution Protection (DEP)<br />
•Mandatory driver signing<br />
•Removal of support for 32-bit drivers<br />
•Removal of the 16-bit subsystem</p>
<p>One of the greatest advantages of using a 64-bit version of Windows Vista is the ability to access physical memory (RAM) that is above the 4-gigabyte (GB) range. This physical memory is not addressable by 32-bit versions of Windows Vista.</p>
<p>Depending on the version of Windows Vista that is installed, a 64-bit version of Windows Vista supports from 1 GB of RAM to more than 128 GB of RAM. The ability to address more physical memory lets Windows Vista minimize the time that is required to swap processes in and out of physical memory. Therefore, Windows Vista can manage processes more efficiently. This memory management feature helps improve the overall performance of Windows Vista."</p>
<p>According to <a href="http://www.webopedia.com/DidYouKnow/Computer_Science/2004/64_bit.asp" target="_blank">Webopedia</a>...</p>
<p><!--[if gte mso 9]&#62;  Normal 0     false false false  EN-CA X-NONE X-NONE              MicrosoftInternetExplorer4              &#60;![endif]--><!--[if gte mso 9]&#62;                                                                                                                                            &#60;![endif]--></p>
<p class="MsoNormal"><span style="font-size:12pt;line-height:115%;">-Users would note a performance increase because a 64-bit CPU can handle more memory and larger files</span></p>
<p class="MsoNormal"><span style="font-size:12pt;line-height:115%;">-most benefits of a 64-bit CPU will go unnoticed without the key components of a 64-bit operating system and 64-bit software and drivers which are able to take advantage of 64-bit processor features</span></p>
<p class="MsoNormal"><span style="font-size:12pt;line-height:115%;">-Benefits of 64-bit processors would be seen with more demanding applications such as video encoding, scientific research, searching massive databases; tasks where being able to load massive amounts of data into the system's memory is required.</span></p>
<p class="MsoNormal">
]]></content:encoded>
</item>
<item>
<title><![CDATA[GTA IV już wkrótce na PC]]></title>
<link>http://bewas.wordpress.com/?p=26</link>
<pubDate>Sun, 17 Aug 2008 14:44:33 +0000</pubDate>
<dc:creator>Bewas</dc:creator>
<guid>http://bewas.pl.wordpress.com/2008/08/17/gta-iv-juz-wkrotce-na-pc/</guid>
<description><![CDATA[Na stronie gtasite.pl znalazłem informację, iż GTA IV jednak będzie wydane na komputery PC.
Tre]]></description>
<content:encoded><![CDATA[<p>Na stronie <a href="gtasite.pl">gtasite.pl</a> znalazłem informację, iż GTA IV jednak będzie wydane na komputery PC.</p>
<p><strong>Treść informacji:</strong></p>
<blockquote><p>Dzisiejszego pięknego dnia, firma <em>Take Two</em>, dystrybutor serii <strong>Grand Theft Auto</strong>, powiedział naprawde ciekawą wiadomość, mianowicie to, iż <strong>Grand Theft Auto IV</strong> <span style="text-decoration:underline;">zostanie wydane na <strong>PC</strong></span>! Nie, to nie jest żart! GTA IV na PC zostanie wydane 18 Listopada 2008 roku w Ameryce, a <strong>21 Listopada w Europie!</strong> Tak więc, wszystkie "przepowiednie" się potwierdziły, a teraz pozostaje nam tylko czekać...</p>
<p>Oto wypowiedź Sama Housera, dyrektora Rockstar Games na ten temat:</p>
<p>,,<strong>Jesteśmy bardzo podekscytowani wydaniem Grand Theft Auto IV na PC. Cały zespół został dedykowany do stworzenia jednej z najlepszych gier na PC. Gra wygląda bardzo przepięknie, jest super grywalna i nie możemy doczekać się, aby wszyscy mogli w nią zagrać. Zapraszamy niedługo na stronę <a href="http://www.rockstargames.com/IV" target="_blank">GTA IV</a>, aby dowiedzieć się więcej!</strong>"</p></blockquote>
<p><strong>Wkrótce potem pokazała się następna, równie ciekawa informacja:</strong></p>
<blockquote><p><a href="http://www.gtainside.com/en/images/content/gta4_pc_cover.jpg" target="_blank"><img class="alignleft" style="border:0 none;" src="http://www.gtainside.com/en/images/content/gta4_pc_cover.jpg" border="0" alt="" width="180" height="254" /></a>G4TV.com ujawniło okładkę brytyjskiego wydania <strong>GTA 4</strong> w wersji na PC.</p>
<p>Oprócz tego mamy kilka nowych informacji.</p>
<p>Z napisu "Games for windows" który umieszczony jest na górze okładki, możemy wywnioskować iż gra będzie obsługiwać technologie 32 oraz 64 bitowe.</p>
<p>Druga informacja to napis "Live" po prawej stronie pudełka, który daje nam do zrozumienia iż multiplayer będzie opierać się o tą samą technologie co wersja na Xbox360. Istnieje także prawdopodobieństwo że gracze zarówno z wersji PC jak i Xbox360 mogli by grać razem i korzystać wspólnie z usługi "Live".</p>
<p>Niestety póki co to są plotki, których Rockstar Games nie zdementował oraz nie potwierdził.</p>
<p>Dalej z niecierpliwością czekamy na chyba najważniejsze info czyli wymagania sprzętowe oraz kiedy ukażą się pre-ordery <strong>GTA 4</strong> w Polsce.</p></blockquote>
<p><strong>Warto się cieszyć z tych informacji, bo:</strong></p>
<p><strong>Po pierwsze </strong>- GTA San Andreas stanieje :)</p>
<p><strong>Po drugie</strong> - najprawdopobniej (ale nie napewno) będzie można grać na PC przez multipalyera bez instalowania aplikacji firm trzecich</p>
<p><strong>Po trzecie</strong> - bo grafika będzie ultrarealistyczna i będzie można zobaczyć wiele szczegółów Liberty City, których nie widziało się w GTA III czy w GTA: LCS na konsole.</p>
<p>Ciekawe, czemu Take Two Interactive i Rockstar Games chcą wypuścić grę w wersji 32x i 64x bitowej...</p>
<p>O wszystkich zmianach będę pisał na moim blogu :)</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Vista FTW?]]></title>
<link>http://cizahagholm.wordpress.com/?p=59</link>
<pubDate>Sun, 17 Aug 2008 14:07:01 +0000</pubDate>
<dc:creator>Kalle</dc:creator>
<guid>http://cizahagholm.pl.wordpress.com/2008/08/17/vista-ftw/</guid>
<description><![CDATA[Jag har köpit mig en ny laptop eftersom jag om två veckor byter jobb och jag tyckte det var bättr]]></description>
<content:encoded><![CDATA[<p>Jag har köpit mig en ny laptop eftersom jag om två veckor byter jobb och jag tyckte det var bättre att köpa en ny än att köpa loss den gamla (hem-PC, den som jag skriver detta på). Nya maskiner har oftast Vista, likaså denna sprillans nya <a title="Dell Studio 17" href="http://www1.euro.dell.com/content/products/productdetails.aspx/laptop_studio_17?c=se&#38;cs=sedhs1&#38;l=sv&#38;s=dhs">Dell Studio 17</a>. Min tanke var att se om jag kunde få in 64-bitars Vista i den istället för den 32-bitars som följer med, för att till fullo utnyttja de 4 GB RAM som jag valde (jag ser ca 3,5 GB med 32-bitars vilket förstås är helt ok, men det vore fint att få tag på allt förutom eventuell prestandaökning hos ett 64-bitars OS). Nåväl, skiva har jag och så, men jag stöter på patrull när jag bootat upp installationen. Då vill den nämligen ha en drivrutin för DVD-läsaren och jag går bet på att hitta en sån. Det är lite irriterande när jag vet att DVD-läsaren rent teoretiskt faktiskt hade kunnat användas som en standard-läsare av Windows (särskilt som den ju lyckas boota från den), men den kräver att få just en specifik drivrutin och vägrar gå vidare.</p>
<p>Så här sitter jag efter ett par dagars försök att komma förbi det steget och får bita i det sura äpplet och installera 32-bitars istället (jag vill installera om för att slippa dumheter som Dell installerat, tex Google desktop etc). Som tur är har folk meddelat att det funkar sisådär med många program som inte är anpassade för 64-bitars-OS, så jag kanske inte förlorar så mycket. I värsta fall är det även så att jag får backa till XP (kanske 64-bit dock) för att kunna köra helikoptersimulatorn (Reflex XTR) och musikprogram (Nuendo). Men det får vi se om en stund när jag installerat klart. Nu har den i alla fall precis gjort sin första omstart under installationen (varför måste Windows starta om så förbannat ofta?).</p>
<p>En roligare sidonotering är att den nätverksdisk på 1 TB som jag köpte begagnad härom veckan snurrar på bra och har fått alla låtar, filmer, foton osv på sig och vi använder hittills ca 20% av dess kapacitet. Trevligt. :)</p>
<p>Omstart 2.</p>
<p>Och nu har jag konfigurerat klart och självklart så har den inte hittat lämpliga drivrutiner för varesig det trådlösa eller det trådade nätverket, så jag har svårt att leta efter uppgraderingar för dem. Den vill visst inte leka med mig. Nåja, försöker man göra sånt som inte är tänkt får man väl skylla sig själv.</p>
<p>På't igen.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Writting x86 disassembler. Basics.]]></title>
<link>http://altjournal.wordpress.com/?p=7</link>
<pubDate>Tue, 12 Aug 2008 20:18:52 +0000</pubDate>
<dc:creator>Altavist</dc:creator>
<guid>http://altjournal.pl.wordpress.com/2008/08/12/writting-x86-disassembler-the-first-day/</guid>
<description><![CDATA[I decided to write x86 disassembler. What for? Without any reasons, just for fun. First of all, I us]]></description>
<content:encoded><![CDATA[<p>I decided to write x86 disassembler. What for? Without any reasons, just for fun. First of all, I used <a href="http://google.com">Google</a> and found <a href="http://www.intel.com/products/processor/manuals/">a page with direct links to Intel manuals in PDF format</a>. I downloaded "Intel® 64 and IA-32 Architectures Software Developer's Manual" volumes <a href="http://download.intel.com/design/processor/manuals/253666.pdf">2a</a> and <a href="http://download.intel.com/design/processor/manuals/253667.pdf">2b</a>.</p>
<p>I read Chapter 2 "Instruction format" (see volume 2a), and found out something about x86 instruction format. In short, x86 instruction has the following format:</p>
<pre style="font-size:12px;">&#124; Prefix(es) &#124; Opcode(s) &#124;
+------------+-----------+
&#124; up to 4    &#124; one-, two-&#124;
&#124; one-byte   &#124; or three- &#124;
&#124; prefixes   &#124; byte op-  &#124;
&#124;            &#124; code      &#124;</pre>
]]></content:encoded>
</item>

</channel>
</rss>
