<?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>core2 &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://en.wordpress.com/tag/core2/</link>
	<description>Feed of posts on WordPress.com tagged "core2"</description>
	<pubDate>Thu, 24 Dec 2009 13:33:55 +0000</pubDate>

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

<item>
<title><![CDATA[Affinities and ulimit]]></title>
<link>http://hbfs.wordpress.com/2009/12/01/affinities-and-ulimit/</link>
<pubDate>Tue, 01 Dec 2009 11:14:55 +0000</pubDate>
<dc:creator>Steven Pigeon</dc:creator>
<guid>http://hbfs.wordpress.com/2009/12/01/affinities-and-ulimit/</guid>
<description><![CDATA[The Bash ulimit built-in can be used to probe and set the current user limits. Such limits include t]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>The Bash <tt>ulimit</tt> built-in can be used to probe and set the current user limits. Such limits include the amount of memory a process may use or the maximum number of opened files a user can have. While <tt>ulimit</tt> is generally understood to affect a whole session, it can be used to change the limits of a group of processes using, for example, a sub-shell.</p>
<p>However, the <tt>ulimit</tt> command is quirky (it expects a particular order for parameters and not all may be set on the same command line) and does not seems to be ageing all that well. For one thing, one cannot set the affinity of processes&#8212;indirectly controlling the number of and which cores one can use in a multi-core machine.</p>
<p><!--more--></p>
<p>Invoking the command with <tt>-a</tt> will list all current limits with corresponding switches and units:</p>
<pre class="brush: bash;">
$ ulimit -a
core file size          (blocks, -c) 0
data seg size           (kbytes, -d) unlimited
scheduling priority             (-e) 0
file size               (blocks, -f) unlimited
pending signals                 (-i) 16383
max locked memory       (kbytes, -l) unlimited
max memory size         (kbytes, -m) unlimited
open files                      (-n) 1024
pipe size            (512 bytes, -p) 8
POSIX message queues     (bytes, -q) 819200
real-time priority              (-r) 0
stack size              (kbytes, -s) 8192
cpu time               (seconds, -t) unlimited
max user processes              (-u) 16383
virtual memory          (kbytes, -v) unlimited
file locks                      (-x) unlimited
</pre>
<p>To modify the execution environment with <tt>ulimit</tt> one can either invoke <tt>ulimit</tt> at the current shell level or use it within a sub-shell as we saw <a href="http://hbfs.wordpress.com/2009/09/22/the-zune-freezes-more-on-unit-testing/" target="_blank">previously</a>. For example, to set soft and hard time limits for a program:</p>
<pre class="brush: bash;">
$ (ulimit -t 2  -St 1; this-or-that-program )
</pre>
<p>If you look at the list of options provided by <tt>ulimit</tt> one is conspicuously missing. If we have the maximum scheduling priority for a given program, we can&#8217;t set its <a href="http://en.wikipedia.org/wiki/Processor_affinity" target="_blank">affinity</a>, that is, the CPU(s) on which it will be constrained to run.</p>
<p>This seems like a useless constraint to put on a process but it may not. For time-critical application, we may not want to have a processing shifting from core to core possibly trashing caches in the process. You may also want to keep a user from sucking up all CPU time by using all cores. Another reason is the speed stepping.</p>
<p><a href="http://en.wikipedia.org/wiki/SpeedStep" target="_blank">Speed Stepping</a> will allow a processor to dynamically change its power consumption by adjusting its internal clock speed&#8212;and also possibly its core voltage. Idle processors return to a low clock frequency if the computer&#8217;s policy is set accordingly.</p>
<p>Suppose that on a machine we have one demanding process running full speed. If one has many cores, all but the cores running the currently demanding process are in low speed and power consumption mode. However, the OS may well decide to migrate the process from its current core to some other core. But the other core is in low speed/power mode so is running the process much slower for a while, at least until the system&#8217;s power policy allows that core to kick in high gear and increase its frequency to its maximum. Meanwhile, the recently abandoned core returns to low speed/power mode as it is now idle.</p>
<p>On my current Laptop (using a Core 2 Duo P8700) SpeedStep allows the cores to be independently managed. Using Gnome&#8217;s CPU frequency monitoring task bar applet, I see that the speed of the cores vary independently. I also see a demanding process migrate from one to the other for no apparent reason. I do not know what goes on in the scheduler; maybe if two demanding processes are mapped to the same core even for a very short period of time, one of the two gets migrated? Either way, I see a process migrate to a slower processor for no apparent reason and the scheduler doesn&#8217;t seems to know about SpeedStep.</p>
<p>The crudest and direct way of solving the problem is to use a call to <tt>sched_setaffinity</tt> function and set explicitly the affinity to a given set of processors. This works perfectly well, but it means that you have to modify your software to take affinity into account, possibly through new command line options. That&#8217;s rather cumbersome.</p>
<p>I propose to extend the <tt>ulimit</tt> built-in to offer control over affinity for processes. Maybe <tt>-w</tt> (for &#8220;working&#8221; processor) or <tt>-g</tt> (for group of processors) would make a good switch? The syntax could be a hex map or a list:</p>
<pre class="brush: bash;">
$ ( ulimit -w=2,3 ; this-or-that-program )
</pre>
<p>Maybe a more general mechanism for architecture-specific limits should be added? I&#8217;d be happy for now with an extra option for affinity.</p>
<p align="center">*<br />*&#8195;*</p>
<p>SpeedStepping isn&#8217;t only beneficial for laptops and netbooks, it is beneficial for servers and whole data centers as well. I have no serious data on this, but I guess that a typical data center has its peak hours of usage but remains idle a large part of the day. For example, a local service provider will get lots of hits during some peak hours (lunch time, evenings) but comparatively little during the night and early morning. During the idling hours, I guess someone could save a <em>lot</em> of money by using speed stepping. Not only slower CPU draw less power, they also dissipate a lot less heat. Heat is a major problem for large data centers and results in more power consumption as cooling is necessary.</p>
<p align="center">*<br />*&#8195;*</p>
<p>I think <tt>ulimit</tt> command should be extended to include new functionalities such as the processes&#8217; affinity. I know that one can just include the affinity management in the application itself, but it seems to make more sense to shift the responsibility of setting affinities to the shell as it does not require the modification of an existing piece of software. Furthermore, shifting this responsibility outside the application allows for easier power and machine-usage policies managed by system-level scripts.</p>
<p align="center">*<br />*&#8195;*</p>
<p>Readers will point me to <tt>taskset</tt>, a command-line tool that can be used to provide a CPU list for affinity and launch a program. The thing with <tt>taskset</tt>, while it does work properly, is that it doesn&#8217;t permeate the user&#8217;s environment in the same way limits do. Of course, all processes that descend from a process launched with taskset will inherit from the affinities, but that doesn&#8217;t seems to be session-wide as limits are. Limits are set sometime during login, and <em>all</em> user processes for that session inherits from the initially set limits, without the intervention of the user. Of course, we could use taskset to somehow emulate the behavior, but that&#8217;d be a special case handled by a <tt>sessionrc</tt> script or something like that.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Intel Processor Identification Utility 4.10]]></title>
<link>http://filemirrors.wordpress.com/2009/05/09/intel-processor-identification-utility-4-10/</link>
<pubDate>Sat, 09 May 2009 16:38:58 +0000</pubDate>
<dc:creator>filemirrors</dc:creator>
<guid>http://filemirrors.wordpress.com/2009/05/09/intel-processor-identification-utility-4-10/</guid>
<description><![CDATA[The Intel Processor Identification Utility was developed to identify the processor inside a system, ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img src="http://filemirrors.wordpress.com/files/2009/05/intel-processor-identification-utility.jpg" alt="intel-processor-identification-utility" title="intel-processor-identification-utility" width="650" height="505" class="alignnone size-full wp-image-267" /></p>
<p>The Intel Processor Identification Utility was developed to identify the processor inside a system, assuring the processor contains intended technologies and is operating at the tested and rated frequency. This version of the Intel Processor Identification Utility will properly identify Intel Core i7 Extreme, Core i7, Core2 Quad, Intel Core2 Duo, Intel Core2 Duo Mobile, Intel Core2 Extreme, Intel Core Duo, Intel Core Solo, Intel Atom, Pentium Dual-Core, Pentium Dual-Core mobile, Pentium D, Pentium Processor Extreme Edition, Pentium 4 Processor Extreme Edition, Pentium 4, Pentium M, Celeron Dual-Core, Celeron D, Celeron M, Celeron, Mobile Pentium 4, Mobile Celeron, Multi-Core Intel Xeon, Dual-Core Intel Xeon and Intel Xeon processors. Older Intel processors can be identified with the Intel Processor Frequency ID Utility.</p>
<p>- <a href="http://uploading.com/files/9DXWBY8H/pidenu21.msi.html" target="_blank"><b>Download Intel Processor Identification Utility 4.10</b></a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Benchmark Phenom II dan Core i7]]></title>
<link>http://tuxlin.wordpress.com/2009/02/01/benchmark-phenom-ii-dan-core-i7/</link>
<pubDate>Sun, 01 Feb 2009 14:39:46 +0000</pubDate>
<dc:creator>tuxlin</dc:creator>
<guid>http://tuxlin.wordpress.com/2009/02/01/benchmark-phenom-ii-dan-core-i7/</guid>
<description><![CDATA[Setelah ditunggu-tunggu, akhirnya muncul juga penerus Phenom, Daneb a.k.a Phenom II. Prosesor ini su]]></description>
<content:encoded><![CDATA[Setelah ditunggu-tunggu, akhirnya muncul juga penerus Phenom, Daneb a.k.a Phenom II. Prosesor ini su]]></content:encoded>
</item>
<item>
<title><![CDATA[Free Deals for Laptops]]></title>
<link>http://compgraphics.wordpress.com/2009/01/29/free-deals-for-laptops/</link>
<pubDate>Thu, 29 Jan 2009 10:01:28 +0000</pubDate>
<dc:creator>greg</dc:creator>
<guid>http://compgraphics.wordpress.com/2009/01/29/free-deals-for-laptops/</guid>
<description><![CDATA[Here is a chance I get, to share my experience on the shopping whether it is buying a laptop or toys]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Here is a chance I get, to share my experience on the shopping whether it is buying a laptop or toys for kids or a phones or DVD or anything else . Most of the time when we discuss with friends on shopping they always raise a question, where to purchase , whats the price and the would it be the best quality you expect at a lower price , you have Guarantee / warranty etc . Behind all these questions , the core information you want to attain is the certificate from your friend/colleague on a certain product , because of the trust/relationship/confidence you have with your friend. And you always follows your friend proposal because you feel thats something that your friend certifies it.</p>
<p><span style="font-family:arial;"><strong>You can also even inherit this with in youself if you can analyse the existing market trend on that certain product</strong></span> <strong>and answer the following questions.</strong><br />
1. different vendors available in the market ,<br />
2. various reputed retail stores availabe online / nearby your location ,<br />
3. get enough technical specification on the product , and decide which one you want to buy based on your budget.<br />
4. browse through the various websites and get reviews on the product ,<br />
5. success/failure case reported on that product ,<br />
6. also get the best hot deal offered currently for that product in the market.</p>
<p>Most of the time you dont get enough time to work on the above home work and hence you depend on your friends suggestion, reference. I would say that above explained is a smal task which could probably take a weeks time or 10 days if you can afford to spends few hours a day.<br />
Recently I happen to face a similar scenario with one of my friends and she was asking me to give suggestion on which laptop to buy &#38; her budget is around 500$. I worked on this and presented my details below . And i thought this is worth sharing it with everyone who has the similar situation.</p>
<p>When we talk about laptops, few vendors that strike your mind immediately is HP , DELL , SONY , LENOVA , TOSHIBA , ACER , ASUS and and many other in the marker . Among these certainly you cant afford to get a sony product with our current budget. So i focussed by search towards HP , DELL, LENOVA , TOSHIBA .</p>
<p><strong>Processor ( CPU ) :</strong><br />
Also another main question that we should get clarified is , which processor we can possibly get for our budget. Ofcourse Intel is the pioneer in this industry and lets focus and see if we can get this with in our budget. Because CPU is one of the key components of your computer where you should not compromise on this because it directly impacts your system performance and moreover this is one time investment which you gonna probably use it for another 10 years. So dont get your computer out dated / obsolete with in next 2 years or so and finally end up getting frustated. Intel Core2 Duo is higher version of Intel centrino and so as the price.</p>
<p>Before we move on , I want to share the important information regarding the processors to best suits yours needs. meaning if you looking for laptop or desktop or just a computer that you can give it to your parents for minimum use. Intel broadly classified processors in to three categories based on the performance and compatibility.</p>
<p>1. Processors used for Laptops.</p>
<ol>
<li>
<div>Intel Core2 extreme mobile</div>
</li>
<li>
<div>intel centrino2</div>
</li>
<li>
<div>intel centrino</div>
</li>
<li>
<div>Intel Core2 Duo</div>
</li>
<li>
<div>intel Pentium</div>
</li>
<li>
<div>intel Celeron</div>
</li>
</ol>
<p>2. Processors used for Desktop</p>
<ol>
<li>Intel Core i7 Extreme</li>
<li>Intel Core i7</li>
<li>Intel Core2 extreme</li>
<li>Intel Core2</li>
<li>Intel Core2 Quad</li>
<li>Intel Core2 Duo</li>
<li>Intel Pentium</li>
<li>Intel Celeron</li>
</ol>
<p>3. Processors used for minimum usage.</p>
<ol>
<li>Intel Atom processor for mobile</li>
<li>Intel Atom processor for netbooks</li>
<li>Intel Atom processor for nettops</li>
</ol>
<p>Among the list given above, if your requirement is just to use the laptop for email and internet , then i would suggest section3 ( 3.2 or 3.3 preferrable ). If your requirement is for heavy usage like a webmaster , watch movies , games , multitasking , high resolution , fast performance, you may have to choose either in section 1 or 2. This information is worth because , from hereon whenever you visit some online store and visit nearby store , when some rep explains you , you can understand whether it is worth that much money or not. And you can also tell him clearly that my usage is so and so and this is what i want to choose. As simple as that and you can be more confident. thats cool.</p>
<p><a href="http://www.intel.com/Consumer/Learn/family-internet-devices.htm#/Mobile-centrino_atom/">Tour on Intel Processors</a></p>
<p>Netbooks may look like laptops, but they don&#8217;t have the full capabilities of a computer. Instead, a netbook specializes in mobility and the Web, so it&#8217;s great for travel or as a supplement to your main PC.</p>
<p><strong>RAM ( Random Access Memory )</strong></p>
<p>Currently there are different types of RAMS available in the market . 1GB , 2GB , 3GB . Higher the memory you select , higher the price.</p>
<p><strong>Hard Disk :</strong></p>
<p>There are many manufacturers in the market for HDD . Some of them are HP , Toshiba , Seagate ,Adtron, Hitachi , Fujitsu , Quantum etc . Typically the HDD varies from 60 GB to 240 GB . Price varies according to the one you choose.</p>
<p>Ok . Now lets go in to each one of these official websites and grab some detailed information.</p>
<p>First try to check in the official websites of the manufacturers ( HP.com , Dell.com , acer.com , Lenova.com ) . If you dont get good deals in here , then you can try deals2buy.com .</p>
<p><a title="daily new deals" href="http://www.dailynewdeals.com" target="_blank">Daily New Deals</a></p>
<p><a title="deals zip" href="http://www.dealszip.com" target="_blank">Deals zip</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Intel core i7: Processador bugado e caro!]]></title>
<link>http://diogoparker.wordpress.com/2008/12/02/intel-core-i7-processador-bugado-e-caro/</link>
<pubDate>Tue, 02 Dec 2008 16:15:10 +0000</pubDate>
<dc:creator>diogoparker</dc:creator>
<guid>http://diogoparker.wordpress.com/2008/12/02/intel-core-i7-processador-bugado-e-caro/</guid>
<description><![CDATA[No dia 17 de Novembro (meu aniversário : P) a Intel lançou seu novo pocessador, o famoso Core i7 (Na]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://diogoparker.files.wordpress.com/2008/12/6009.jpg"><img class="alignleft size-full wp-image-72" title="6009" src="http://diogoparker.wordpress.com/files/2008/12/6009.jpg" alt="6009" width="250" height="299" /></a>No dia 17 de Novembro (meu aniversário : P) a Intel lançou seu novo pocessador, o famoso Core i7 (Nahalen), esse novo processador se destacou principalmente pelo seu preço, já que o desempenho não é grande coisa maior que o antico Core 2.</p>
<p>Mas o que chama atenção é que a Intel anunciou oficialmente <a href="http://download.intel.com/design/processor/specupdt/320836.pdf">nesse documento</a> que o processador sofre do mesmo mal (bug no TLB), muito criticado nos processadores Phenom e Opteron da AMD.</p>
<p>Acontece que o tempo passou e hoje a AMD tem o Phenom II, que deve ter um desempenho excelente e é totalmente livre desse bug.</p>
<p>Parece que a Intel cuspiu pra cima, não é mesmo?</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Your First Hello World Program  ]]></title>
<link>http://votedlinks.wordpress.com/2008/11/27/your-first-hello-world-program/</link>
<pubDate>Thu, 27 Nov 2008 18:25:06 +0000</pubDate>
<dc:creator>diggsamachar</dc:creator>
<guid>http://votedlinks.wordpress.com/2008/11/27/your-first-hello-world-program/</guid>
<description><![CDATA[Start Visual C# Express. If you run the C# for the first time it will take slightly more time as it ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Start Visual C# Express. If you run the C# for the first time it will take slightly more time as it configures the environment for the first time. Once C# is running select File -&#62; New project. From the project dialog, select the Console application. This is the most basic application type on a Windows system.</p>
<p>Read the complete Tutorial at</p>
<p><a href="http://www.referencedesigner.com/tutorials/csharp/csharp_2.php"> Your first C# program </a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[HP HDX18 Notebook ]]></title>
<link>http://janatanews.wordpress.com/2008/11/25/hp-hdx18-notebook/</link>
<pubDate>Tue, 25 Nov 2008 01:16:38 +0000</pubDate>
<dc:creator>janatanews</dc:creator>
<guid>http://janatanews.wordpress.com/2008/11/25/hp-hdx18-notebook/</guid>
<description><![CDATA[HDX18 notebook is a powerful notebook if you include the option of 2.8 GHz processor. It will howeve]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>HDX18 notebook is a powerful notebook if you include the option of 2.8 GHz processor. It will however cost you close to $2000 in its configuration with T9600 processor ( Core 2 Duo , 2.8 GHz). But the main reason you may want to buy this one is its big 18 inch display. You may like to configure it for 3GBytes memory for optimum performance to price ratio. </p>
<p>Full review at <a href="http://janatanews.com/2008/nov/HP_HDX18_Review.php"> HP HDX18 </a></p>
<p>on <a href="http://janatanews.com"> janatanews </a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[ Gateway T-6330U Review ]]></title>
<link>http://diggsamachar.wordpress.com/2008/11/22/gateway-t-6330u-review/</link>
<pubDate>Sat, 22 Nov 2008 23:34:22 +0000</pubDate>
<dc:creator>diggsamachar</dc:creator>
<guid>http://diggsamachar.wordpress.com/2008/11/22/gateway-t-6330u-review/</guid>
<description><![CDATA[I have observed that many users or prospective buyers want a quick pros and cons and a quick overvie]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>I have observed that many users or prospective buyers want a quick pros and cons and a quick overview in place of reading lengthy reviews. In today&#8217;s fast pace life no one has time to read on a 4 page review on one particular product and then move on to read review on other product.</p>
<p>With this in mind I am changing my style of writing. I will give a quick pros and cons followed by a quick final thought. If you feel like it is something that appeals you can always continue to ready or you may move on. </p>
<p>You may read the complete review at </p>
<p><a href="http://janatanews.com/2008/nov/gateway_t6330_Review.php">Gateway T-6330U review </a></p>
<p>Posted at <a href="http://janatanews.com"> janatanews </a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[CyberPower intros Gamer Xtreme XI system ]]></title>
<link>http://lnix.wordpress.com/2008/10/05/cyberpower-intros-gamer-xtreme-xi-system/</link>
<pubDate>Sun, 05 Oct 2008 16:46:41 +0000</pubDate>
<dc:creator>ttyX</dc:creator>
<guid>http://lnix.wordpress.com/2008/10/05/cyberpower-intros-gamer-xtreme-xi-system/</guid>
<description><![CDATA[CyberPower has just introduced the Gamer Xtreme XI, an Intel Core 2 Extreme based system designed wi]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>CyberPower has just <a href="http://www.techspot.com/vb/topic113356.html" target="_blank">introduced</a> the Gamer Xtreme XI, an Intel Core 2 Extreme based system designed with gaming and performance computing in mind. The Gamer Xtreme XI combines a factory overclocked Intel Core 2 Extreme QX9770 quad-core processor running at an impressive 4.0GHz, with a pair of powerful Nvidia GeForce GTX 280 cards featuring SLI and PhysX support.</p>
<p><img src="http://www.techspot.com/fileshost/newspics2/2008/cyberpower-gamer-xtreme-xi.jpg" border="0" alt="" /><br />
CyberPower claims their system can handle even the most graphically intense computer games, but as you might expect it also carries an obscenely high price tag. Starting at $4939, this beast features 4GB of Corsair’s DDR3 PC1333 Dual Channel memory, twin 500 GB SATA II 7200 RPM hard drives in a RAID-0 configuration and a LG Blu-ray / HD-DVD optical drive, all this enclosed in an NZXT Khaos full tower case – which offers no extraordinary features and at $400 is just a poor choice (<a href="http://www.techspot.com/review/107-nzxt-khaos-case/" target="_blank">read our review</a>) for an already expensive gaming rig. For an already generous price tag, they <a href="http://www.techspot.com/review/117-lian-li-tyr-pc-x2000/" target="_blank">could have done better</a> in that aspect.</p>
<p>The CyberPower Gamer Xtreme XI should go head to head with the likes of the HP Blackbird 002 and Alienware Area-51 ALX and can be ordered now (and further customized) <a href="http://www.cyberpowerpc.com/system/Gamer_Xtreme_XI/" target="_blank">at CyberPower’s website</a>.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[IVDesk and The COR: A True Matter-Centric Solution for Law Firms]]></title>
<link>http://ivdesk.wordpress.com/2008/09/16/ivdesk-and-the-cor-a-true-matter-centric-solution-for-law-firms/</link>
<pubDate>Tue, 16 Sep 2008 00:48:31 +0000</pubDate>
<dc:creator>Bill Sorenson</dc:creator>
<guid>http://ivdesk.wordpress.com/2008/09/16/ivdesk-and-the-cor-a-true-matter-centric-solution-for-law-firms/</guid>
<description><![CDATA[IVDesk and The COR join forces to give law firms an affordable way to establish a true matter-centri]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><em>IVDesk and The COR join forces to give law firms an affordable way to establish a true matter-centric environment with improved risk management. Lawyers enjoy a full-service office anywhere in the world, including powerful document and email management, with just a computer and an Internet connection.</em></p>
<p>(PRWEB) September 15, 2008 – IVDesk (<a href="http://www.ivdesk.com">http://www.ivdesk.com</a>), a leading web-based remote hosting company, and COR2 Technology (<a href="http://www.cor2.com">http://www.cor2.com</a>), developer of the innovative The COR collaborative document management system, announce a partnership to offer law firms an affordable way to completely streamline operations electronically. Law firms are trading mountains of redundant paperwork for a better solution to share and manage their data.</p>
<p>Each company continues to offer their respective systems individually, or as a combined effort to optimize data management in a highly secure and remote environment. Law firms can control and share every record, document, email, attachment and scanned image from anywhere in the world. Individual permissions also allow staff, clients, and colleagues a more economical way to collaborate and share data.</p>
<p><strong>Increased Billable Hours</strong><br />
Billable hours are guaranteed to increase with a drastic reduction in wasted time searching for files, driving to meetings, and redundant printing and filing. Productivity increases as lawyers gain a more convenient way to work remotely and collaborate electronically.</p>
<p><strong>Built-In Risk Management</strong><br />
Implementing a risk management plan for electronic data is easy with individual security settings and continuous monitoring. Users subscribe to data and receive immediate notification upon any activity.</p>
<p><strong>Premium Retention and Records Management</strong><br />
All records, documents, emails, attachments and scanned images are stored electronically, made searchable, indexed, and protected. Unlimited storage is included to prevent confining limits on current or archived data.</p>
<p><strong>Convenient Collaboration</strong><br />
Cases can be managed more efficiently with a useful “check in/check out” process for files. Firms can expedite all areas of their business, such as accounting, client communication and administrative tasks. For example, accountants can be setup to access tax information or clients can login and download their own invoices.</p>
<p><strong>Extensive Search Capability</strong><br />
With a powerful, built-in search engine, all files and email are indexed and searchable down to the last word. Users can simply enter a client name, case number, or phrase to find targets quickly and effortlessly.</p>
<p><strong>Tight Security</strong><br />
Both companies take security very seriously and invest in top-ranked technology and solid policies. Data is fully encrypted, 100% protected, and backed up in multiple locations every day. Small office servers are not capable of providing the security law firms need to lock down their highly confidential matter.</p>
<p><strong>Full Integration</strong><br />
IVDesk and The COR not only complement each other, they are also compatible with nearly any operating system or application, including a myriad of legal software.</p>
<p><strong>The Portable Office</strong><br />
Using convenient cloud computing technology, lawyers can take their office anywhere around the world. With just a computer and an internet connection, users work just as if they were sitting at their desk.</p>
<p><strong>Helpful Training and Unmatched Support</strong><br />
Law firms will appreciate the ease of transitioning from a redundant paper system to a more effective electronic system with a customized implementation plan, thorough training program, and 24/7 support. Personal help is always available so there is virtually no down time.</p>
<p>“IVDesk has listened to our legal clients and heard an overwhelming need for a true matter-centric solution. We are extremely pleased to offer The COR as an addition to our remote application services to stop the paperwork madness endured by law firms and provide a robust document and email management answer, ” stated Randy Olson, VP of Sales for IVDesk.</p>
<p>Scott Lombard, CEO of COR2 Technology, adds, “Our partnership with IVDesk allows firms to enjoy all the benefits of The COR in a flexible and truly remote environment. The two systems are independently valuable, but together provide an unbeatable way for lawyers to manage applications, data and security. The best part is being able to offer clients a better solution, with outstanding support, at a fraction of the cost of other systems.”</p>
<p>While this partnership is not solely for the legal industry, the combination of systems provides major benefits for law firms, such as:</p>
<p>• Increased Billable Hours<br />
• Improved Client Satisfaction<br />
• More Efficient Case Management<br />
• Stronger Security<br />
• Controlled Risk Management<br />
• Flexible Remote Environment<br />
• Custom Implementation Plan and Training<br />
• 24/7 Access and Support</p>
<p>For more information on the partnership or services of IVDesk and The COR, contact Randy Olson of IVDesk at 800-711-1438 or visit <a href="http://www.ivdesk.com">http://www.ivdesk.com</a>, or Scott Lombard of COR2 Technology at 877-529-0598 or <a href="http://www.cor2.com">http://www.cor2.com</a>.</p>
<p>###</p>
<p>Contacts: Randy Olson, VP of Sales IVDesk<br />
800-711-1438</p>
<p>http://www.ivdesk.com</p>
<p>Scott Lombard, CEO<br />
COR2 Technology<br />
877-529-0598</p>
<p>http://www.cor2.com</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Intel Core2 Duo Bug]]></title>
<link>http://facusdelacruz.wordpress.com/2008/07/20/intel-core2-duo-bug/</link>
<pubDate>Sun, 20 Jul 2008 18:48:09 +0000</pubDate>
<dc:creator>Overclock_Orange</dc:creator>
<guid>http://facusdelacruz.wordpress.com/2008/07/20/intel-core2-duo-bug/</guid>
<description><![CDATA[Aquí el e-mail que confirma los hechos. From: Theo de Raadt [email blocked] To: misc Subject: Intel ]]></description>
<content:encoded><![CDATA[Aquí el e-mail que confirma los hechos. From: Theo de Raadt [email blocked] To: misc Subject: Intel ]]></content:encoded>
</item>
<item>
<title><![CDATA[Apple introduced new iMac product line!]]></title>
<link>http://sandeepvenu.wordpress.com/2008/04/29/apple-introduced-new-imac-product-line/</link>
<pubDate>Wed, 30 Apr 2008 02:03:50 +0000</pubDate>
<dc:creator>Sandeep</dc:creator>
<guid>http://sandeepvenu.wordpress.com/2008/04/29/apple-introduced-new-imac-product-line/</guid>
<description><![CDATA[Apple has unveiled new all-in-one iMac systems, sporting an updated processor, more standard memory ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><div class="entrymeta" style="text-align:justify;"><a title="Posts by Martin" href="http://www.rlslog.net/author/admin/"></a></div>
<p class="content" style="text-align:justify;">Apple has unveiled new all-in-one iMac systems, sporting an updated processor, more standard memory and a faster graphics card. Retail customers will be offered new systems with Intel Core2 Duo chips ranging from 2.4GHz to 2.8GHz. Apple will also offer a new 3GHz Intel chip as an option for built-to-order 24in iMac systems. All the new iMacs will feature a faster 1066MHz system bus and 6MB of level 2 cache. All but the cheapest of Apple’s three standard iMac offerings will now ship with 2GB of Ram. The $1,199 20in model will sport 1GB of Ram and an ATI Radeon 2400 XT graphics card. The $1,499 model will have a Radeon 2600 Pro card, as will the $1,799 24in iMac.</p>
<p class="content" style="text-align:center;"><img class="aligncenter" src="http://www.cameratown.com/assets/news/large/apple_imac08.jpg" alt="" width="450" height="280" /></p>
<p style="text-align:justify;">Apple will also offer the Nvidia GeForce 8800 GS card as an option on built-to-order 24in systems. The new offerings mark the first major update to the iMac since August 2007, when a redesign offered a slimmer profile and a brushed aluminium casing. Apple’s latest financial report showed flourishing Mac sales, helping to boost the firm to record profits in the most recent quarter. Philip Schiller, senior vice president of worldwide product marketing at Apple, said: “With the latest Intel processors, a faster new graphics option and more memory, customers now have even more reasons to love the iMac.”</p>
<p style="text-align:justify;"><em>Source: Vnunet, Martin<br />
</em></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Compaq Presario B1233TU (GX923PA#AKL)]]></title>
<link>http://notebookpromotion.wordpress.com/2008/03/31/compaq-presario-b1233tu-gx923paakl/</link>
<pubDate>Mon, 31 Mar 2008 07:26:08 +0000</pubDate>
<dc:creator>notebookpromotion</dc:creator>
<guid>http://notebookpromotion.wordpress.com/2008/03/31/compaq-presario-b1233tu-gx923paakl/</guid>
<description><![CDATA[ราคา 25,900 บาท Intel Core2 Duo T7250(2.0 GHz,800 MHz) Intel 965GM Express Chipset OS:DOS HDD:160 GB]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>ราคา 25,900 บาท</p>
<ul>
<li>Intel Core2 Duo T7250(2.0 GHz,800 MHz)</li>
<li>Intel 965GM Express Chipset</li>
<li>OS:DOS</li>
<li>HDD:160 GB SATA(5,400 rpm)</li>
<li>Ram:1gbB</li>
<li>Optical Drive:DVDRW<br />
Card Reader:4 in 1 Media Reader</li>
<li>Display:12.1″ WXGA HD BrightView LCD Panel<br />
Intel Extreme Graphic GMA</li>
<li>Lan:802.11b/g,10/100 Ethernet</li>
<li>Weight:1.79 kg</li>
</ul>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Apple Mac mini  พร้อมรับมือกับดิจิตัลไลฟ์สไตล์ของคุณอย่างเต็มที่]]></title>
<link>http://appleonly.wordpress.com/2008/03/27/apple-mac-mini-%e0%b8%9e%e0%b8%a3%e0%b9%89%e0%b8%ad%e0%b8%a1%e0%b8%a3%e0%b8%b1%e0%b8%9a%e0%b8%a1%e0%b8%b7%e0%b8%ad%e0%b8%81%e0%b8%b1%e0%b8%9a%e0%b8%94%e0%b8%b4%e0%b8%88%e0%b8%b4%e0%b8%95%e0%b8%b1/</link>
<pubDate>Thu, 27 Mar 2008 09:40:47 +0000</pubDate>
<dc:creator>appleonly</dc:creator>
<guid>http://appleonly.wordpress.com/2008/03/27/apple-mac-mini-%e0%b8%9e%e0%b8%a3%e0%b9%89%e0%b8%ad%e0%b8%a1%e0%b8%a3%e0%b8%b1%e0%b8%9a%e0%b8%a1%e0%b8%b7%e0%b8%ad%e0%b8%81%e0%b8%b1%e0%b8%9a%e0%b8%94%e0%b8%b4%e0%b8%88%e0%b8%b4%e0%b8%95%e0%b8%b1/</guid>
<description><![CDATA[Apple Mac mini (P/N : MB138ZP/A, MB139ZP/A) แมคมินิช่วยให้คุณจัดการกับภาพดิจิตัล ภาพยนตร์ เพลงและเว็]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://appleonly.wordpress.com/files/2008/03/newmac_mini.jpg" title="newmac_mini.jpg"><img src="http://appleonly.wordpress.com/files/2008/03/newmac_mini.jpg" alt="newmac_mini.jpg" /></a></p>
<p><font face="MS Sans Serif, CordiaUPC" size="2"><b>Apple Mac mini </b> (P/N : MB138ZP/A, MB139ZP/A) แมคมินิช่วยให้คุณจัดการกับภาพดิจิตัล ภาพยนตร์ เพลงและเว็บได้อย่างง่ายดายยิ่งขึ้น โดยเฉพาะในแมคมินิรุ่นใหม่นี้ คุณจะสัมผัสได้ถึงการทำงานที่ฉับไวยิ่งขึ้นถึง 39% เมื่อเทียบกับการทำงานในรุ่นเดิม ด้วยพลังแรงจาก Intel Core 2 Duo และระบบปฏิบัติการคุณภาพสูงอย่าง Mac OS X นอกจากนั้นยังมาพร้อมด้วยแอพพลิเคชันที่ใช้งานง่ายอย่าง iLife&#8217;08 เพื่อให้คุณจัดการและแบ่งปันภาพถ่ายผ่านทางโปรแกรม iPhoto รวมถึงการสร้างปฏิทิน หนังสือ และการ์ด อีกทั้งยังสร้างภาพยนตร์ในแบบของคุณได้ด้วย iMovie พร้อมกันนี้ยังสามารถแปลงภาพถ่ายหรือภาพยนตร์ที่คุณสร้างสรรค์ขึ้น ให้อยู่ในรูปของดีวีดีคุณภาพสูงด้วย iDVD และพบกับประสบการณ์แบบเต็มจอจากโปรแกรม Front Row ด้วยเมนูที่ใช้งานง่าย ตัวอักษรขนาดใหญ่ และภาพกราฟฟิคที่สีสันสดใส เพื่อให้คุณสามารถเบราวซ์เพลง ภาพถ่าย และวิดีโอบนเครื่องแมคมินิได้อย่างง่ายดาย เช่นเดียวกับการเบราวซ์เพลงจากเครื่องไอพอด และด้วยรีโมทที่มาพร้อมกับตัวเครื่อง ช่วยให้คุณเพลิดเพลินกับสื่อดิจิตัลได้จากทุกที่ในห้อง และด้วยโปรแกรม Front Row และเครื่องแมคมินินี้ จะช่วยให้คุณเล่นเพลง ภาพถ่าย และวิดีโอที่บันทึกไว้ในคอมพิวเตอร์เครื่องอื่นๆ ที่อยู่ในบ้านได้ ด้วยความสามารถของ Bonjour instant networking </font></p>
<p><b><font face="MS Sans Serif, CordiaUPC" size="2">จุดเด่นผลิตภัณฑ์</font></b></p>
<ul>
<li><font face="MS Sans Serif, CordiaUPC" size="2">เลือกการทำงานที่ตรงตามความต้องการของคุณจากโปรเซสเซอร์  Intel Core 2 Duo 2 ระดับ คือ 1.83GHz หรือ 2.0GHz</font></li>
<li><font face="MS Sans Serif, CordiaUPC" size="2">ใช้งานสะดวกด้วย Apple Remote with Front Row </font></li>
<li><font face="MS Sans Serif, CordiaUPC" size="2">หน่วยความจำสูงสุด 2GB</font></li>
<li><font face="MS Sans Serif, CordiaUPC" size="2">แสดงผลกราฟฟิคด้วยความสามารถของ Intel GMA 950 </font></li>
<li><font face="MS Sans Serif, CordiaUPC" size="2">มาพร้อมด้วยอุปกรณ์ DVI connector และ VGA adapter </font></li>
<li><font face="MS Sans Serif, CordiaUPC" size="2">มอบความจุฮารด์ไดร์ฟ 160GB</font></li>
<li><font face="MS Sans Serif, CordiaUPC" size="2">ภายในติดตั้ง Gigabit Ethernet </font></li>
<li><font face="MS Sans Serif, CordiaUPC" size="2">รองรับระบบเสียงทั้งแบบอนาลอคและดิจิตัล</font></li>
<li><font face="MS Sans Serif, CordiaUPC" size="2">เพิ่มขยายผ่านทางระบบ USB และ FireWire </font></li>
<li><font face="MS Sans Serif, CordiaUPC" size="2">ใช้งานง่ายและให้ประสิทธิภาพสูงด้วยโปรแกรม iLife ’08, Mac OS X v10.4 Tiger </font></li>
</ul>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Acer Extensa 4620]]></title>
<link>http://acerproduct.wordpress.com/2008/03/25/acer-extensa-4620/</link>
<pubDate>Tue, 25 Mar 2008 08:06:34 +0000</pubDate>
<dc:creator>acerproduct</dc:creator>
<guid>http://acerproduct.wordpress.com/2008/03/25/acer-extensa-4620/</guid>
<description><![CDATA[Extensa 4620-3A1G16Mn_VB Intel Core2 Duo T5450(1.66 GHz,2MB, L2 Cache, 667 MHz FSB) 1024 MB DDR2-667]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Extensa 4620-3A1G16Mn_VB</p>
<ul>
<li>Intel Core2 Duo T5450(1.66 GHz,2MB, L2 Cache, 667 MHz FSB)</li>
<li>1024 MB DDR2-667</li>
<li>160GB HDD</li>
<li>DVD-Super Multi</li>
<li>14.1&#8243; WXGA</li>
<li>Windows Vista Business</li>
</ul>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Apple Macbook 2.0GHz(MB061TH/B) ราคา 45,900 บาท]]></title>
<link>http://appleonly.wordpress.com/2008/03/20/apple-macbook-20ghzmb061thb/</link>
<pubDate>Thu, 20 Mar 2008 07:20:18 +0000</pubDate>
<dc:creator>appleonly</dc:creator>
<guid>http://appleonly.wordpress.com/2008/03/20/apple-macbook-20ghzmb061thb/</guid>
<description><![CDATA[Color:White Processor:2.0GHz Intel Core2 Duo L2 Caceh:4 MB Shared System bus: 800 MHz Memory: 1GB(2]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><ul>
<li>Color:White</li>
<li>Processor:2.0GHz Intel Core2 Duo</li>
<li>L2 Caceh:4 MB Shared</li>
<li>System bus: 800 MHz</li>
<li>Memory: 1GB(2&#215;512MB) 667MHz DDR2</li>
<li>HDD:80GB Sata</li>
<li>Optical Drive:Combo Drive</li>
<li>Display:13.3 inch glossy TFT Widescreen</li>
<li>Camera:Built-in iSight Camera</li>
<li>Video Port:mini-DVI</li>
<li>Graphics:Intel GMA x3100</li>
<li>Network:Gigabit</li>
<li>Wireless:802.11n Bluetooth</li>
<li>OS:Mac OS x v.10.5 Leopard</li>
</ul>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[BenQ S41 Joybook (9H.07701.335) ราคา 38,000 บาท]]></title>
<link>http://notebookpromotion.wordpress.com/2008/03/12/benq-s41-joybook-9h07701335-%e0%b8%a3%e0%b8%b2%e0%b8%84%e0%b8%b2-38000-%e0%b8%9a%e0%b8%b2%e0%b8%97/</link>
<pubDate>Wed, 12 Mar 2008 04:16:58 +0000</pubDate>
<dc:creator>notebookpromotion</dc:creator>
<guid>http://notebookpromotion.wordpress.com/2008/03/12/benq-s41-joybook-9h07701335-%e0%b8%a3%e0%b8%b2%e0%b8%84%e0%b8%b2-38000-%e0%b8%9a%e0%b8%b2%e0%b8%97/</guid>
<description><![CDATA[ซีพียู:Intel® Core™2 Duo processor T7500 (64bit Dual Core 2.2GHz. FSB800MHz. 4MB L2Cache) ชิบเซ็ต:In]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><ul></ul>
<p><a href="http://notebookpromotion.wordpress.com/files/2008/03/benq-s41.jpg" title="benq-s41.jpg"><img src="http://notebookpromotion.wordpress.com/files/2008/03/benq-s41.jpg" alt="benq-s41.jpg" border="0" /></a></p>
<ul>
<li>ซีพียู:Intel® Core™2 Duo processor T7500 (64bit Dual Core 2.2GHz. FSB800MHz. 4MB L2Cache)</li>
<li>ชิบเซ็ต:Intel® PM965</li>
<li>RAM:2 GB DDRII-667 (max to 4.0GB)</li>
<li>กราฟิคการ์ด:GeForce 8600M GS หน่วย​ความ​จำ​กราฟฟิค​: 256MB VRAM</li>
<li>ฮาร์ดดิส:160 GB (5400RPM-SATA)</li>
<li> DVD:8X Super Multi (Support Double Layer)</li>
<li>Display:14.1&#8243; UltraVivid* widescreen display</li>
<li>Battery:6-cell Lithium-Ion,2 ชั่วโมง 45 นาที</li>
<li>น้ำหนัก:2.05kg  ​(​ไม่​รวมแบตเตอรี่)</li>
</ul>
<p>ราคา 38,000 บาท</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Allendale, dari Core 2 sampai Celeron]]></title>
<link>http://gaptek28.wordpress.com/2008/03/04/allendale-dari-core2-hingga-celeron/</link>
<pubDate>Tue, 04 Mar 2008 09:30:06 +0000</pubDate>
<dc:creator>Mas Gaptek</dc:creator>
<guid>http://gaptek28.wordpress.com/2008/03/04/allendale-dari-core2-hingga-celeron/</guid>
<description><![CDATA[Intel sebagai produsen prosesor terbesar di dunia, dalam merancang prosesor generasi barunya dengan ]]></description>
<content:encoded><![CDATA[Intel sebagai produsen prosesor terbesar di dunia, dalam merancang prosesor generasi barunya dengan ]]></content:encoded>
</item>
<item>
<title><![CDATA[Mobo - MSI P6N Diamond]]></title>
<link>http://techtak.wordpress.com/2008/01/18/mobo-msi-p6n-diamond/</link>
<pubDate>Fri, 18 Jan 2008 23:17:04 +0000</pubDate>
<dc:creator>TaK</dc:creator>
<guid>http://techtak.wordpress.com/2008/01/18/mobo-msi-p6n-diamond/</guid>
<description><![CDATA[Intro: The P6N Diamond motherboard has all the features that most want in an upper-end system.  Sock]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><h5>Intro:</h5>
<p>The P6N Diamond motherboard has all the features that most want in an upper-end system.  Socket775, 1333 FSB, DDR-800, Quad 16x PCIe, etc.  It even goes a bit farther, by adding a couple things that most boards lack.</p>
<h5>What I found:</h5>
<p>Boasting the latest, a 1333MHz FSB is decent in itself, since this is the next generation of systems.  The newer versions of Intel&#8217;s Core2 Duo CPUs are the 6&#215;50 series; these have the 1333 FSB capability.</p>
<p>The P6N Diamond uses nVidia&#8217;s 680i (C55) Chipset northbridge, which has gotten mixed reviews on the various hardware sites.  I tend to like it for the tweaking power, though I do admit that there are problems with it, depending on the motherboard.  (That&#8217;s normal)    Also on the board is nVidia&#8217;s nForce 430i (MCP55) chipset southbridge.</p>
<p>I/O includes up to 10 USB 2.0 ports, up to 2 IEEE1394a, floppy, PS2, etc&#8230;all the usual stuff.</p>
<p>The usual 4 DDR2 slots give you support for up to 8GB of system memory at up to 800MHz.  The speed ability goes further with tweaking in the BIOS.</p>
<p>There are 6 internal SATA-II and 1 external eSATA ports.  The internal ports are in the standard flat-on-board layout, with port #6 on the board being linked with the eSATA on the back panel.  (A good way to use the #6 port is for a front panel eSATA connection&#8230;)  The onboard SATA along with the single PATA port allow use of the nVidia nForce RAID for up to 8 drives.  The board allows for RAID 0, 1, 0+1, 5 and JBOD.</p>
<p>The P6N Diamond has dual nVidia gigabit LAN onboard.  This is great for multiple networks or internet connection sharing.</p>
<p>The 4 PCIe ports are nice for over-achievers.  I&#8217;ve yet to see anyone actually USE all four for graphics setups.  They are clocked in the standard quad PCIe fashion of x16&#215;16x8 or x8+x8+x16+x8 speed.  There are 1 PCIe 1x and 2 PCI slots as well.  To be honest, I&#8217;d rather see 1 less PCIe slot and one MORE PCI slot.  I&#8217;ve been rather disappointed with the lack of PCIe support in hardware vendors.  There are some, but they are few and far between.</p>
<p>Also on the board is, and this is the best feature, an onboard PCIe version of the Creative Sound Blaster X-Fi Xtreme 8-channel audio.  This is, by far, the best on-board audio I&#8217;ve heard yet.  VERY clear and precise sound, especially for gaming and watching movies with surround sound.</p>
<p>Ultimately, the board was simple to install and configure.  I did find that the &#8220;tweakability&#8221; in the BIOS was about as good as it gets.  It was easy as cake to get up and running with my Core2 Quad 6600.</p>
<p>We&#8217;ll have more on this board after it&#8217;s been running for a week or so.  See ya then&#8230;</p>
</div>]]></content:encoded>
</item>

</channel>
</rss>
