<?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>technolgoy &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://en.wordpress.com/tag/technolgoy/</link>
	<description>Feed of posts on WordPress.com tagged "technolgoy"</description>
	<pubDate>Sat, 26 Dec 2009 02:34:14 +0000</pubDate>

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

<item>
<title><![CDATA[Web 3.0]]></title>
<link>http://btwwtf.wordpress.com/2009/12/16/web-3-0/</link>
<pubDate>Wed, 16 Dec 2009 17:31:11 +0000</pubDate>
<dc:creator>shebshi</dc:creator>
<guid>http://btwwtf.wordpress.com/2009/12/16/web-3-0/</guid>
<description><![CDATA[Posted by S. Change is afoot. We are gradually heading into a media-centric society. Though we are w]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><em>Posted by S.</em></p>
<p>Change is afoot. We are gradually heading into a media-centric society. Though we are well into the information age and the digital age, we have not yet transformed completely into dutiful robots, tuned in only to our hand-held devices.</p>
<p>Chang is a-coming, however. Watch for social networking feeds and status updates to appear in Google searches. Watch for changes in the way Facebook and Twitter are used. Watch out to not lose yourself in the midst of the uploading, downloading, posting, updating and texting. There may be more to life than pixels. Maybe. Maybe not.</p>
<p>It could be the revolution we&#8217;ve all been waiting for.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Old Computers]]></title>
<link>http://brimeyblotter.net/2009/12/11/old-computers/</link>
<pubDate>Sat, 12 Dec 2009 00:17:06 +0000</pubDate>
<dc:creator>Brimey</dc:creator>
<guid>http://brimeyblotter.net/2009/12/11/old-computers/</guid>
<description><![CDATA[Sorry, Charlie- Your old computer sucks... As of late, it seems I&#8217;ve been reminded weekly abou]]></description>
<content:encoded><![CDATA[Sorry, Charlie- Your old computer sucks... As of late, it seems I&#8217;ve been reminded weekly abou]]></content:encoded>
</item>
<item>
<title><![CDATA[Tech news yo!!! Read on...]]></title>
<link>http://pcgirlslife.wordpress.com/2009/11/19/tech-news-yo-read-on/</link>
<pubDate>Thu, 19 Nov 2009 14:43:19 +0000</pubDate>
<dc:creator>chasca13</dc:creator>
<guid>http://pcgirlslife.wordpress.com/2009/11/19/tech-news-yo-read-on/</guid>
<description><![CDATA[Free tool to download YouTube High Definition Videos You can now download videos from YouTube and sa]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Free tool to download YouTube High Definition Videos<br />
<a href="http://pcgirlslife.wordpress.com/files/2009/11/sky_city_by_falarsimons.jpg"><img class="alignright size-medium wp-image-205" title="sky_city_by_Falarsimons" src="http://pcgirlslife.wordpress.com/files/2009/11/sky_city_by_falarsimons.jpg?w=300" alt="" width="300" height="141" /></a><br />
You can now download videos from YouTube and save it to your computer with YouTube Downloader HD which is a free tool. The videos can be converted to avi video format or to mp4 (compatible with iPod, iPhone). It has the ability to download High Quality videos and High Definition videos from YouTube.</p>
<p><!--more-->Key Features:</p>
<p>- Easy to use: just copy video URL from your web browser and paste to YouTube Downloader HD. No need to use scripts or browser plug-ins.</p>
<p>- Convert downloaded video to various formats.</p>
<p>- Download YouTube High Definition videos (available on certain videos).</p>
<p>- Unicode support: YouTube Downloader HD can save moves whose names have non-standard characters i.e. Chinese, Japanese, Cyrillic, etc.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Application Domains in Asp.Net]]></title>
<link>http://mytechbook.wordpress.com/2009/10/01/application-domains-in-asp-net/</link>
<pubDate>Thu, 01 Oct 2009 01:15:09 +0000</pubDate>
<dc:creator>vishalmajmudar</dc:creator>
<guid>http://mytechbook.wordpress.com/2009/10/01/application-domains-in-asp-net/</guid>
<description><![CDATA[When we launch the Notepad program in Windows, the program executes inside of a container known as a]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>When we launch the Notepad program in Windows, the program executes inside of a container known as a process. We can launch multiple instances of Notepad, and each instance will run in a dedicated process. Using the Task Manager application, we can see a list of all processes currently executing in the system.</p>
<p>A process contains the executable code and data of a program inside memory it has reserved from the operating system. There will be at least one thread executing instructions inside of the process, and in most cases there are multiple threads. If the program opens any files or other resources, those resources will belong to the process.</p>
<p>A process is also boundary. Erroneous code inside of a process cannot corrupt areas outside of the current process. It is easy to communicate inside of a process, but special techniques are required to communicate from one process to another. Each process also runs under a specific security context which can dictate what the process can do on the machine and network.  </p>
<p>A process is the smallest unit of isolation available on the Windows operating system. This could pose a problem for an ISP who wants to host hundreds of ASP.NET applications on a single server. The ISP will want to isolate each ASP.NET application to prevent one application from interfering with another company’s application on the same server, but the relative cost of launching and executing a process for hundreds of applications may be prohibitive.</p>
<p> </p>
<h3>Introducing the Application Domain</h3>
<p> </p>
<p>.NET introduces the concept of an application domain, or AppDomain. Like a process, the AppDomain is both a container and a boundary. The .NET runtime uses an AppDomain as a container for code and data, just like the operating system uses a process as a container for code and data. As the operating system uses a process to isolate misbehaving code, the .NET runtime uses an AppDomain to isolate code inside of a secure boundary.</p>
<p><strong>Note, however, that the application domain is not a secure boundary when the application runs with full trust. Applications running with full trust can execute native code and circumvent all security checks by the .NET runtime. ASP.NET applications run with full trust by default.</strong></p>
<p>An AppDomain belongs to only a single process, but single process can hold multiple AppDomains. An AppDomain is relatively cheap to create (compared to a process), and has relatively less overhead to maintain than a process. For these reasons, an AppDomain is a great solution for the ISP who is hosting hundreds of applications. Each application can exist inside an isolated AppDomain, and many of these AppDomains can exist inside of a single process – a cost savings.</p>
<p> </p>
<h3>AppDomains And You</h3>
<p> </p>
<p>You’ve created two ASP.NET applications on the same server, and have not done any special configuration. What is happening?</p>
<p>A single ASP.NET worker process will host both of the ASP.NET applications. On Windows XP and Windows 2000 this process is named aspnet_wp.exe, and the process runs under the security context of the local ASPNET account. On Windows 2003 the worker process has the name w3wp.exe and runs under the NETWORK SERVICE account by default.</p>
<p>An object lives in one AppDomain. Each ASP.NET application will have it’s own set of global variables: Cache, Application, and Session objects are not shared. Even though the code for both of the applications resides inside the same process, the unit of isolation is the .NET AppDomain. If there are classes with shared or static members, and those classes exist in both applications, each AppDomain will have it’s own copy of the static fields – the data is not shared. The code and data for each application is safely isolated and inside of a boundary provided by the AppDomain</p>
<p>In order to communicate or pass objects between AppDomains, you’ll need to look at techniques in .NET for communication across boundaries, such as .NET remoting or web services.</p>
<p>Note again: the one caveat to the idea of an AppDomain as a boundary is that ASP.NET applications will run with full trust by default. Fully trusted code can execute native code, and native code can essentially have access to anything inside the process. You’ll need to run applications with <em>partial trust</em> to restrict access to unmanged code and verify all managed code to secure AppDomains.</p>
<p> </p>
<h3>Shadow Copies and Restarts</h3>
<p> </p>
<p>Once an assembly is loaded into an AppDomain, there is no way to remove the assembly from the AppDomain. It is possible, however, to remove an AppDomain from a process.</p>
<p>If you copy an updated dll into an application’s bin subdirectory, the ASP.NET runtime recognizes there is new code to execute. Since ASP.NET cannot swap the dll into the existing AppDomain , it starts a new AppDomain. The old application domain is “drain stopped”, that is, existing requests are allowed to finish executing, and once they are all finished the AppDomain can unload. The new AppDomain starts with the new code and begins taking all new requests.</p>
<p>Typically, when a dll loads into a process, the process locks the dll and you cannot overwrite the file on disk. However, AppDomains have a feature known as Shadow Copy that allows assemblies to remain unlocked and replaceable on disk.</p>
<p>The runtime initializes ASP.NET with Shadow Copy enabled for the bin directory. The AppDomain will copy any dll it needs from the bin directory to a temporary location before locking and loading the dll into memory. Shadow Copy allows us to overwrite any dll in the bin directory during an update without taking the web application offline.</p>
<p> </p>
<h3>Master Of Your Domain</h3>
<p>Application domains replace the OS process as the unit of isolation for .NET code. An understanding of application domains will give you an idea of the work taking place behind the scenes of an ASP.NET application. Using the CurrentDomain property of the AppDomain class you can inspect properties about the AppDomain your code is executing in, including the Shadow Copy settings we discussed in this article.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Realtors Using Social Media Marketing]]></title>
<link>http://tallahasseehomes.wordpress.com/2009/09/15/realtors-using-social-media-marketing/</link>
<pubDate>Tue, 15 Sep 2009 23:55:30 +0000</pubDate>
<dc:creator>realtordebbie</dc:creator>
<guid>http://tallahasseehomes.wordpress.com/2009/09/15/realtors-using-social-media-marketing/</guid>
<description><![CDATA[When I bought my first house, I remember I had no choice but to use a Realtor. When we hired one, sh]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>When I bought my first house, I remember I had no choice but to use a Realtor. When we hired one, she carried her big thick MLS book and she got a key to every listing to view it.. not the MLS Key, the front door key!  Keys to homes today are shared with every potential buyer via the internet. Realtors can literally show listings, using photos, slide shows, videos and internet pages. We also expose listings to not just local Realtors, but Realtors anywhere in the world with the click of a mouse.</p>
<p>Gen X and Gen Y sellers and buyers opened the doors for Realtors by asking the right questions, asking for information and sharing their desires to have information readily accessible. If  Realtors want to work with these buyers.. we had to meet their demands, and fit into their schedules. We not only learned their language, but we are virtually sharing technology, opening doors for communicating on a much more consistent basis.<br />
These same buyers and sellers want to know a little more about their agents as well. Interactions, sharing lifestyle interests, and joining in social and business networks help create loyalty and confidence as consumers now put faces with names long before they meet on a professional level.<br />
I attended a social media conference this week with real estate agents from across the country. Reports, statistics of successful transactions poured in. Social networking seems to be working. Buyers are finding properties from internet marketing efforts and enjoying communications with their Realtors via internet, mobile technology and social media groups. Sellers seem happy too. Their properties are featured on multiple websites, they are accessible in multiple MLS search sites and virtual showings are being viewed by more people, literally like daily open houses. Realtors are thrilled because for once we can track marketing results and maximize advertising dollars.<br />
I think it&#8217;s working.. my bet is on the consumers who are using the agents who have added social media and the internet to their tool boxes!</p>
<p>Connect with me on Facebook, Twitter or subscribe to this feed for more real estate and market news from Tallahassee, FL</p>
<div id="attachment_33" class="wp-caption alignleft" style="width: 310px"><a href="http://tallahasseehomes.wordpress.com/debbie-kirkland-realtor-social-media-marketing"><img class="size-medium wp-image-33" title="REBarCamp-Miami at TThe Temple House" src="http://tallahasseehomes.wordpress.com/files/2009/09/img_90001.jpg?w=300" alt="Debbie Kirkland at REBarCamp-Miami - Social Media Networking" width="300" height="200" /></a><p class="wp-caption-text">Debbie Kirkland at REBarCamp-Miami - Social Media Networking</p></div>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[High-speed WLAN is on!]]></title>
<link>http://geekeet.wordpress.com/2009/09/14/high-speed-wlan-is-on/</link>
<pubDate>Mon, 14 Sep 2009 01:45:18 +0000</pubDate>
<dc:creator>slayx</dc:creator>
<guid>http://geekeet.wordpress.com/2009/09/14/high-speed-wlan-is-on/</guid>
<description><![CDATA[IEEE finally ratifies Wireless-N for improved wireless data speeds, thoroughput, range, and legacy c]]></description>
<content:encoded><![CDATA[IEEE finally ratifies Wireless-N for improved wireless data speeds, thoroughput, range, and legacy c]]></content:encoded>
</item>
<item>
<title><![CDATA[Vista Experience delays Windows 7 Adoption]]></title>
<link>http://computersafetytips.wordpress.com/2009/08/04/vista-experience-delays-windows-7-adoption/</link>
<pubDate>Tue, 04 Aug 2009 13:20:48 +0000</pubDate>
<dc:creator>froshfrau</dc:creator>
<guid>http://computersafetytips.wordpress.com/2009/08/04/vista-experience-delays-windows-7-adoption/</guid>
<description><![CDATA[A Survey of Technology Professionals&#8221;, commissioned by systems management appliance company KA]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>A Survey of Technology Professionals&#8221;, commissioned by systems management appliance company KACE and conducted by market res<img class="alignright size-medium wp-image-1495" title="34be031e40eec154668afacd54e1a703" src="http://computersafetytips.wordpress.com/files/2009/08/34be031e40eec154668afacd54e1a703.jpg?w=300" alt="34be031e40eec154668afacd54e1a703" width="300" height="294" />earch firm Dimensional Research, surveyed 1,100 IT professionals via e-mail.</p>
<p>This survey is likely to be demoralizing news for Microsoft that 84% of the respondents do not plan to upgrade their machines to Windows 7 in the next year. This could cause delays in the software giant’s strategy to get users off the eight year old Windows XP and the embattled Windows Vista and on to<br />
Windows 7.</p>
<p>Diane Hagglund, Senior Research Analyst for Dimensional Research and author of the survey said that the leading reason for resistance to Windows 7 adoption is Vista compatibility problems as well as &#8220;a negative public perception of Vista that seems to have helped build the layer of distrust with Windows 7.</p>
<p>The IT professionals other concerns were also listed in the survey about moving to Windows 7 &#8211; software compatibility, cost of implementation and the economic downturn.</p>
<p><!--more-->Another piece mentioned that a strong majority, 83%, said that they would likely skip Vista altogether and eventually migrate directly from XP to Windows 7.</p>
<p>User’s do not seemed bothered about the age of XP, as 72% said they are more concerned about upgrading to Windows 7 than staying with the outdated XP.</p>
<p>The most surprising information on the survey was the number of IT professionals who are considering moving from Windows to alternatives such as Mac OS and Linux is on the rise. Fifty percent of respondents say they are considering such a move; that&#8217;s up almost 10 percent from a similar survey conducted last July.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[83% of Businesses not planning on upgrading to Windows 7]]></title>
<link>http://computersafetytips.wordpress.com/2009/08/03/83-of-businesses-not-planning-on-upgrading-to-windows-7/</link>
<pubDate>Mon, 03 Aug 2009 15:27:12 +0000</pubDate>
<dc:creator>froshfrau</dc:creator>
<guid>http://computersafetytips.wordpress.com/2009/08/03/83-of-businesses-not-planning-on-upgrading-to-windows-7/</guid>
<description><![CDATA[Microsoft received alot of criticism from numerous sources following the Vista launch. What really w]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Microsoft received alot of criticism from numerous sources following the Vista launch. <img class="alignright size-medium wp-image-1474" title="Vessel_by_silesti" src="http://computersafetytips.wordpress.com/files/2009/08/vessel_by_silesti.jpg?w=300" alt="Vessel_by_silesti" width="300" height="183" /></p>
<p>What really wounded Microsoft was the number of businesses, both small and large, that refused to upgrade to Vista.</p>
<p>The pattern didn’t change following compatibility updates and the service pack and at the beginning of this year Vista was still showing poor adoption rates in the enterprise.  One recent study shows that a significant number of businesses are not planning on upgrading to Windows 7.</p>
<p>The figure is high, at an estimated of 83% of businesses planning not to upgrade &#8211; at least not right away, in the first year.</p>
<p><!--more-->That&#8217;s understandable on the surface, with businesses wanting plenty of time to ensure application compatibility.   But how long will businesses delay the adoption of a new operating system?</p>
<p>Some companies reported they will wait upwards of three years before deploying Windows 7, sticking instead with Windows XP. And could this mean big trouble for Redmond?</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[New find: Alerting all nerds - read on]]></title>
<link>http://pcgirlslife.wordpress.com/2009/07/31/windows-7-build-7105-milestone-reached/</link>
<pubDate>Fri, 31 Jul 2009 12:53:41 +0000</pubDate>
<dc:creator>chasca13</dc:creator>
<guid>http://pcgirlslife.wordpress.com/2009/07/31/windows-7-build-7105-milestone-reached/</guid>
<description><![CDATA[Windows 7 build 7105 Milestone reached? Windows 7 has finally reached build 7105 and in addition to ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><strong>Windows 7 build 7105 Milestone reached?</strong><img class="alignright size-medium wp-image-101" title="Beautiful_life_by_qianyu" src="http://pcgirlslife.wordpress.com/files/2009/07/beautiful_life_by_qianyu.jpg?w=300" alt="Beautiful_life_by_qianyu" width="300" height="277" /></p>
<p>Windows 7 has finally reached build 7105 and in addition to that, a Windows 7 RC could possibly be available soon.</p>
<p>Russian site, WZor reported that it’s expected for 7105 to be leaked shortly, although it’s hoped a public announcement will be made soon.</p>
<p>So what are the changes being reported so far?</p>
<p>1. Improved networking support, the work in the local network.<br />
2. Added support for some previously incompatible programs.<br />
3. Extras in the LP and small cosmetic interface improvements.<br />
4. Added support for new drivers for various devices.<br />
5. Extended support sensory displays.<br />
6. A small optimization and changes in the kernel.</p>
<p>Windows 7 development is definitely drawing to a close, as now the only changes are bug fixes and optimizations; no new major features are being added.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Some more techy news for the PC user who wants to know it all...]]></title>
<link>http://pcgirlslife.wordpress.com/2009/07/30/some-more-techy-news-for-the-pc-user-who-wants-to-know-it-all/</link>
<pubDate>Thu, 30 Jul 2009 13:07:11 +0000</pubDate>
<dc:creator>chasca13</dc:creator>
<guid>http://pcgirlslife.wordpress.com/2009/07/30/some-more-techy-news-for-the-pc-user-who-wants-to-know-it-all/</guid>
<description><![CDATA[Achieve Windows 7 Explorer look in Firefox Browswer There are so many users who like Windows 7 and i]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Achieve Windows 7 Explorer look in Firefox Browswer<img class="alignright size-medium wp-image-98" title="f2636872061b0110352eeeac215c8292" src="http://pcgirlslife.wordpress.com/files/2009/07/f2636872061b0110352eeeac215c82921.png?w=300" alt="f2636872061b0110352eeeac215c8292" width="300" height="177" /></p>
<p>There are so many users who like Windows 7 and its polished user interface. If you are one of them, here is a cool style for Firefox that exactly matches with the Windows 7 explorer look.</p>
<p>How to install:</p>
<p>1. Download the style file and extract the file to desktop to get a file named userChrome.css.<br />
2. Open Firefox’s profiles folder by typing %APPDATA%\Mozilla\Firefox\Profiles\ in Start menu search field.<br />
<!--more-->3. Copy userChrome.css file to %APPDATA%\Mozilla\Firefox\Profiles\ &#60;Your Profile&#62;\Chrome folder and restart Firefox browser.<br />
4. Then install the Glasser add-on and restart Firefox browser to get the exact Aero Glass effect.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[AVCare alters the state of your PC’s safety and security]]></title>
<link>http://computersafetytips.wordpress.com/2009/07/29/avcare-alters-the-state-of-your-pc%e2%80%99s-safety-and-security/</link>
<pubDate>Wed, 29 Jul 2009 14:09:36 +0000</pubDate>
<dc:creator>froshfrau</dc:creator>
<guid>http://computersafetytips.wordpress.com/2009/07/29/avcare-alters-the-state-of-your-pc%e2%80%99s-safety-and-security/</guid>
<description><![CDATA[Woe to those few individuals that continue to make our online experience one filled with second gues]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Woe to those few individuals that continue to make our online experience one filled with second guessing and skepticism.<img class="alignright size-medium wp-image-1444" title="Beautiful_World_by_VinhFX" src="http://computersafetytips.wordpress.com/files/2009/07/beautiful_world_by_vinhfx.jpg?w=300" alt="Beautiful_World_by_VinhFX" width="300" height="227" /></p>
<p>Why &#8211; you may ask? Well, for anyone who makes use of the online community on a regular basis, it is clear that the state of one’s computer security is questioned on a daily basis – due to the millions of nefarious applications out there – so again I say woe to those few individuals that design and implement these dubious tactics and applications.</p>
<p>The latest of such applications is the rogue anti-spyware: <a href="http://www.pcthreat.com/parasitebyid-8176en.html">AVCare </a>also referred to as <a href="http://www.pcthreat.com/parasitebyid-8177en.html">AV Care</a>.</p>
<p>AVCare is installed onto a computer system via a Trojan infection, or might even enter into the system when the user visits malicious and dubious websites, which contain the virus in scripts embedded within.<br />
And no – this application will not be able to assist you any way, shape or form. This program is dubious and was designed to have harmful functionality.</p>
<p><!--more-->As mentioned before, AVCare enters into a computer system via a Trojan application, which sneaks into the system via security exploits, such as spam emails or it can be installed by other malware.</p>
<p>AVCare will generate fictitious system warning alert messages, fake scan reports and fake error messages about the “infection” on the computer system.</p>
<p>The AVCare error reports that pops up, are as follows:</p>
<p>“Remote Attack Alert!<br />
Unknown host tries to establish connection to your PC using restricted ports. This may be internet virus or other type of malicious or spyware program. If antivirus protection is disabled your computer remains vulnerable to different types of network attacks such as…”</p>
<p>Or</p>
<p>“Your system is infected!<br />
AVCare detected 10 system security threats on your PC. Detected malicious programs can damage your PC and compromise your privacy. It is strongly recommended to remove these threats immediately.”</p>
<p>These notifications are very similar to Microsoft&#8217;s Windows Security Center alerts, so the user can be easily confused.</p>
<p>AVCare then suggests purchasing the full version of the software in order to remove those infections. But as you could already understand, AVCare cannot remove any infections.</p>
<p>AVCare only steals money from inexperienced users. That&#8217;s why we strongly recommend you to use removal instructions stated below and to remove AVCare from the system immediately after detection.</p>
<p>All of this is aimed at ensuring the user of the computer system user is coerced and tricked into purchasing the “full” version of AVCare.</p>
<p>AVCare should not be trusted or purchased as it is rogue optimization tool that should be deleted immediately upon detection!</p>
<p>Now, what do you do if you suspect you have this nefarious application embedded within your system?</p>
<p>Although Manual Removal is probably best, to ensure all components of AVCare is eradicated from the infected system, it is best left to those individuals who know their way around the registry files of a computer system.</p>
<p>To avoid unnecessary damage and risk to a computer system, as a computer novice, your best option would be to perform an Automatic removal process.</p>
<p>Simply make use of an up-to-date, fully functional legitimate antispyware application. This way you will be able to rid the computer system of all traces of AVCare.</p>
<p>Should you feel your system has been infiltrated by this parasite, to be sure, you should check out:</p>
<p><a href="http://www.pcthreat.com/parasitebyid-8176en.html">http://www.pcthreat.com/parasitebyid-8176en.html</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Typewriters Really? ]]></title>
<link>http://redlegg.wordpress.com/2009/07/17/type-writers-really/</link>
<pubDate>Fri, 17 Jul 2009 18:10:46 +0000</pubDate>
<dc:creator>Laura</dc:creator>
<guid>http://redlegg.wordpress.com/2009/07/17/type-writers-really/</guid>
<description><![CDATA[The NYPD made unfortunate news this week when the New York Post reported that New York City had sign]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>The NYPD made unfortunate news this week when the New York Post reported that New York City had signed a nearly $1 million contract with a vendor to purchase thousands of new manual and electronic typewriters during the next three years.</p>
<p>According to the article, NYPD cops &#8220;still use typewriters to fill out property and evidence vouchers which are printer on carbon-paper forms.  There are typewriters in every police precinct, including one in every detective squad.&#8221;  (The NYPD  &#8220;is working on software to eliminate the old machines&#8221; a police representative told the Post.</p>
<p>In truth there are probably a lot of bossiness&#8217;s and government agencies that have stashes of typewriters in their office just like the NYPD does.  But until everything digitized, there will be a seemingly mind-blogging need for type writers..</p>
<p><img class="alignleft size-full wp-image-1246" title="typewriter" src="http://redlegg.wordpress.com/files/2009/07/typewriter.jpg" alt="typewriter" width="240" height="217" /></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[WiniFighter : A warrior for rogue applications!]]></title>
<link>http://computersafetytips.wordpress.com/2009/07/15/winifighter-a-warrior-for-rogue-applications/</link>
<pubDate>Wed, 15 Jul 2009 17:34:21 +0000</pubDate>
<dc:creator>froshfrau</dc:creator>
<guid>http://computersafetytips.wordpress.com/2009/07/15/winifighter-a-warrior-for-rogue-applications/</guid>
<description><![CDATA[Its not yet safe for us computer users! There is a war to fight, and as the rogue security tools mou]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Its not yet safe for us computer users! There is a war to fight, and as the rogue security tools mount and grow daily, along with <img class="alignright size-medium wp-image-1423" title="im_ill_by_sabai" src="http://computersafetytips.wordpress.com/files/2009/07/im_ill_by_sabai.jpg?w=300" alt="im_ill_by_sabai" width="300" height="295" />malware and infections of all sorts – one needs to be sure which application is on which side? The legitimate security side versus the rogue and dubious natured side?</p>
<p>Well, let me attempt to make that discernment a little easier for you. <a href="http://www.pcthreat.com/parasitebyid-8156en.html">WiniFighter</a>, also known Wini Fighter, as is one of the many rogue and dubious applications, which is batting for the rogue team – and scoring many hits!</p>
<p>WiniFighter is the latest in scams! Pretending to be a legitimate spyware remover, this application has one primary objective: to coerce its victims into purchasing its licensed version.</p>
<p>WiniFighter doesn’t deviate much from the typical and widely practiced tactics of PC parasite infiltration. WiniFighter tends to use affiliated backdoor Trojan infections, or via a fake codec the user has installed onto their system.</p>
<p>Once inside the designated system, WiniFighter will obscurely create hundreds of fake malware entities in the infiltrated system.</p>
<p><!--more-->Once this is done, WiniFighter will then “detect” these dummy files and ensure the unsuspecting user, you, think it’s high time you removed all the reported malware.</p>
<p>WiniFighter malicious trialware usually runs each time you log onto Windows and will display its fake system scanner that claims to find a variety of corrupted dangerous files.</p>
<p>As a well-practiced tactic, WiniFighter will have you believe that in order to protect your Operating System against these “detections”, you will need to install WiniFighter’s full commercial version which demands payment.</p>
<p>Should you install WiniFighter licensed software, you will soon realize that it’s not only worthless in terms of malware removal, but it compromises any computer systems’ performance and will eventually slow down the computer considerably.</p>
<p>One should remove the WiniFighter rogue anti-spyware application as soon as it has been detected.</p>
<p>So, how would you know if your system has been infected with WiniFighter or not?</p>
<p>Well, this is simple enough.</p>
<p>Check out:</p>
<p><a href="http://www.pcthreat.com/parasitebyid-8156en.html">http://www.pcthreat.com/parasitebyid-8156en.html</a></p>
<p>Here you will be able to download the FREE WiniFighter infection scanner. Once you have scanned your PC for this parasite, should it be embedded within your system, you will then be able to follow the detailed removal instructions provided.</p>
<p>Remember, computer safety, first!</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Google Alerts]]></title>
<link>http://michaellejeune.wordpress.com/2009/07/15/google-alerts/</link>
<pubDate>Wed, 15 Jul 2009 15:33:04 +0000</pubDate>
<dc:creator>Michael LeJeune</dc:creator>
<guid>http://michaellejeune.wordpress.com/2009/07/15/google-alerts/</guid>
<description><![CDATA[Here&#8217;s a quick, but valuable suggestion.  I recently started monitoring Google Alerts for my n]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Here&#8217;s a quick, but valuable suggestion.  I recently started monitoring <a href="www.google.com/alerts" target="_blank">Google Alerts</a> for my name and industry.  Simply go to <cite><a href="http://www.google.com/alerts">www.google.com/<strong>alerts</strong></a> </cite> and setup keyword alerts for any words you wish.  I have two setup that I monitor daily.  I focus on one for my name and one for <a href="http://www.michaellejeune.com" target="_blank">business coaching</a>.  This allows me to see any news posted about me or my industry. </p>
<p>Very handy for many reasons.  One big reason is to see if someone is posting good or bad press about you on the web.  If they are posting good things about you, you can thank them.  If they are posting bad things about you, you can work with them to resolve these things.  And don&#8217;t kid yourself, no matter how great your service is, people are going to complain about you.  And here&#8217;s an insider tip:  They almost never complain to you if something is wrong.  So be smart and monitor your personal profile and your industry keywords.</p>
<p>On the industry side, it&#8217;s great to see some of the press that happens in your industry.  For example, Google&#8217;s CEO Eric Schmidt just posted a video on how everyone needs a coach.  It&#8217;s a great video and it shows how he didn&#8217;t think he needed a coach until he got one.  Here&#8217;s the video so you can check it out.  <span style="color:#000080;"><a href="http://money.cnn.com/video/fortune/2009/06/19/f_ba_schmidt_google.fortune/">http://money.cnn.com/video/fortune/2009/06/19/f_ba_schmidt_google.fortune/</a></span></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[It's that time again - some tech news for you guys!!]]></title>
<link>http://pcgirlslife.wordpress.com/2009/07/09/its-that-time-again-some-tech-news-for-you-guys/</link>
<pubDate>Thu, 09 Jul 2009 16:19:56 +0000</pubDate>
<dc:creator>chasca13</dc:creator>
<guid>http://pcgirlslife.wordpress.com/2009/07/09/its-that-time-again-some-tech-news-for-you-guys/</guid>
<description><![CDATA[Dell’s shares experience – Testing of Windows 7 One of the largest computer makers in the world, Del]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Dell’s shares experience – Testing of Windows 7<img class="alignright size-medium wp-image-75" title="SEXY_GIRLS_FAN_ART_04_by_GERCROW" src="http://pcgirlslife.wordpress.com/files/2009/07/sexy_girls_fan_art_04_by_gercrow.jpg?w=212" alt="SEXY_GIRLS_FAN_ART_04_by_GERCROW" width="212" height="300" /></p>
<p>One of the largest computer makers in the world, Dell, shared briefly some of its experience from its internal testing of Windows 7.</p>
<p>Dell found noticeable improvements in boot to desktop times compared to Windows Vista.</p>
<p>Microsoft is not only fine tuning boot speed, but also working with OEMs to reduce boot-slowing bloatware.</p>
<p>Dell also reported that almost all existing Vista drivers are working and testers say application compatibility is promising as well, including the IE8 compatibility mode.</p>
<p>The overall performance is upgraded, with tests trans-coding media files being faster than the latest Windows Vista builds.</p>
<p>Are the findings reported by Dell enough to make you upgrade from Vista or even XP?</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[New games releases - 2009]]></title>
<link>http://computersafetytips.wordpress.com/2009/07/09/new-games-releases-2009/</link>
<pubDate>Thu, 09 Jul 2009 15:45:27 +0000</pubDate>
<dc:creator>froshfrau</dc:creator>
<guid>http://computersafetytips.wordpress.com/2009/07/09/new-games-releases-2009/</guid>
<description><![CDATA[Pick of the week: The Chronicles of Riddick –Assault on Dark Athena (PC, PS3, 360). One of the great]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Pick of the week: <img class="alignright size-medium wp-image-1401" title="Saethn_Resailies_by_ChampGal123" src="http://computersafetytips.wordpress.com/files/2009/07/saethn_resailies_by_champgal123.jpg?w=256" alt="Saethn_Resailies_by_ChampGal123" width="256" height="300" /><br />
The Chronicles of Riddick –Assault on Dark Athena (PC, PS3, 360).</p>
<p>One of the great sleeper hits for the original Xbox, The Chronicles of Riddick was a perfect example of how to do a licensed game right. It featured plenty first-person action and garnered somewhat of a cult following.</p>
<p>Other notable games this week include a sequel to The Godfather videogame which adds in some strategy elements; Tales of Valor, the second expansion for the RTS Company of Heroes and the quick-time-event heavy action game Ninja Blade. Here&#8217;s the complete list:</p>
<p><span style="text-decoration:underline;"><em>PC</em></span><br />
The Godfather 2<br />
DCS: Black Shark<br />
Company of Heroes: Tales of Valor<br />
Elven Legacy<br />
The Chronicles of Riddick: Assault on Dark Athena</p>
<p><span style="text-decoration:underline;"><em><!--more-->Nintendo DS</em></span><br />
Gravity<br />
Hannah Montana: The Movie</p>
<p><span style="text-decoration:underline;"><em>Wii</em></span><br />
Gravity<br />
Deer Drive<br />
Escape the Museum<br />
Hannah Montana: The Movie</p>
<p><span style="text-decoration:underline;"><em>PlayStation Portable</em></span><br />
Air Conflicts: Aces of World War II<br />
Guilty Gear XX Accent Core Plus<br />
Hammerin&#8217; Hero<br />
Dragonball Evolution</p>
<p><span style="text-decoration:underline;"><em>PlayStation 2</em></span><br />
Guilty Gear XX Accent Core Plus</p>
<p><span style="text-decoration:underline;"><em>PlayStation 3</em></span><br />
The Godfather 2<br />
Hannah Montana: The Movie<br />
The Chronicles of Riddick: Assault on Dark Athena</p>
<p><span style="text-decoration:underline;"><em>Xbox 360</em></span><br />
The Chronicles of Riddick: Assault on Dark Athena<br />
The Godfather 2<br />
Hannah Montana: The Movie<br />
Ninja Blade</p>
<p>While efforts have been made to ensure the accuracy of these lists, release dates are always subject to change.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Versus mode given to Resident Evil 5]]></title>
<link>http://pcgirlslife.wordpress.com/2009/07/08/versus-mode-given-to-resident-evil-5/</link>
<pubDate>Wed, 08 Jul 2009 11:33:08 +0000</pubDate>
<dc:creator>chasca13</dc:creator>
<guid>http://pcgirlslife.wordpress.com/2009/07/08/versus-mode-given-to-resident-evil-5/</guid>
<description><![CDATA[Capcom has finally given Resident Evil 5 Versus mode a date: start shooting your friends and enemies]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Capcom has finally given Resident Evil 5 Versus mode a date: start shooting your friends and enemies online.<img class="alignright size-medium wp-image-71" title="Drop_by_eepedeep" src="http://pcgirlslife.wordpress.com/files/2009/07/drop_by_eepedeep.jpg?w=300" alt="Drop_by_eepedeep" width="300" height="237" /></p>
<p>The multiplayer versus update for Resident Evil 5 has been given an official date, with the for-pay addition hitting both Xbox Live and the PlayStation Network on, April 7.</p>
<p>The add-on will cost you $5 on the PlayStation and 400 Microsoft points on the 360.</p>
<p><!--more-->Versus allows up to four players to match wits in online battles across two very different game types.</p>
<p>Are you going to be spending that $5?</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Google making money on investments with Google Ventures]]></title>
<link>http://computersafetytips.wordpress.com/2009/07/02/google-making-money-on-investments-with-google-ventures/</link>
<pubDate>Thu, 02 Jul 2009 12:12:39 +0000</pubDate>
<dc:creator>froshfrau</dc:creator>
<guid>http://computersafetytips.wordpress.com/2009/07/02/google-making-money-on-investments-with-google-ventures/</guid>
<description><![CDATA[On Monday, Google announced a major expansion, a venture capital fund with full Google branding: Goo]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>On Monday, Google announced a major expansion, a venture capital fund with full Google branding: Google Ventures.<img class="alignright size-medium wp-image-1375" title="Storm_by_Flauen" src="http://computersafetytips.wordpress.com/files/2009/07/storm_by_flauen.jpg?w=300" alt="Storm_by_Flauen" width="300" height="223" /></p>
<p>These investments will be all about profit and the company is taking pains to ensure potential investees that the money will come with no strings attached.</p>
<p>Bay and Boston will be the new investments group offices, both hubs of emerging software and biotech companies.</p>
<p>The Bay Area gets someone in the Internet start-ups background who previously managed healthcare/biotech investments.</p>
<p>The Boston branch will be headed by someone who came to Google when it purchased Android.  Google assure anyone who might be considering pitching to them that Google’s money won’t come with any strings attached.</p>
<p><!--more-->It notes that the venture arm will not apply any sort of litmust test on the company, such as a prior commercial arrangement with Google or the use of Google services.</p>
<p>It also states that the investment will in no way involve any management decisions that prepare the company for takeover.</p>
<p>Google itself indicates that being a profitable company during the trying economic times may provide it a great opportunity to go value hunting.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Del.icio.us Tag Challenge: Day 28]]></title>
<link>http://eamcc.wordpress.com/2009/06/30/del-icio-us-tag-challenge-day-28/</link>
<pubDate>Tue, 30 Jun 2009 18:00:52 +0000</pubDate>
<dc:creator>elzmcc</dc:creator>
<guid>http://eamcc.wordpress.com/2009/06/30/del-icio-us-tag-challenge-day-28/</guid>
<description><![CDATA[Can you spot the message in this tag cluster wordprint created with Wordle (© 2009)? From EAMCC on D]]></description>
<content:encoded><![CDATA[Can you spot the message in this tag cluster wordprint created with Wordle (© 2009)? From EAMCC on D]]></content:encoded>
</item>
<item>
<title><![CDATA[Acer supposedly launching laptops based on Intel’s CULV platform]]></title>
<link>http://computersafetytips.wordpress.com/2009/06/30/acer-supposedly-launching-laptops-based-on-intel%e2%80%99s-culv-platform/</link>
<pubDate>Tue, 30 Jun 2009 14:39:04 +0000</pubDate>
<dc:creator>froshfrau</dc:creator>
<guid>http://computersafetytips.wordpress.com/2009/06/30/acer-supposedly-launching-laptops-based-on-intel%e2%80%99s-culv-platform/</guid>
<description><![CDATA[We do not have any doubt that Acer’s producing a few laptops based on Intel’s forthcoming consumer u]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>We do not have any doubt that Acer’s producing a few laptops based on Intel’s forthcoming consumer ultra low voltage (CULV) platfor<img class="alignright size-medium wp-image-1371" title="force_of_nature_by_stg123" src="http://computersafetytips.wordpress.com/files/2009/06/force_of_nature_by_stg123.jpg?w=300" alt="force_of_nature_by_stg123" width="300" height="133" />m.</p>
<p>We last heard that the platform was still on track for a summer release.</p>
<p><!--more-->Taiwan Economic News is reporting that Acer is looking to launch 11.6-,13-,14- and 15-inch machines with CULV processors within.</p>
<p>If these rumours are true, at least some of them will make their debut next month.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Technology and its effects on Economy]]></title>
<link>http://teffects.wordpress.com/2009/06/26/technology-and-its-effects-on-economy/</link>
<pubDate>Fri, 26 Jun 2009 15:55:59 +0000</pubDate>
<dc:creator>muhammadjilani</dc:creator>
<guid>http://teffects.wordpress.com/2009/06/26/technology-and-its-effects-on-economy/</guid>
<description><![CDATA[Increasing population and the stress of work would eventually disorient the economy, but technology ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Increasing population and the stress of work would eventually disorient the economy, but technology has allowed the economy to reach beneficial limits. Effective technology in e-commerce and internet business has increased potential business and shopping over the internet, boosting the economy worldwide.  The technology of internet has undoubtedly been a useful achievement, but has now become a serious issue for all groups of ages. Pornographic content over the internet has gotten many parents concerned and in fact is considered a psychological hazard especially for the young people. A controversial technological drawback is the invention of the arms and ammunition. From the primitive arrows to nuclear weapons, these inventions have caused the loss of innocent lives. The tragedies such as the atomic bomb blasts in Hiroshima and Nagasaki demonstrate the results of such destructive inventions. In overall, the investment in weapons causes billions of dollars and over a long period of time can become one of the reasons for an economic recession.</p>
<p><em><strong>Related Links</strong></em></p>
<p><a title="Hamilton" href="http://people.hamilton.edu/bhouse/EconAndGov/EconAndGov.html" target="_blank">Econ and Gov</a></p>
<p><a title="Science &#38; Tech" href="http://www.hudtech.net/Science-and-Technology-on-the-Internet.html" target="_blank">Science and Technology</a></p>
<p>Here is my <a title="Technology" href="http://www.facebook.com/pages/Effects-of-Technology/119279777951" target="_blank">Facebook</a> link which also shares information on the same topic.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Office 14 likely to ship in 32-bit and 64-bit versions]]></title>
<link>http://computersafetytips.wordpress.com/2009/06/25/office-14-likely-to-ship-in-32-bit-and-64-bit-versions/</link>
<pubDate>Thu, 25 Jun 2009 11:47:05 +0000</pubDate>
<dc:creator>froshfrau</dc:creator>
<guid>http://computersafetytips.wordpress.com/2009/06/25/office-14-likely-to-ship-in-32-bit-and-64-bit-versions/</guid>
<description><![CDATA[ZDNet’s Ed Bott made a discovery while looking through the files in the leaked Windows 7 beta builds]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>ZDNet’s Ed Bott made a discovery while looking through the files in the leaked Windows 7 beta builds.<img class="alignright size-medium wp-image-1326" title="E_S_T_L_A_N_D_by_Healzo" src="http://computersafetytips.wordpress.com/files/2009/06/e_s_t_l_a_n_d_by_healzo.png?w=300" alt="E_S_T_L_A_N_D_by_Healzo" width="300" height="300" /></p>
<p>It’s come into view that the next version of Microsoft Office, currently codenamed Office 14, will be arriving in 32-bit and 64-bit flavours, assuming that an XML file (Migwiz.xml) used by Windows Easy Transfer in Windows 7 is revealing what many have been hoping for.</p>
<p>As you can see below, the file now includes detection for x64 versions of the nine Office programs.</p>
<p><!--more-->Windows Server 2008 R2 will be the first operating system from Microsoft to be a 64-bit-only release. Windows 7, on other hand, will be available in 32-bit and 64-bit versions.</p>
<p>The suggestion that Microsoft Office, easily the most important software suite Microsoft produces, will be available in 32-bit and 64-bit flavours is a huge deal.</p>
<p>Assuming that the change for Office 14, which is slated for release next year sometime after Windows 7 arrives, will come to pass, it will be one of the main pivots for 64-bit adoption.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Apple reveals a string of new features for iPhone OS 3.0]]></title>
<link>http://computersafetytips.wordpress.com/2009/06/25/apple-reveals-a-string-of-new-features-for-iphone-os-3-0/</link>
<pubDate>Thu, 25 Jun 2009 11:42:09 +0000</pubDate>
<dc:creator>froshfrau</dc:creator>
<guid>http://computersafetytips.wordpress.com/2009/06/25/apple-reveals-a-string-of-new-features-for-iphone-os-3-0/</guid>
<description><![CDATA[Senior Vice President of iPhone Software Engineering, Scott Forstall spoke about some of the feature]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Senior Vice President of iPhone Software Engineering, Scott Forstall spoke about some of the features and the over 1,000 new APIs available to dev<img class="alignright size-medium wp-image-1318" title="e0c163c8eb194ab1cdf020d31e966d5e" src="http://computersafetytips.wordpress.com/files/2009/06/e0c163c8eb194ab1cdf020d31e966d5e.png?w=300" alt="e0c163c8eb194ab1cdf020d31e966d5e" width="300" height="300" />elopers.</p>
<p>Developers now have a sanctioned way to sell additional content directly from an app, such as additional levels for a game or e-books for a reader app. Like the App Store, Apple handles all the logistics and keeps a 30 percent cut.</p>
<p>iPhone OS will now be able to use Bluetooth for connectivity to other iPhones. Apple has implemented Bonjour auto-discovery and peer-to-peer networking via Bluetooth with no complicated pairing required. This will allow apps to communicate to each other and transfer data.</p>
<p>Devices will also be able to communicate with external peripherals plugged in to the dock connecter via a standard protocol. Several examples were given, such as controlling an external speaker set&#8217;s EQ, or communicating with a medical device to gather data. Further, the communication is also enabled via Bluetooth as well.</p>
<p>Finally, the push notification feature that was supposed to appear in the iPhone OS 2.0 update will be making its debut in 3.0.</p>
<p><!--more-->Third-party servers can send text or sound notifications to Apple&#8217;s server, which then pushes them to a user&#8217;s iPhone.</p>
<p>Forstall also mentioned some other API additions, including giving developers access to the iPhone&#8217;s proximity sensor, a user&#8217;s iPod library, streaming video and audio via HTTP (even through firewalls), system-wide Data Detectors  and even built-in VoIP APIs. A particularly useful new API allows developers to call up a drop-down sheet for sending an email without having to quit the current app and launch the Mail app.</p>
<p>A beta of the iPhone OS 3.0 SDK is available today for all developers in the iPhone Dev Program. iPhone OS 3.0 will ship with summer and be available as a free update for all iPhones, including the original, however, some features, such as stereo Bluetooth won’t work on the older hardware. iPod touch users will again have to pay $9.95 to upgrade.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[A Theory on Learning Development]]></title>
<link>http://suifaijohnmak.wordpress.com/2009/05/26/a-theory-on-learning-development/</link>
<pubDate>Tue, 26 May 2009 04:13:35 +0000</pubDate>
<dc:creator>suifaijohnmak</dc:creator>
<guid>http://suifaijohnmak.wordpress.com/2009/05/26/a-theory-on-learning-development/</guid>
<description><![CDATA[I would like to respond to Jenny&#8217;s interesting post on reflecting in practice - where I would ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>I would like to respond to Jenny&#8217;s interesting post on <a href="http://jennymackness.wordpress.com/2009/05/23/383/">reflecting in practice </a>- where I would start with some of my interpretation of Learning Theories.</p>
<p>She writes:</p>
<blockquote><p>I think it’s helpful once in a while to make our implicit ways of working explicit both for ourselves and for others. As teachers, it can prevent us from making assumptions – a problem that was highlighted all those years ago by Stephen Brookfield.Brookfield S D (1995) <span style="text-decoration:underline;">The Getting of Wisdom. What Critically Reflective Teaching is and Why It’s Important.</span> <a href="http://www.nl.edu/academics/cas/ace/facultypapers/StephenBrookfield_Wisdom.cfm">http://www.nl.edu/academics/cas/ace/facultypapers/StephenBrookfield_Wisdom.cfm </a></p>
</blockquote>
<p><strong>Learning Theories</strong></p>
<p>When I reflected on the <a href="http://en.wikipedia.org/wiki/Learning_theories">learning theories</a>, I found something in common:<br />
1. Most theories were based on a psychological, cognitive, and constructive perspectives. Connectivism is based on a connective perspective.<br />
2. All learning theories are trying to explain how learning occurs, and to some extent try to explain why learning occurs, especially under different circumstances.<br />
3. Most theories have made basic assumptions &#8211; which were centred around teaching and learning pedagogy &#8211; the science of teaching and human nature, with some consideration of the impact of technology in the learning process.</p>
<p>Can we look at these theories and re-think about what all these mean?<br />
1. Do we want to clone another educator (expert) into another learner (who could become another teacher)?<br />
2. What do the theories show us in the learning process? Would these theories help us in better understanding how learning occurs?<br />
3. Are we on the verge of holding all the theories to our heart and proclaim that it could explain how learning occurs for EVERYONE?<br />
4. How about a theory on learning development?<br />
5. Are we experiencing such a learning development in our pursuit of life-long learning?<br />
6. What works for us in our learning journey?</p>
<p>We are all different, and so our learning are all different. Can we settle by first building and repairing our house (our learning) first in the learning development?<br />
Can we support our fellow educators and learners through interaction, collaboration, cooperation, with technology as enablers where necessary? Is that what learning is all about?<br />
Learning &#8211; a continuous development journey where each of us have our own route, own pace and own destiny.<br />
Is that the essence of connectivism?</p>
<p><strong><a href="http://en.wikipedia.org/wiki/Thinking">Thinking</a></strong></p>
<p>This Quiet Leadership by David Rock reveals the importance of thinking amongst employees in improving performance. </p>
<p>I would like to reflect on that:</p>
<p>As educators, we want to improve our learner&#8217;s performance (learning) and think we know what we should do in our teaching or facilitation.  Unfortunately, improving human performance (learning) involves one of the hardest challenges in the known universe: changing the way people think.</p>
<p>Quiet leaders (teachers) are masters who could bring out the best performance (learning) in others.  They improve the thinking of people  (learners) around them &#8211; literally improving the way their brains process information &#8211; without telling anyone (learners) what to do.  They empower the learners to pursue their learning journey, with encouragement and support.</p>
<p>Given how many people (educators and learners) in today&#8217;s companies (schools, universities) are being &#8220;paid&#8221; or &#8220;urged&#8221; to think and analyse, improving our thinking is one of the fastest ways to improve performance (learning).</p>
<p>Would &#8220;thinking&#8221; be the theory of learning development that we are looking for?</p>
<p>What does <a href="http://en.wikipedia.org/wiki/Thinking">thinking</a> mean to you &#8211; in your pursuit of life-long learning?</p>
<p>How would <a href="http://suifaijohnmak.wordpress.com/2009/05/17/transformational-and-parallel-thinking-a-reflection/">transformational thinking </a>be valued in our learning journey?</p>
<p>Would this take into account the critical thinking process, the critical reflection as an educator and learner?</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Technology, Instructional Design and Role of Teachers]]></title>
<link>http://suifaijohnmak.wordpress.com/2009/05/17/technology-instructional-design-and-role-of-teachers/</link>
<pubDate>Sun, 17 May 2009 04:43:39 +0000</pubDate>
<dc:creator>suifaijohnmak</dc:creator>
<guid>http://suifaijohnmak.wordpress.com/2009/05/17/technology-instructional-design-and-role-of-teachers/</guid>
<description><![CDATA[In this Technology impact on Learning Outcomes: Can It be Be Measured?  Ruth says: Additionally, mis]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>In this <a href="http://www.thejournal.com/articles/24383_4">Technology impact on Learning Outcomes: Can It be Be Measured?</a>  Ruth says:</p>
<blockquote><p>Additionally, misconceptions exist around the direct role of technology in the learning process, and, often, the technology is regarded as the teacher rather than a tool used by teachers and students to support the dynamic process of learning. As such, teachers sometimes distance themselves from these tools in the hopes that their jobs will remain secure. (If everything is being painfully scrutinized and you simply do what you do as a teacher because that is how you learned and were taught, then it is very probable that your outlook is threatened and that you would become insecure.) Why do you grade the way you do? Why do you create assignments the way you do? How do you know that the learning outcomes of the course you are currently teaching truly reflect student needs and global application requirements?</p></blockquote>
<p>Is that the major challenge that some teachers are facing, even in Higher Education?  Instead of using technology as an enabler, would teachers be hesitant in embracing them as a tool in teaching and learning in their classroom practice?  How could teachers make better use of technology in the instructional design?</p>
<p>The following are three characteristics of process-based instructional design:</p>
<blockquote>
<ul>
<li>Focus on how rather than what. Teachers who encourage students to focus on “how” something works or happens are more likely to develop students who can think beyond what is currently happening to what might happen more efficiently and effectively.</li>
<li>Focus on why rather than when. Additionally, teachers who encourage students to ask “why” questions are more likely to develop thinking skills that help students to move beyond the understanding of simple tasks and the fulfillment/completion of simple tasks toward the more complex skills of problem solving.</li>
<li>Focus on future trends rather than current practices. The ultimate result of these kinds of approaches to learning is that we will see students who can move toward future trends and progressive organizations and methods, who can move toward change rather than stagnate within existing practices that may or may not meet the demands or the needs of clients and participants.</li>
</ul>
</blockquote>
<p>Has technology become the teacher that would render the redundancy of the teacher?  Enjoy this Web 2.0<span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/nsa5ZTRJQ5w&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' /><param name='allowfullscreen' value='true' /><param name='wmode' value='transparent' /><embed src='http://www.youtube.com/v/nsa5ZTRJQ5w&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' type='application/x-shockwave-flash' allowfullscreen='true' width='425' height='350' wmode='transparent'></embed></object></span></p>
<p>Learning can be DIY (do it yourself) under the Web 2.0, while the learner would become peer teachers to each other, especially under networked learning environment.</p>
<p>It is common to have police officers teaching police officers, military officers teaching military officers and teachers teaching teachers.  So, would it be feasible for  learners teaching learners under the Web 2.0 mediated learning ecology?  Given the vast open learning course ware freely available on web &#8211; like <a href="http://ocw.mit.edu/OcwWeb/web/courses/av/index.htm">MIT </a>course ware, many people are already exploiting its use in their learning process. </p>
<p>Learning is no longer restricted to the traditional class-room based face to face teaching. E -learning in the form of video classroom and recorded Elluminate sessions could provide learners with added choices of whom, when, where, what and how they would like to learn from.  These forms of learning and education could be obtained often for free, except the price paid for the broadband or cable internet connection fees by the learners. </p>
<p>Teachers may still be required in Higher Education, but would they be playing different roles in this technology mediated education and learning environment?  How about teachers as creators of resources, creators of learning space, co-creators and co-designers of courses and instructions with the learners, collaborators with learners, and co-assessor with learners?</p>
</div>]]></content:encoded>
</item>

</channel>
</rss>
