<?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>uac &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://en.wordpress.com/tag/uac/</link>
	<description>Feed of posts on WordPress.com tagged "uac"</description>
	<pubDate>Sat, 28 Nov 2009 09:32:44 +0000</pubDate>

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

<item>
<title><![CDATA[Windows 7 - part two]]></title>
<link>http://helpmeandadviseme.wordpress.com/2009/11/23/windows-7-part-two/</link>
<pubDate>Mon, 23 Nov 2009 12:00:16 +0000</pubDate>
<dc:creator>cubalibre83</dc:creator>
<guid>http://helpmeandadviseme.wordpress.com/2009/11/23/windows-7-part-two/</guid>
<description><![CDATA[Dopo alcune prove effettuate con il nuovo sistema operativo Microsoft, posso dire che: - l&#8217;ins]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Dopo alcune prove effettuate con il nuovo sistema operativo Microsoft, posso dire che:<br />
- l&#8217;installazione di Windows 7 è piuttosto rapida e con nessuna interruzione, se non in fase finale, ma ciò è fisiologico;<br />
- la compatibilità con driver di periferiche e software vari sembra più che soddisfacente;<br />
- la &#8220;pesantezza&#8221; del sistema operativo è quasi paragonabile a quella di Windows XP, infatti testandolo su PC con configurazioni obsolete (50GB di spazio disco, 1GB di RAM, tralasciando la velocità del processore) i risultati sono più che buoni;<br />
- apprezzabile l&#8217;eliminazione del sistema UAC (controllo accesso utente) che su Windows Vista era un vero e proprio tormento;<br />
- piccola chicca, più simpatica che altro, il ritorno del tasto &#8220;arresta il sistema&#8221; come prima scelta anzichè la famosa &#8220;sospensione&#8221; utilizzata in Windows Vista.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Displaying the UAC Shield in WPF with an Adorner]]></title>
<link>http://sohotechnology.wordpress.com/2009/11/22/displaying-the-uac-shield-in-wpf-with-an-adorner/</link>
<pubDate>Mon, 23 Nov 2009 01:06:22 +0000</pubDate>
<dc:creator>SOHO Technology</dc:creator>
<guid>http://sohotechnology.wordpress.com/2009/11/22/displaying-the-uac-shield-in-wpf-with-an-adorner/</guid>
<description><![CDATA[Since creating an elevated managed COM object, I have, on odd occasions, given thought to how to dis]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Since <a href="http://wp.me/sCkld-3">creating an elevated managed COM object</a>, I have, on odd occasions, given thought to how to display the UAC Shield Icon in a WPF application.  After some research failed to uncover any useful information, I embarked on the task of creating a manageable method for displaying the icon.  While a full general purpose solution might be nice, a button that can display the icon as needed, should be sufficient for most purposes and demonstrates a methodology to follow for other controls.</p>
<p>Since I limited my implementation to a button, I created the UACShieldButton derived from Button.  By deriving from Button, all of the click and commanding handling were already done.  I left the final decision to display the icon with the UACShieldButton class.  The caller simply indicates that it desires the shield to be displayed if all other conditions, elevation state and UAC enabled operating system, are correct.</p>
<p>The obvious items required are a method of the calling code to indicate the desire for the shield and the shield icon itself.  Since I wanted binding to work with these properties, they were implemented as dependency properties.  The DesiresShield dependency property represents the calling code’s desire to have the shield displayed.  The ShieldIcon dependency property is an ImageSource for the image to display.  This property will default to the system shield icon, System.Drawing.SystemIcons.Shield through the default value set in the UACShieldButton’s static constructor.</p>
<p>If you have been following along, you have noticed I keep indicating the code utilizing the UACShieldButton class indicates a desire to have the shield displayed.  By allowing the UACShieldButton class to make the final decision to display the shield, some complication is hidden from the caller and code is consolidated into one location.  The shield will be displayed if the three following conditions are true:  the shield is requested, the operating system’s major level is 6 or above (Vista and Server 2008 and higher) and the caller is not already elevated.  The test for elevation is the only one that is not entirely straight forward.  As it happens, the old Win32 API call IsUserAnAdmin supplies the needed information.  Even though the documentation indicates membership in the Administrator’s group, under UAC enabled systems, it indicates that the user is currently elevated to administrator status.</p>
<p>The other nicety provided is the automatic handling of different ToolTips depending on elevation state.  Generally, the non-elevated state indicates that the associated out-of-process COM server has not been created.  Since it is not created, any state information that it would supply is unavailable.  By providing for the automatic handling of the display to different ToolTips according to the elevation state, the UACShieldButton control automatically provides the user with the correct ToolTip.  For example, assume you have a Service Controller Interface COM server and Start and Stop buttons to stop or start a service.   Until such time as the COM server is created, the state of the service is unknown.  The ToolTipNotElevated version of the ToolTip could indicate the lack of state information along with the effect of clicking the button.  Once the COM server is created, the ToolTipElevated ToolTip would be displayed simply indicating the effect of clicking the button.</p>
<p>The only logic that the caller must provide is the setting of DesiresShield to false, once the elevation is provided for any button.  You might be wondering why?  The elevation done here is elevating an out-of-process COM object as opposed to the program elevation that the UACShieldButton class can detect.</p>
<p>The trick to easily displaying the shield is to use an Adorner.  The alternative is to provide an alternate control template for the button and having created an alternate control template once, I do not relish doing it again.  The UACShieldAdorner class derives from Adorner and manages all aspects of displaying the shield.  The only tricky part of this code is the sizing and positioning algorithm.  The shield is resized proportionally to be four pixels less than the hosting button’s height.  It is then placed two pixels below and to the right of the upper left corner of the button.  Since the adorner layer is the topmost layer, the shield can obscure the text or the image in the button.</p>
<p>While this solution is not an end-all solution to displaying UAC Shield Icons, it is a starting point to that can be easily adapted to other controls and positions algorithms.</p>
<p>The code is <a title="here" href="http://cid-6372e0958f1d1d72.skydrive.live.com/self.aspx/.Public/Code%20for%20Blog%20Posts/UacShieldWithAdorner.zip">here</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Mejorar UAC en Windows 7]]></title>
<link>http://margotu.wordpress.com/2009/11/19/mejorar-uac-en-windows-7/</link>
<pubDate>Thu, 19 Nov 2009 09:37:27 +0000</pubDate>
<dc:creator>Javier Aparicio</dc:creator>
<guid>http://margotu.wordpress.com/2009/11/19/mejorar-uac-en-windows-7/</guid>
<description><![CDATA[El Control de Acceso de Usuarios fue el principal quebradero de cabeza con el que tuvieron que batal]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>El <strong>Control de Acceso de Usuarios</strong> fue el principal quebradero de cabeza con el que tuvieron que batallar los compradores de Windows Vista. Microsoft tomó nota de ello y en <strong>Windows 7</strong> se ha vuelto mucho menos intrusivo, sin embargo, es posible afinarlo más. Hay dos formas de conseguir optimizar la utilización del UAC.</p>
<p><!--more--></p>
<div>Acceder al UAC en el Panel de Control</div>
<p>En el <em>Panel de Control/Sistema y Seguridad</em>, tendremos la opción <em>Cambio de cuentas de usuario de control</em>, que tendremos que configurar. Para ello, deslizamos la barra hasta el nivel que más nos convenza. En <strong>Windows Vista</strong>, era habitual deshabilitarlo completamente por la gran cantidad de <strong>molestias</strong>, pero en <strong>Windows 7</strong> un nivel intermedio o bajo es suficientemente seguro sin molestar al usuario.</p>
<p><img src="http://imag.malavida.com/blog/images/2009/11/id_15100_uacreg.jpg" alt="Windows 7 UAC Registro" /></p>
<div>Editar el UAC desde el Registro</div>
<p>Si en la búsqueda integrada del menú de Inicio, escribimos <em>gpedit.msc</em> y pulsamos <em>Intro</em>, se nos abrirá el editor del registro. Una vez allí buscamos la cadena <em>Configuración ORDENADOR&#62; Windows&#62; Configuración de seguridad&#62; Directivas locales&#62; Opciones de seguridad</em> y encontraremos varias entradas referentes al UAC. Todos ellos tiene una gran utilidad que se explica en el nombre, será tarea del <strong>usuario</strong> decidir si se activan o se desactivan. En cualquier caso, es posible que los cambios requieran de un reinicio para funcionar.</p>
<p>Estas son las dos formas de <strong>configurar completamente el servicio UAC</strong> para que mantenga la seguridad sin resultar molesto.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Top Five Security-Related Group Policy Settings]]></title>
<link>http://paulelso.wordpress.com/2009/11/16/top-five-security-related-group-policy-settings/</link>
<pubDate>Mon, 16 Nov 2009 16:30:40 +0000</pubDate>
<dc:creator>PaulElso</dc:creator>
<guid>http://paulelso.wordpress.com/2009/11/16/top-five-security-related-group-policy-settings/</guid>
<description><![CDATA[#5: Control UAC with More Control User Account Control (UAC) is a security mechanism meant to prompt]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><h4>#5: Control UAC with More Control</h4>
<p>User Account Control (UAC) is a security mechanism meant to prompt users for credentials when they try to launch various parts of the operating system that are privileged only to administrators. The default behavior is to prompt users for administrator credentials. In practice, users aren’t typically provided these administrator credentials. So why bother giving them the ability to enter in credentials at all? My suggestion is to tweak the UAC setting located at Computer Configuration &#124; Security Settings &#124; Security Options &#124; User Account Control: Behavior of the elevation prompt for standard users. Set it to “Automatically deny elevation requests.” Then, when users try to touch admin-only parts of the operating system, they get an immediate Access Denied, instead of being prompted. One less thing for users to see and get frustrated with (since they shouldn’t be there in the first place.)</p>
<p>#4: Advanced Audit Policy Configuration</p>
<p>Windows Vista introduced some extra auditing capabilities. However, to enable them, there was no “Group Policy way” to do it.&#160; You used a tool called “Auditpol.exe.” That command-line tool, while still available in Windows 7, isn’t my preferred way to turn on these enhanced auditing features. Head down to Computer Configuration &#124; Policies &#124; Windows Settings &#124; Security Settings &#124; Advanced Audit Policy Configuration and see what’s new for auditing.</p>
<p>With Windows 7 as target machines, you can now use Group Policy to set up precisely which machines get what advanced auditing.</p>
<p>Extra Tip: Click on the node named “Audit Policies” itself to get links to some “how-to” steps for this special section. Additionally, to see what can be audited and the results of auditing, check out <a></a><a href="http://technet.microsoft.com/library/dd772712.aspx">this Microsoft article</a></a>.&#160; </p>
<h4>#3: AppLocker</h4>
<p>AppLocker’s job is to ensure that you’re running only the software you do want to run, and not running software you don’t want to run. AppLocker is valid for Windows 7 and Windows Server 2008 R2 target systems. My buddy Greg Shields has a great <a></a><a href="http://technet.microsoft.com/en-us/magazine/2009.10.geekofalltrades.aspx">article on AppLocker</a></a> in the October 2009 TechNet magazine. </p>
<p>Then, start getting more secure. Find out if AppLocker is right for you. Check it out at </p>
<p>Computer Configuration &#124; Policies &#124; Windows Settings &#124; Security Settings &#124; Application Control Policies &#124; AppLocker.</p>
<p>&#160;</p>
<h4>#2: Hardware Restriction</h4>
<p>What’s that? You don’t yet know how to prevent USB memory devices from getting on your network?&#160; Start out your journey by watching this <a></a><a href="http://tinyurl.com/yeuhe7d">video from one of my training classes</a></a> then head down to Computer Configuration &#124; Policies &#124; Administrative Template &#124; System &#124; Device Installation &#124; Device Installation Restrictions and give it a shot yourself!</p>
<p>&#160;</p>
<h4>#1: Windows Firewall with Advanced Security</h4>
<p>Windows Server 2008 and Windows Server 2008 R2 ship with the firewall turned on. That’s a good idea, but sometimes it can be a bear to know which ports to open based on what the server is actually doing for you. With the Windows Firewall with Advanced security section of the Group Policy editor, you’re in charge. It’s located at Computer Configuration &#124; Policies &#124; Windows Settings &#124; Windows Firewall with Advanced Security.</p>
<p>&#160;</p>
<p><a href="http://technet.microsoft.com/en-gb/library/ee780891.aspx">Full article with screenshots…</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Windows 7 ainda não tem falhas de segurança, pesquisa desmente]]></title>
<link>http://dominioti.wordpress.com/2009/11/15/windows-7-ainda-nao-tem-falhas-de-seguranca-pesquisa-desmente/</link>
<pubDate>Sun, 15 Nov 2009 03:37:58 +0000</pubDate>
<dc:creator>Fernando Henrique</dc:creator>
<guid>http://dominioti.wordpress.com/2009/11/15/windows-7-ainda-nao-tem-falhas-de-seguranca-pesquisa-desmente/</guid>
<description><![CDATA[De acordo com matéria da Info do dia 11/11/2009, o Windows 7 conseguiu passar suas primeiras semanas]]></description>
<content:encoded><![CDATA[De acordo com matéria da Info do dia 11/11/2009, o Windows 7 conseguiu passar suas primeiras semanas]]></content:encoded>
</item>
<item>
<title><![CDATA[Microsoft brevetta sudo? cazzate col botto!]]></title>
<link>http://vistabuntu.wordpress.com/2009/11/14/microsoft-brevetta-sudo-cazzate-col-botto/</link>
<pubDate>Sat, 14 Nov 2009 15:57:10 +0000</pubDate>
<dc:creator>gilean</dc:creator>
<guid>http://vistabuntu.wordpress.com/2009/11/14/microsoft-brevetta-sudo-cazzate-col-botto/</guid>
<description><![CDATA[E&#8217; di recente data la notizia secondo la quale Microsoft starebbe brevettando il tanto famoso ]]></description>
<content:encoded><![CDATA[E&#8217; di recente data la notizia secondo la quale Microsoft starebbe brevettando il tanto famoso ]]></content:encoded>
</item>
<item>
<title><![CDATA[SuperFetch en Manifest wijzigingen]]></title>
<link>http://jeroenwernsen.wordpress.com/2009/11/12/superfetch-en-manifest-wijzigingen/</link>
<pubDate>Thu, 12 Nov 2009 07:54:11 +0000</pubDate>
<dc:creator>Jeroen Wernsen</dc:creator>
<guid>http://jeroenwernsen.wordpress.com/2009/11/12/superfetch-en-manifest-wijzigingen/</guid>
<description><![CDATA[Onlangs wilde ik een los Manifest toevoegen aan een bestaande applicatie, om zodoende te markeren da]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Onlangs wilde ik een los Manifest toevoegen aan een bestaande applicatie, om zodoende te markeren dat deze in Vista of Windows 7 altijd met admin-rechten gestart moet worden.</p>
<p>Bij het testen van deze oplossing bleek ik niet de UAC melding te krijgen die ik verwacht had.</p>
<p>Wat bleek: in Vista en Windows 7 is een feature actief met de naam SuperFetch (zie: <a title="Vista SuperFetch feature" name="Vista SuperFetch feature" href="http://www.microsoft.com/windows/windows-vista/features/superfetch.aspx?tabid=1&#38;catid=3">Vista SuperFetch feature</a>). Om vaak gebruikte applicaties sneller te kunnen starten wordt het programma en de manifest informatie opgeslagen in een cache, welke bij het starten van Windows al wordt ingelezen. Als het programma gestart moet worden komen de applicatie en het manifest uit de cache i.p.v. van het file system. Manifest wijzigingen voor een programma dat al in de SuperFetch cache voorkomt hebben hierdoor geen effect. (zie: <a title="Vista Compatibility Team blog" name="Vista Compatibility Team blog" href="http://blogs.msdn.com/vistacompatteam/archive/2006/11/13/manifest-and-the-fusion-cache.aspx">Vista Compatibility Team blog</a>)</p>
<p>Er zijn een tweetal oplossingen voor dit probleem:</p>
<ol>
<li>Zorg dat Windows geen cache-entry voor de applicatie kan vinden door de locatie of de timestamp van de executable te veranderen.</li>
<li>Leeg de SuperFetch cache (<em>%systemroot%</em>\Prefetch) en reboot. De cache zal door Windows weer opnieuw worden gevuld. <strong>Let op:</strong> Verwijder niet de eventueel aanwezige ReadyBoot folder.</li>
</ol>
<p>De SuperFetch functionaliteit is overigens af te regelen, hoe wordt uitgelegd in het artikel: <a title="SuperFetch advanced settings" name="SuperFetch advanced settings" href="http://social.answers.microsoft.com/Forums/en-US/vistaperformance/thread/e9ded298-9373-403b-aa3a-2bd2ae456480">SuperFetch advanced settings</a>. Uitschakelen kan ook: <a title="How to Disable SuperFetch" name="How to Disable SuperFetch" href="http://www.howtogeek.com/howto/windows-vista/how-to-disable-superfetch-on-windows-vista/">How to Disable SuperFetch</a>.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[How NOT to elevate an installer application in Vista]]></title>
<link>http://smnuman.wordpress.com/2009/11/09/drive-vista-not-elevate-installer-application/</link>
<pubDate>Mon, 09 Nov 2009 22:16:43 +0000</pubDate>
<dc:creator>Syed Muhammad Numan</dc:creator>
<guid>http://smnuman.wordpress.com/2009/11/09/drive-vista-not-elevate-installer-application/</guid>
<description><![CDATA[Like many others I had problems installing softwares in my Vista(Business) laptop since long as it a]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Like many others I had problems installing softwares in my <em>Vista</em>(Business) laptop since long as it always forces me to install it with Admin authority, which I didn&#8217;t want! I just wanted to install a software or a program for a testing purpose some of which  didn&#8217;t even need to register in the windows registry.</p>
<p>Vista has a way to force the setup programs to elevate the current user if the user is not the administrator. That way Vista ensures the security of the system, at least that&#8217;s what there defenses are.</p>
<p>But in order to install my programs without elevating my user credentials, I searched the web with the help of Google Search and landed on a <a href="http://blogs.msdn.com/andrewarnottms/archive/2008/10/15/how-to-force-vista-to-not-elevate-an-application.aspx">helpful msdn blog</a> of <a href="http://blogs.msdn.com/andrewarnottms/default.aspx">Andrew Arnott</a></p>
<p>The important bit of code that helped me at the moment was the following:</p>
<blockquote><p>There is a way to coerce Vista to not elevate a process that it otherwise would.</p>
<p><code>REM The next command MUST be run from an elevated command window.<br />
REM It launches regedit.exe WITHOUT elevated privileges.<br />
runas /trustlevel:0x20000 regedit.exe</code></p></blockquote>
<p>I have modified it to take a parameter that would help you run this for any program from an elevated command prompt</p>
<p>Here is what is done to do the job:</p>
<blockquote><p><code>@ECHO OFF<br />
REM =====================================<br />
REM source: http://blogs.msdn.com/andrewarnottms/archive/2008/10/15/how-to-force-vista-to-not-elevate-an-application.aspx<br />
REM =====================================<br />
REM The next command MUST be run from an elevated command window.<br />
REM It launches regedit.exe WITHOUT elevated privileges.<br />
REM runas /trustlevel:0x20000 regedit.exe<br />
REM =====================================<br />
setlocal<br />
if {%1}=={} set _empty=Syntax: UnUAC "[-e{xit current window}] [path\]file to run" &#38;goto :message<br />
if EXIST %~$PATH:1 (set _File=%~$PATH:1) ELSE (set _File=%~f1)<br />
if NOT EXIST %_File% ( set _empty=File NOT found in the path or in local directory. &#38;goto :message )<br />
goto :runthis<br />
:message<br />
echo %_empty%<br />
endlocal&#38;set _empty=%_empty%<br />
:runthis<br />
if exist %_File% runas /trustlevel:0x20000 %_File%<br />
</code>
</p></blockquote>
<p>I have saved it as <code>UnUAC.cmd</code> in the folder <code>c:\Windows\System32\</code>. That way it remains available at all levels and under any directory path. That&#8217;s how I&#8217;d be able to run any application without the admin elevation of the user <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Windows 7 gục ngã trước 8 trong 10 virus]]></title>
<link>http://netvietnam.org/2009/11/09/windows-7-g%e1%bb%a5c-nga-tr%c6%b0%e1%bb%9bc-8-trong-10-virus/</link>
<pubDate>Mon, 09 Nov 2009 08:55:39 +0000</pubDate>
<dc:creator>Nhân Mã</dc:creator>
<guid>http://netvietnam.org/2009/11/09/windows-7-g%e1%bb%a5c-nga-tr%c6%b0%e1%bb%9bc-8-trong-10-virus/</guid>
<description><![CDATA[Thật thất vọng và trái ngược với những tuyên bố của Microsoft, Windows 7 dễ dàng gục ngã trước 8 tro]]></description>
<content:encoded><![CDATA[Thật thất vọng và trái ngược với những tuyên bố của Microsoft, Windows 7 dễ dàng gục ngã trước 8 tro]]></content:encoded>
</item>
<item>
<title><![CDATA[avoid uac on WPF application deployed on Vista / windows 7]]></title>
<link>http://dotnettrails.wordpress.com/2009/11/08/avoid-uac-on-wpf-application-deployed-on-vista-windows-7/</link>
<pubDate>Sun, 08 Nov 2009 09:50:52 +0000</pubDate>
<dc:creator>dotnettrails</dc:creator>
<guid>http://dotnettrails.wordpress.com/2009/11/08/avoid-uac-on-wpf-application-deployed-on-vista-windows-7/</guid>
<description><![CDATA[Sometimes when you are building a full trust app to be deployed via clickonce, things like editing r]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Sometimes when you are building a full trust app to be deployed via clickonce, things like editing registry, custom protocol access etc might require user’s permission. To avoid such UAC messages, turn on requestedExecutionLevel to asInvoker in your app.manifest under properties folder.</p>
<p>More info <a href="http://msdn.microsoft.com/en-us/library/ms228996.aspx" target="_blank">here</a></p>
<div style="display:inline;float:none;margin:0;padding:0;" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:8db4e01a-0b62-4f42-ae1d-12e1510fc9a1" class="wlWriterEditableSmartContent">Technorati Tags: <a href="http://technorati.com/tags/WPF" rel="tag">WPF</a>,<a href="http://technorati.com/tags/clickonce" rel="tag">clickonce</a>,<a href="http://technorati.com/tags/UAC" rel="tag">UAC</a>,<a href="http://technorati.com/tags/Vista" rel="tag">Vista</a>,<a href="http://technorati.com/tags/Windows7" rel="tag">Windows7</a>,<a href="http://technorati.com/tags/asInvoker" rel="tag">asInvoker</a>,<a href="http://technorati.com/tags/requestedExecutionLevel" rel="tag">requestedExecutionLevel</a></div>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Windows 7: senza antivirus è poco sicuro ]]></title>
<link>http://pcsicuro.wordpress.com/2009/11/06/windows-7-senza-antivirus-e-poco-sicuro/</link>
<pubDate>Fri, 06 Nov 2009 15:07:15 +0000</pubDate>
<dc:creator>pcsicuro</dc:creator>
<guid>http://pcsicuro.wordpress.com/2009/11/06/windows-7-senza-antivirus-e-poco-sicuro/</guid>
<description><![CDATA[Se dal punto di vista della velocità Windows 7 ha parecchie frecce al proprio arco, sembra che altre]]></description>
<content:encoded><![CDATA[Se dal punto di vista della velocità Windows 7 ha parecchie frecce al proprio arco, sembra che altre]]></content:encoded>
</item>
<item>
<title><![CDATA[Ecomuseus]]></title>
<link>http://uac1.wordpress.com/2009/11/02/ecomuseus/</link>
<pubDate>Mon, 02 Nov 2009 23:10:22 +0000</pubDate>
<dc:creator>Wellington Nascimento</dc:creator>
<guid>http://uac1.wordpress.com/2009/11/02/ecomuseus/</guid>
<description><![CDATA[Queridos amigos, Nossa aula de Museologia e Património teve como tema os &#8220;ecomuseus&#8221;.  A]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><address><span style="color:#000080;"><img class="size-medium wp-image-321 aligncenter" title="mar07" src="http://uac1.wordpress.com/files/2009/11/mar07.jpg?w=224" alt="mar07" width="112" height="132" /></span></address>
<address><em><span style="color:#000080;">Queridos amigos,</span></em></address>
<address><span style="color:#000080;"><em>Nossa aula de Museologia e Património teve como tema os &#8220;ecomuseus&#8221;.  A pergunta  que  tivemos de responder foi: Porque não há ecomuseus nos açores?  Foi apresentado dois sites (os links estão na página das unidades curriculares) que tratam do assunto e que são muito bons como fonte de pesquisa.</em></span></address>
<address><span style="color:#000080;">Bibliografia recomendada: <a href="http://www.wook.pt/ficha/reflexoes-sobre-ecomuseologia/a/id/75836" target="_blank">Reflexões Sobre Ecomuseologia de  Fernando Santos Pessoa</a></span></address>
<p style="text-align:justify;"><span style="color:#000080;"><em>Uma boa noite,</em><em></em></span></p>
<p style="text-align:justify;"><em><span style="color:#000080;">wwellingtonn</span></em><em></em></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Colóquio-Autonomia]]></title>
<link>http://uac1.wordpress.com/2009/11/02/coloquio-autonomia/</link>
<pubDate>Mon, 02 Nov 2009 13:32:02 +0000</pubDate>
<dc:creator>Wellington Nascimento</dc:creator>
<guid>http://uac1.wordpress.com/2009/11/02/coloquio-autonomia/</guid>
<description><![CDATA[COLÓQUIO &#8211; DAS AUTONOMIAS À AUTONOMIA E À INDEPENDÊNCIA: o Atlântico político entre os séculos]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><address><span style="color:#000080;"><strong><em>COLÓQUIO &#8211; </em></strong><strong><em>DAS AUTONOMIAS À AUTONOMIA E À INDEPENDÊNCIA: </em></strong></span></address>
<address><span style="color:#000080;"><strong><em>o Atlântico político entre os séculos XV e XXI</em></strong> </span></address>
<address><span style="text-decoration:underline;"><strong><a href="http://docs.google.com/fileview?id=0BxLmKVG61xqMZWY0ZDQ0ZTUtYWRlOS00NThkLWJjOTktMjg2NTg3MjljNDA5&#38;hl=pt_PT" target="_blank"><span style="color:#800000;">programa pdf</span></a></strong></span></address>
<address><strong></strong><span style="color:#000080;"> </span></address>
<address><span style="color:#000080;">Local de realização do evento: Ponta Delgada </span></address>
<address><span style="color:#000080;">Data do evento: 29-31 de Outubro de 2009</span></address>
<address><span style="color:#000080;"> Comissão Organizadora:</span></address>
<address><span style="color:#000080;">-      Avelino de Freitas de Meneses</span></address>
<address><span style="color:#000080;">-      José Damião Rodrigues</span></address>
<address><span style="color:#000080;">-      Maria Margarida Machado</span></address>
<address><span style="color:#000080;">-      Susana Goulart Costa</span></address>
<address><span style="color:#000080;">-      Ricardo Madruga da Costa</span></address>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[7 novidades no Windows 7 - Uma review]]></title>
<link>http://diutsu.wordpress.com/2009/10/23/7-novidades-no-windows-7-uma-review/</link>
<pubDate>Fri, 23 Oct 2009 15:09:41 +0000</pubDate>
<dc:creator>diutsu</dc:creator>
<guid>http://diutsu.wordpress.com/2009/10/23/7-novidades-no-windows-7-uma-review/</guid>
<description><![CDATA[Finalmente, fiz o download e instalei o windows 7 no meu portátil, por coincidência, é ontem (22/10/]]></description>
<content:encoded><![CDATA[Finalmente, fiz o download e instalei o windows 7 no meu portátil, por coincidência, é ontem (22/10/]]></content:encoded>
</item>
<item>
<title><![CDATA[Windows 7 - po premierze.]]></title>
<link>http://simonnam.wordpress.com/2009/10/23/windows-7-po-premierze/</link>
<pubDate>Fri, 23 Oct 2009 12:21:15 +0000</pubDate>
<dc:creator>simonnam</dc:creator>
<guid>http://simonnam.wordpress.com/2009/10/23/windows-7-po-premierze/</guid>
<description><![CDATA[Wczoraj swoją premierę miał m.in. Windows 7. Przez wielu wychwalany i uważany za godnego następcę Wi]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Wczoraj swoją premierę miał m.in. Windows 7. Przez wielu wychwalany i uważany za godnego następcę Windowsa XP.</p>
<p>Testowałem wersję RC i napiszę trochę od siebie.</p>
<p>Faktycznie, jest to lepszy system od Visty. Zajmuje mniej pamięci RAM (lecz wg mnie to i tak dużo, jak na system), szybciej się uruchamia. Na plus trzeba także zaliczyć obszerniejszą bazę sterowników, które można zainstalować dzięki Windows Update. Lecz niestety, posiadacze starszego sprzętu mogą mieć problemy z jego uruchomieniem pod nowym systemem od Microsoftu. To samo tyczy się niektórych laptopów, poniewaz nie do wszystkich znajdziemy sterowniki działające pod siódemką.</p>
<p>Teraz coś UAC. Spotkał się on z wieloma krytykami i wiele osób od razu po instalacji Visty go wyłączała. Taki trochę paradoks &#8211; ludzie chcą bezpieczny system, a krytykują i wyłączają jeden z mechanizmów bezpieczeństwa. Czy naprawdę UAC aż tak przeszkadza ludziom? Mi osobiście nie przeszkadzał, a nawet i pomagał, ponieważ instalacja jakiegokolwiek programu z poziomy konta zwykłego użytkownika wymagała jedynie wpisania hasła i potwierdzenia go enterem. Dużo wygodniejsze i szybsze. Nowy Windows posiada odświeżoną wersję tego mechanizmu. Ukazuje się on nam teraz rzadziej niż pod Vistą.</p>
<p>Oczywiście Windows 7 ma wiele innych ciekawych nowości (chociażby wstążki w Paincie i Wordpadzie), lecz nie będę ich opisywał, gdyż po prostu nie przetestowałem ich wystarczająco dokładnie, aby się na ich temat wypowiadać.</p>
<p>Podsumowując, nowy Windows jest dobrym systemem, który spełnia wiele pokładanych w nim nadziei. Lecz czy jest to godny następca XPka? Trudno ocenić. Z jednej strony jest to system nowoczesny, zawierający wiele ciekawych rozwiązań. Z drugiej jednak, nie każdy komputer sobie z nim poradzi, a większości ludziom Windows XP w zupełności wystarcza.</p>
<p>P.S. Ja i tak zostaję przy Debianie <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Importance of User Account Control]]></title>
<link>http://nogitech.wordpress.com/2009/10/23/importance-of-user-account-control/</link>
<pubDate>Fri, 23 Oct 2009 04:35:11 +0000</pubDate>
<dc:creator>nogi</dc:creator>
<guid>http://nogitech.wordpress.com/2009/10/23/importance-of-user-account-control/</guid>
<description><![CDATA[User Account Control is a security mechanism in Windows Vista and Seven that is used to prevent user]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>User Account Control is a security mechanism in Windows Vista and Seven that is used to prevent users from unintentionally launching processes with administrative rights. If a user attempts to complete a task that requires administrative privileges, a User Account Control box will pop up and ask for the user’s permission to continue before that task is performed. This is true even if the user’s account is a member of the Administrators group. One of the main goals of the User Account Control function is to prevent users from unknowingly launching applications with administrative rights. This will help to alleviate the installation of malware and spyware by unknowing users who browse the Internet with no regard for the applications they are unintentionally launching. The User Account Control feature will make users aware of the fact that an application is about to launch and will allow users to determine whether they want to let the application launch.</p>
<p> Although the User Account Control feature of Vista and Seven does help to prevent the installation of unwanted programs, it does have limitations. Many users tend to find the User Account Control prompts annoying when working with the Vista and Seven operating systems over an extended period of time. If users are frequently performing tasks that require administrative privileges, they may become annoyed by the User Account Control feature. The unfortunate reality of the situation is that if users find that this feature cuts down on their productivity, they may turn it off. Once they have turned it off, their systems are less secure and applications may launch without their knowledge.</p>
<p> The following list includes some samples of actions that will generate a User Account Control prompt:</p>
<p>■ Installing or uninstalling a program</p>
<p>■ Right-clicking on a program and choosing <strong>Run as Administrator</strong></p>
<p>■ Clicking on <strong>Advanced System Settings </strong>in the System Properties</p>
<p>■ Clicking on the <strong>Properties </strong>on a local area connection in Network Connections</p>
<p>■ Opening an administrative command prompt</p>
<p>■ Clicking on Control Panel icons, including <strong>Add Hardware</strong>, <strong>BitLocker</strong>,</p>
<p><strong>Device Manager</strong>, <strong>iSCSI Initiator</strong>, and <strong>Parental Controls</strong></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Octubre 2009]]></title>
<link>http://agendacienciapolitica.wordpress.com/2009/10/15/octubre-2009/</link>
<pubDate>Thu, 15 Oct 2009 18:14:40 +0000</pubDate>
<dc:creator>Zur</dc:creator>
<guid>http://agendacienciapolitica.wordpress.com/2009/10/15/octubre-2009/</guid>
<description><![CDATA[2 de Octubre 18 hs. Jornada y presentación del proyecto de Colectivo Indígena en el Centro olga Vazq]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><span style="color:#993300;"><strong>2 de Octubre<br />
</strong></span></p>
<p><strong>18 hs. </strong>Jornada y presentación del proyecto de Colectivo Indígena en el Centro olga Vazquez de La Plata-FPDS.</p>
<p><strong>19.30 HS </strong>Espacio Chico Mendes y Radio la Colectiva invitan a la presentación del libro de Javier Rodríguez Pardo</p>
<p>Vienen por el oro, vienen por todo</p>
<p>Las invasiones mineras 500 años después</p>
<p>Decenas de empresas mineras internacionales acosan a la Argentina para<br />
instalar sus proyectos extractivos, pero las comunidades afectadas resisten<br />
y reclaman la salida de sus territorios, conscientes de la importancia de<br />
defender los “bienes comunes naturales”. En este libro, el autor expone<br />
algunos de los casos más emblemáticos donde transnacionales como Barrick<br />
Gold y Meridian Gold en San Juan y Esquel han tenido que enfrentar la fuerza<br />
de masivas movilizaciones de repudio.</p>
<p>Espacio de Cultura y Política Popular del Cid</p>
<p>Angel Gallardo 752— Planta Baja</p>
<p><span style="color:#993300;"><strong>11 de octubre</strong></span></p>
<p><span style="color:#993300;"> </span><strong>14 hs</strong> Jornada por el último día de resistencia indígena. Puente La Noria</p>
<p><img class="aligncenter size-medium wp-image-182" title="afiche11" src="http://agendacienciapolitica.wordpress.com/files/2009/10/afiche11.jpg?w=182" alt="afiche11" width="264" height="434" /></p>
<p><strong><span style="color:#993300;">12 de octubre</span></strong></p>
<p style="margin-bottom:0;" align="center">ACTO DE REPUDIO AL 12 DE OCTUBRE DE 1492 -</p>
<p style="margin-bottom:0;" align="center">La Plaza de los Dos Congresos</p>
<p style="margin-bottom:0;" align="center">CONVOCATORIA</p>
<p style="margin-bottom:0;" align="center">
<p style="margin-bottom:0;" align="left">EL MOVIMIENTO INDIGENA Y LA COORDINADORA POR EL 12 DE OCTUBRE CONVOCAN- EN EL DIA DE REFLEXION Y REPARACION HISTORICA DE NUESTROS DERECHOS COMO PUEBLOS INDIGENAS &#8211; AL  ACTO Y MARCHA:</p>
<p style="margin-left:3.75cm;margin-bottom:0;" align="left">
<ul>
<li>
<p style="margin-bottom:0;" align="left">EN REPUDIO A LA INVASION, GENOCIDIO, EVANGELIZACION, DEPENDENCIA 	Y COLONIALISMO, QUE AUN HOY CONTINUAN, EN COMPLICIDAD CON LOS 	ESTADOS.</p>
</li>
<li>
<p style="margin-bottom:0;" align="left">EN 	CONTRA DEL FESTEJO DEL “BICENTENARIO”</p>
</li>
<li>
<p style="margin-bottom:0;" align="left">POR 	LA “NO DEROGACIÓN” DE LA LEY 21.160 (CONTRA LOS 	DESALOJOS)</p>
</li>
<li>
<p style="margin-bottom:0;" align="left">EN 	APOYO AL PROCESO DE CAMBIO, IMPULSADO POR EVO MORALES.</p>
</li>
<li>
<p style="margin-bottom:0;" align="left">POR 	LA LIBERTAD DE NUESTROS HERMANOS PRESOS  DE PARAGUAY.</p>
</li>
</ul>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">Lunes 12 de Octubre en La Plaza de los Dos Congresos</p>
<p style="margin-left:1.27cm;margin-bottom:0;">10.00 hs. Jornada de Reflexión. Ceremonia de apertura &#8211; Exposición del       Pensamiento con representantes de Comunidades y Organizaciones Indígenas, y arte de distintos pueblos.</p>
<p style="margin-left:1.27cm;margin-bottom:0;">16.00 hs. Lectura del Documento elaborado para la fecha.</p>
<p style="margin-left:1.27cm;margin-bottom:0;">18.00 hs. Cortometraje. Grupo “Nuestra América Profunda”</p>
<ol>
<li>
<p style="margin-bottom:0;">hs. 	Marcha por NUESTROS DERECHOS NATURALES Y NUESTRA DIGNIDAD MILENARIA. 	(Salimos por Callao, Avenida Corrientes, Cerrito y por Av. De Mayo 	hasta el lugar de partida).</p>
</li>
</ol>
<p style="margin-bottom:0;" align="center">LA COSMOVISION DE LOS PUEBLOS INDIGENAS ES LA ALTERNATIVA PARA LA HUMANIDAD EN EL NUEVO TIEMPO</p>
<table border="0" cellspacing="0" cellpadding="4" width="100%">
<col width="85"></col>
<col width="85"></col>
<col width="85"></col>
<tbody>
<tr valign="top">
<td width="33%">
<p style="margin-bottom:0;" align="center"><span style="color:#000000;"><span style="font-size:x-small;"><strong>MOINO </strong></span></span></p>
<p style="margin-bottom:0;" align="center"><span style="color:#000000;"><span style="font-size:x-small;"><strong>Movimiento 			Indígena de </strong></span></span></p>
<p style="margin-bottom:0;" align="center"><span style="color:#000000;"><span style="font-size:x-small;"><strong>Naciones 			Originarias </strong></span></span></p>
<p style="margin-bottom:0;" align="center"><span style="color:#000000;"><span style="font-size:x-small;"><strong>Por 			territorio-autodeterminación </strong></span></span></p>
<p align="center"><span style="color:#000000;"> <span style="font-size:x-small;"><strong>y derechos cósmicos </strong></span></span></p>
</td>
<td width="33%">
<p style="margin-bottom:0;" align="center"><span style="color:#000000;"><span style="font-size:x-small;"><strong>ORCOPO </strong></span></span></p>
<p align="center"><span style="color:#000000;"><span style="font-size:x-small;"><strong>Organización 			de Comunidades de Pueblos Originarios </strong></span></span></p>
</td>
<td width="33%">
<p style="margin-bottom:0;" align="center"><span style="color:#000000;"> <span style="font-size:x-small;"><strong>COORDINADORA</strong></span></span></p>
<p align="center"><span style="color:#000000;"><span style="font-size:x-small;"><strong>POR 			EL 12 DE OCTUBRE</strong></span></span></p>
</td>
</tr>
</tbody>
</table>
<p style="margin-bottom:0;" align="center"><span style="color:#000000;"> <span style="font-size:x-small;"> </span></span></p>
<p style="margin-bottom:0;"><span style="color:#000000;"><span style="font-size:small;"><br />
</span></span></p>
<p style="margin-bottom:0;"><span style="color:#000000;"><span style="font-size:small;">Informes y adhesiones :</span></span></p>
<p style="margin-bottom:0;"><span style="color:#000000;"><span style="font-size:small;">4662-1334 / 4942-2584 / 4246-7623 / 4953-5978 / 15-5099-5544</span></span></p>
<p style="margin-bottom:0;"><span style="color:#000000;"> <span style="font-size:small;">Enrique Mamani: 15-5780-9686/ 4524-2814</span></span></p>
<p style="margin-bottom:0;"><span style="color:#000000;"> </span><span style="color:#000000;"><span style="font-size:small;"><a rel="nofollow" href="http://ar.mc553.mail.yahoo.com/mc/compose?to=orcopo@hotmail.com" target="_blank">orcopo@hotmail.com</a> *** <a rel="nofollow" href="http://ar.mc553.mail.yahoo.com/mc/compose?to=cincosiglosdeque@hotmail.com" target="_blank">cincosiglosdeque@hotmail.com</a> *** <a rel="nofollow" href="http://ar.mc553.mail.yahoo.com/mc/compose?to=omaguacaruna@yahoo.com.ar" target="_blank">omaguacaruna@yahoo.com.ar</a></span></span></p>
<p style="margin-bottom:0;"><span style="color:#000000;"><span style="font-size:small;"><br />
</span></span></p>
<p><strong><span style="color:#993300;">14 de octubre</span></strong></p>
<p><strong>19 hs. “Encuentro de Movimientos Indígenas y Organizaciones Sociales”</strong></p>
<p>Aula 126 de la Facultad de Filosofía y Letras (Puan 480, Capital Federal)</p>
<p>En el marco del Seminario de Estudios Americanistas, y pensando Otro Bicentenario, un grupo de compañeros y hermanos de distintas organizaciones debatirán en charla abierta sobre el papel de los pueblos Indígenas en el proceso de liberación de Nuestra América.</p>
<p>Contaremos con la presencia de: Enrique Mamani, Mario Barrios, Armando Chavez, Lucas Córdoba, Moira Millán, Abel Tonolec, Daniel Ozuna y Camila Colombatti, quiénes darán testimonio de las actuales luchas de los pueblos indígenas junto a los movimientos populares y barriales.</p>
<p>Habrá proyecciones del grupo Nuestra América Profunda y  artesanías realizadas por los hermanos originarios.</p>
<p>Los invitamos a todos a participar, el seminario está abierto a los que quieran acercarse.</p>
<p><strong>19 hs. Charla de las compañeras de Honduras</strong></p>
<p><strong> </strong>Las compañeras de &#8220;Feministas en Resistencia&#8221; del hermano pueblo de honduras, darán una charla para difundir la situación de su pueblo y la enorme tarea de resistencia de las mujeres frente al golpe de estado.</p>
<p>Castillo 460 / Villa Crespo.<br />
Agradecemos su difusión.</p>
<p><a rel="nofollow" href="http://feministascrenresistenciaalgolpe.blogspot.com/" target="_blank">http://feministascrenresistenciaalgolpe.blogspot.com/</a><br />
<a rel="nofollow" href="http://www.youtube.com/watch?v=r9Qx7yfINLU" target="_blank">http://www.youtube.com/watch?v=r9Qx7yfINLU</a></p>
<p><strong><span style="color:#993300;">16 de octubre</span></strong></p>
<p><strong>11 hs Día de la Soberanía Alimentaria</strong></p>
<p>11:00 Hs. Conferencia de Prensa: Frente al ministerio de Agricultura (Paseo Colon e Independencia)</p>
<p>12:00 Hs. Concentración en Obelisco y en el Ministerio de Agricultura</p>
<p>14:30 Hs. Monumento a Roca</p>
<p>16:00 Hs. Plaza de Mayo: Acto, Festival y Feria de Productos</p>
<p><strong>También se estarán Haciendo actividades en el marco de la Soberanía Alimentaria los dias previos y actividades el 16 en todo el país:</strong></p>
<p><a rel="nofollow" href="http://www.soberaniaalimentaria.wordpress.com/" target="_blank">http://www.soberaniaalimentaria.wordpress. com/</a></p>
<p><strong>19 hs. Charla Debate: Kraft- Terrabusi y el conflicto social en Argentina</strong></p>
<p>Aula 307<br />
Facultad de Ciencias Sociales<br />
Marcelo T. de Alvear 2230<br />
Desde el espacio de graduados y profesores de izquierda de las distintas carreras de las facultades de Ciencias Sociales y Filosofía y Letras de la UBA que nos solidarizamos con los trabajadores de la ex Terrabusi frente al ataque de la patronal a sus derechos laborales y sindicales, así como frente a la brutal represión sufrida, consideramos como una tarea fundamental de la intelectualidad la reflexión, el debate y la práctica política concreta.<br />
En vista del amplio repudio que en nuestras comunidades académicas concitó la ofensiva sobre los trabajadores, su cuerpo de delegados y su comisión interna convocamos a docentes e investigadores especializados en prácticas sindicales, conflictos sociales y obreros de nuestras facultades a debatir en torno al significado de esta lucha testigo dentro del escenario del conflicto social en la Argentina actual.</p>
<p>Presentación:<br />
Federico Schuster<br />
(Decano Facultad de Ciencias Sociales, UBA)</p>
<p>Panelistas:<br />
Trabajadores de la ex Terrabusi y<br />
Especialistas en Estudios del trabajo e Historiadores del Movimiento Obrero.</p>
<p>Javier Hermosilla (Poke) Trabajador despedido, miembro de la comisión interna de Kraft</p>
<p>Oscar Coria  Delegado despedido turno noche de Kraf-Terrabusi</p>
<p>Oscar Martínez Investigador del Taller de Estudios Laborales (TEL)</p>
<p>Paula Lenguita Docente e Investigadora del CEIL-PIETTE</p>
<p>Hernán Camarero Docente e Investigador UBA- Univ. Di Tella</p>
<p>Christian Castillo Docente e investigador, UBA, UNLP.</p>
<p><strong><span style="color:#993300;">20 de octubre</span></strong></p>
<p>A todos los compañero que integran la UAC,  a los de Córdoba y a los de todo el país. Como aviamos consensuado en la UAC de Jujuy en la que se contó con el apoyo expreso de todos los compañeros, hemos llevado a adelante la organización  del PRIMER CONGRESO DE LOS PUEBLOS POR EL AMBIENTE a realizarse el día 20 de octubre en el pabellón Argentina de la ciudad universitaria.</p>
<p>Este congreso esta dirigido a docentes de todos los niveles y al público en general otorgándose certificado de asistencia y puntaje docente.</p>
<p>Estamos convencidos de que ésta  acción es muy importante para hacer llegar nuestra lucha “la de todos nosotros” a los ámbitos educativos, para que las problemáticas que nos aquejan sean tratadas en las aulas, y para impulsar como materia educativa el ambiente y su protección. Para que  pueda ingresar en la curricular educativa, como primer paso en la lucha por la soberanía de nuestra educación. Para que desde Córdoba podamos revertir los problemas que se presentan en Catamarca y San Juan donde la educación esta totalmente sometida por los grupos económicos.</p>
<p>Y dejamos bien en claro que la realización del congreso en la Universidad responde a la intención de recuperar estos espacios públicos para beneficio de nuestras luchas, espacios que tenemos que defender y reclamar como propios.</p>
<p>Por todo  esto es que los invitamos a todos a participar y apoyar esta actividad que será bisagra en la educación de Córdoba y poder darle proyección y continuidad a nivel nacional.</p>
<p>Se contaran con espacios en el hall central del Pabellón Argentina para que cada organización pueda llevar y exponer materiales de su lucha y pueda difundirla.</p>
<p>Cada organización podrá vender materiales didácticos juntar firmas y repartir volantes.</p>
<p>Esperamos gustosos contar con su presencia</p>
<h2 style="text-align:center;">PRIMER CONGRESO DE LO<strong>S</strong></h2>
<h2 style="text-align:center;"><strong>PUEBLOS POR EL AMBIENTE</strong></h2>
<p style="text-align:center;">
<p align="center"><strong>20 OCTUBRE 2009</strong></p>
<p align="center"><strong>CIUDAD UNIVERSITARIA</strong></p>
<p align="center"><strong>CORDOBA ARGENTINA</strong></p>
<p align="center">
<p><strong><span style="text-decoration:underline;">DISERTANTES: </span></strong></p>
<p><strong>NORA CORTIÑAS (Madres de Plaza de Mayo Línea Fundadora)</strong></p>
<p><strong>CARLOS SEARA (Dr. en Geología) </strong></p>
<p><strong>GABRIEL SOLER (Grupo de Reflexión Rural)</strong></p>
<p><strong>MARCOS PASTRANA (Pueblo Diaguita Calchaquí)</strong></p>
<p><strong><span style="text-decoration:underline;">TALLERES PARTICIPATIVOS:</span></strong></p>
<p align="right"><strong>EL DERECHO AL MEDIO AMBIENTE </strong></p>
<p align="right"><strong>DESCOLONIZAR EL PENSAMIENTO EUROCENTRISTA</strong></p>
<p align="right"><strong>SOBERANIA ALIMENTARIA </strong></p>
<p align="right"><strong>ESTRATEGIAS EN SALUD COMUNITARIA</strong></p>
<p align="right"><strong>RECUPERACION DE LOS SABERES DE LOS PUEBLOS ORIGINARIOS</strong></p>
<p align="right"><strong>DARSE CUENTA: LA CONSTRUCCION SOCIAL DEL RIESGO AMBIENTAL</strong></p>
<p align="right"><strong>instituciones y prácticas para la efectiva vigencia de derechos a la vida, la salud y el ambiente </strong></p>
<p align="right"><strong>LA COMUNICACIÓN COMO</strong><strong> HERRAMIENTA DE TRANSFORMACION SOCIAL</strong></p>
<p align="center">
<p align="center"><strong>DIRIGIDO A DOCENTES DE TODOS LOS NIVELES</strong></p>
<p align="center"><strong><span style="text-decoration:underline;">Informes e Inscripción:</span></strong></p>
<p align="center"><a rel="nofollow" href="http://ar.mc502.mail.yahoo.com/mc/compose?to=congresodelospueblos@gmail.com" target="_blank"><strong>congresodelospueblo s@gmail.com</strong></a></p>
<p><strong><span style="text-decoration:underline;">C/ Certificado</span></strong><strong>: </strong>Arancel $ 20</p>
<p><strong><span style="text-decoration:underline;">S/ Certificado</span></strong><strong>: </strong>Gratuito</p>
<p><strong>ORGANIZAN: </strong></p>
<p>ASAMBLEA ¡CORDOBA CIUDAD DESPIERTA!</p>
<p>SECRETARIA DE EXTENSION UNIVERSITARIA- UNIVERSIDAD NACIONAL DE CORDOBA</p>
<p>ADHIEREN</p>
<p>MUSEO ANTROPOLOGICO – UNC</p>
<p>SERPAJ (SERVICIO DE PAZ Y JUSTICIA)</p>
<p>ADOLFO PEREZ ESQUIVEL</p>
<p><strong><span style="color:#800000;">23 de octubre</span></strong></p>
<p><strong><span style="color:#800000;"><span style="color:#000000;">20 hs. Encuentro &#8220;El contexto político social de los años &#8216;60&#8243;</span></span></strong></p>
<p><span style="color:#800000;"><span style="color:#000000;"><strong>en el estacionamiento recuperado de Marcelo T de Alvear 2230, Capital Federal</strong><br />
</span></span></p>
<p style="margin-bottom:0;margin-left:9pt;margin-right:9.05pt;text-align:justify;">Las revueltas callejeres (mayo del 68, Cordobazo). Los curos del 3º mundo. Las revoluciones en el 3º Mundo (Cuba, Argelia, Vietnam). Situación económica y social de la posguerra. Consecuencias sociales de los estados de bienestar y el rol del populismo. Las amplias capas de la juventud involucradas en política. Las importantes movilizaciones obreras. El desarrollo de las organizaciones armadas. El surgimiento de la nueva izquierda. Los debates en la izquierda en torno a la URSS. La figura del Che. La difusión incipiente de nuevas obras en el marxismo y la aparición de nuevos paradigmas.</p>
<p style="margin-bottom:0;margin-left:9pt;margin-right:9.05pt;text-align:center;" align="center">
<p style="margin-bottom:0;margin-left:9pt;margin-right:9.05pt;text-align:justify;">Invitados: Dardo Castro (ex militante de OCPO) J.G. Vazeilles (ex militante y docente), Eduardo Sartelli (militante de Razón y Revolución).</p>
<p style="margin-bottom:0;margin-left:9pt;margin-right:9.05pt;text-align:justify;">
<p style="margin-bottom:0;margin-left:9pt;margin-right:9.05pt;text-align:justify;">
<p><strong><span style="color:#993300;">24 de octubre</span></strong></p>
<p><span style="color:#993300;"><strong><span style="color:#000000;">9 hs. Jornada ¿Un mundo para quién?</span></strong></span></p>
<p><span style="color:#993300;"><strong><span style="color:#000000;"><img class="aligncenter size-full wp-image-184" title="cátedra_final" src="http://agendacienciapolitica.wordpress.com/files/2009/10/catedra_final.jpg" alt="cátedra_final" width="470" height="664" /></span></strong></span></p>
<p style="margin-bottom:0;margin-left:9pt;margin-right:9.05pt;text-align:justify;"><span style="color:#993300;"><strong><span style="color:#000000;"><span style="color:#800000;">30 de octubre</span></span></strong></span></p>
<p style="margin-bottom:0;margin-left:9pt;margin-right:9.05pt;text-align:justify;"><strong>20 hs. 2do Encuentro: El despliegue de las estrategias elaboradas en los 50 y 60.</strong></p>
<p style="margin-bottom:0;margin-left:9pt;margin-right:9.05pt;text-align:justify;"><strong>En el estacionamiento recuperado de Marcelo T de Alvear 2230.<br />
</strong></p>
<p style="margin-bottom:0;margin-left:9pt;margin-right:9.05pt;text-align:justify;">Las organizaciones y sus conclusiones del periodo anterior. Caracterización del peronismo. Cuestión militar. Elecciones del 73. Relación con el movimiento obrero. Política frente al golpe de estado.</p>
<p style="margin-bottom:0;margin-left:9pt;margin-right:9.05pt;text-align:justify;">PANELISTAS INVITADOS</p>
<p style="margin-bottom:0;margin-left:9pt;margin-right:9.05pt;text-align:justify;">Dardo Castro (ex militante de OCPO) J.G. Vazeilles (ex militante y docente), Abel</p>
<p style="margin-bottom:0;margin-left:9pt;margin-right:9.05pt;text-align:justify;">Boholavsky (ex militante del PRT-ERP), Jorge Pérez (ex militante del MR 17 ),</p>
<p style="margin-bottom:0;margin-left:9pt;margin-right:9.05pt;text-align:justify;">José Amorín (ex militante de Montoneros), Alejandro Belkin (historiador y docente),</p>
<p style="margin-bottom:0;margin-left:9pt;margin-right:9.05pt;text-align:justify;">Christian “Chipi” Castillo (dirigente del PTS) Pablo Bonavena (docente). Eduardo Sartelli (militante de Razón y Revolución).</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Using VMRUN with Windows Vista and UAC]]></title>
<link>http://tsells.wordpress.com/2009/10/15/using-vmrun-with-windows-vista-and-uac/</link>
<pubDate>Thu, 15 Oct 2009 17:37:59 +0000</pubDate>
<dc:creator>tsells</dc:creator>
<guid>http://tsells.wordpress.com/2009/10/15/using-vmrun-with-windows-vista-and-uac/</guid>
<description><![CDATA[In my previous post on automating VMWare workstation I spoke about using VMRUN to execute a process ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>In my previous post on automating VMWare workstation I spoke about using VMRUN to execute a process (program) inside the Virtual Machine from outside the virtual machine.  This process works great on Windows XP and Windows 2003 but had some issues with Vista when UAC was turned on.  I know the old saying is just &#8220;TURN OFF UAC&#8221;.  I do on any machine I use daily but need to have it on for development and testing purposes for end users.  VMWare listed some known issues with this command and provided a fix in the latest release (as of this writing).  The additional switch was to use -interactive.  The problem here is I don&#8217;t want to be prompted when performing functions that may require administrative access / approval.  I had to find a work around and was able to yesterday.</p>
<p>Steps to use VMRun in Vista without UAC prompts when UAC is turned on</p>
<p>Setup</p>
<ol>
<li>Create a Batch file to perform the tasks you want to run (<a title="Automating VMWare" href="http://tsells.wordpress.com/2009/09/20/how-to-save-time-automating-vmware-workstation/" target="_blank">see previous post</a>) (InstallMyApplication.bat)</li>
<li>Create a Task (Task Scheduler) to execute this task and do not set a time interval.   NOTE &#8211; you must check the option &#8220;Run with highest privileges&#8221;</li>
<li>Create another batch file that starts the task with the following command      schtasks /Run /TN &#8220;MyTaskName&#8221; (StartTask.bat)</li>
<li>Create a batch file on the host machine to control the virtual machine automation (Startup, suspend, etc <a title="Automating VMWare" href="../2009/09/20/how-to-save-time-automating-vmware-workstation/" target="_blank">see previous post</a>) and include the following lines  (SetupVM.bat)</li>
</ol>
<blockquote><p>copy D:\Batch\StartTask.bat &#8220;\\MachineName\temp\StartTask.bat&#8221; /Y<br />
copy D:\Batch\InstallMyApplication.bat &#8220;\\MachineName\temp\Install.bat&#8221; /Y</p>
<p>:: Start install batch file inside vm<br />
vmrun -T ws -gu username -gp password runProgramInGuest &#8220;D:\VM\VistaENT\VistaENT.vmx&#8221; C:\Temp\StartTask.bat</p></blockquote>
<p>Execution</p>
<ol>
<li>Execute the SetupVM.bat file &#8211; this should do the following</li>
</ol>
<ul>
<li>Copy both batch files to the Virtual Machine</li>
<li>Execute the StartTask.bat batch file which then starts the schedule task</li>
<li>The scheduled task executes the batch file without prompting</li>
</ul>
<p>This will allow you to perform adminstrative functions without being prompted.  Here are some of the items I am performing with this.</p>
<ul>
<li>Application Installation</li>
<li>Registry Modification</li>
<li>COM Registration</li>
</ul>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[How to remove UAC aka User Account Control]]></title>
<link>http://kweeb.wordpress.com/2009/10/14/how-to-remove-uac-aka-user-account-control/</link>
<pubDate>Wed, 14 Oct 2009 16:08:14 +0000</pubDate>
<dc:creator>kweeb</dc:creator>
<guid>http://kweeb.wordpress.com/2009/10/14/how-to-remove-uac-aka-user-account-control/</guid>
<description><![CDATA[This guide will show a simple way to remove the UAC in your Windows Vista, check it out!]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://kweeb-at.blogspot.com/2009/09/how-to-remove-uac-aka-user-account.html">This guide</a> will show a simple way to remove the UAC in your Windows Vista, check it out!</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Windows 7 UAC (User Account Control)]]></title>
<link>http://jlone.wordpress.com/2009/10/11/windows-7-uac-user-account-control/</link>
<pubDate>Sun, 11 Oct 2009 07:32:50 +0000</pubDate>
<dc:creator>jlone</dc:creator>
<guid>http://jlone.wordpress.com/2009/10/11/windows-7-uac-user-account-control/</guid>
<description><![CDATA[User Account Control in Windows 7. How is it different from Vista? I have it set to Never notify so ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>User Account Control in Windows 7. How is it different from Vista?</p>
<p><img src="http://www.jlone.com/images/UAC4.jpg" alt="UAC.jpg" /></p>
<p><img src="http://www.jlone.com/images/UAC3.jpg" alt="UAC.jpg" /></p>
<p><img src="http://www.jlone.com/images/UAC2.jpg" alt="UAC.jpg" /></p>
<p><img src="http://www.jlone.com/images/UAC.jpg" alt="UAC.jpg" /></p>
<p>I have it set to Never notify so it doesn&#8217;t annoy me.  I guess if you don&#8217;t know what you&#8217;re doing you might want some level of notification until you get a feel for it.  Honestly, I don&#8217;t see why this is even put into the OS (one of the many annoyances of Vista).</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[My bad...here is an update]]></title>
<link>http://thedkalife.wordpress.com/2009/10/10/670/</link>
<pubDate>Sat, 10 Oct 2009 13:55:57 +0000</pubDate>
<dc:creator>thedkalife</dc:creator>
<guid>http://thedkalife.wordpress.com/2009/10/10/670/</guid>
<description><![CDATA[Wow, thank goodness for the cheap &#8220;drake from degrassi&#8221; searches or else I&#8217;d be ge]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Wow, thank goodness for the cheap <a href="http://thedkalife.wordpress.com/2009/08/01/wheelchair-jimmy-is-back/">&#8220;drake from degrassi&#8221;</a> searches or else I&#8217;d be getting no hits.  I might as well tag his name and free mountain dew 4 packs to every post.</p>
<p>Life has been busy, I&#8217;ll try to get back up on the posts.  There have been many times where I say to myself &#8220;here&#8217;s a great post&#8221;, but then it just gets lost in the winds of time (&#8220;winds of time&#8221;? wtf)</p>
<p>So, here&#8217;s my life in a list form, I&#8217;ve found that if a post is too long, people <span style="text-decoration:line-through;">need a heavy dose of adderall or else they</span> (including myself) don&#8217;t read it.</p>
<ul>
<li>I have had 2 prokaryotic cell physiology exams.  Did okay.</li>
<li>I had a big ass lab report due.  Average.</li>
<li>MSU/UofM game, wonderfully wasted day.  Enough said.</li>
<li>Friends visiting. Good times.</li>
<li>Experienced a quick cold.  Drugs FTW (<span style="text-decoration:line-through;">fuck the world</span>, for the win)</li>
<li>Got my first interview invite for PA school.  Weight off my shoulders.</li>
<li>MSU/WMU soccer game. 2-0 victory (whaddup Rubin).</li>
<li><a href="http://undergroundartconcepts.com/thegallery.html">Bender definitely stepped up his game</a>.  First time I been truly &#8220;wow&#8217;d&#8221; by his work.</li>
<li>
<div>
<dl>
<dt><img title="6832_977780742414_2332093_57956276_6656162_n" src="http://thedkalife.wordpress.com/files/2009/10/6832_977780742414_2332093_57956276_6656162_n.jpg?w=150" alt="Smaller image, so you all can't jack it" width="150" height="137" /></dt>
<dd>Smaller image, so you all can&#8217;t jack it from the poor guy </dd>
</dl>
</div>
</li>
</ul>
<ul>
<li>Bender also dropped off my new hat.  Whaddup <a href="http://www.jugrnaut.com/blog/">Jugrnaut</a>, congrats to El Capitan for <a href="http://www.jugrnaut.com/blog/?p=4715">the add to their blog</a>.</li>
<li>
<div>
<dl>
<dt><img title="300" src="http://thedkalife.wordpress.com/files/2009/10/300.jpg?w=150" alt="Tha Gambit (thanks Bend)" width="150" height="100" /></dt>
<dd>Tha Gambit (thanks Bend)</dd>
</dl>
</div>
</li>
<li>Joe, Chris, n Scott (roommates) also all have interviews for grad school.  Congrats to them.</li>
<li>I&#8217;ve been on a Lil Jon kick recently.  <span style="text-decoration:line-through;">Eyeeeah. Whaaat. Okaaaay.</span></li>
<li>Just re-upped my Netflix account. Lost on constantly.</li>
<li><a href="http://i-amaze-eyez.com/">Zeph</a> created a new shirt for Sneakerfiend and can be bought now.  Dope.</li>
<li>
<p><div id="attachment_669" class="wp-caption aligncenter" style="width: 310px"><img class="size-medium wp-image-669" title="IMG_1693" src="http://thedkalife.wordpress.com/files/2009/10/img_1693.jpg?w=300" alt="Also available in black." width="300" height="225" /><p class="wp-caption-text">Also available in black.</p></div></li>
<li>Fantasy Football is on. Siiiigh pick up the slack TO.</li>
<li>I woke up at 730am for the most <a href="http://www.youtube.com/watch?v=uenigbrHbY8">disappointing explosion</a>.  What the hell NASA.</li>
<li>My parents visited today.  My mom&#8217;s beef jerky is back!.</li>
<li>Rearranged the living room. No Romo.</li>
<li>Lupe Fiasco dropped another song called &#8220;Fire&#8221;. To be honest, I haven&#8217;t listened to it yet.</li>
<li>Fifa drops October 22nd.  See ya on the pitch, Zlatan and Barca= goals &#38; BFFs.</li>
<li>Oh, and now Shyne is free. Great.</li>
</ul>
<p>Lastly, Here&#8217;s a new classic Chicity clip. (If you got time, which you do, &#8216;cuz you&#8217;re here)</p>
<p><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/XnE_QN-_Uhs&#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/XnE_QN-_Uhs&#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>Stay tuned for more DKA life fo yo ass.</p>
<p>DKA out.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Read it in the Magazine: Two UAC Marines]]></title>
<link>http://brokeandnotorioussl.wordpress.com/2009/10/06/riitm-two-uac-marines/</link>
<pubDate>Wed, 07 Oct 2009 04:30:00 +0000</pubDate>
<dc:creator>Terry Toland</dc:creator>
<guid>http://brokeandnotorioussl.wordpress.com/2009/10/06/riitm-two-uac-marines/</guid>
<description><![CDATA[Whatever you do, you need courage. Whatever course you decide upon, there is always someone to tell ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:center;"><img class="aligncenter" src="http://i38.tinypic.com/vigzlz.jpg" alt="" /></p>
<blockquote><p>Whatever you do, you need courage. Whatever course you decide upon, there is always someone to tell you that you are wrong. There are always difficulties arising that tempt you to believe your critics are right.To map out a course of action and follow it to an end requires some of the same courage that a soldier needs. Peace has its victories, but it takes brave men and women to win them.</p></blockquote>
<p style="text-align:right;">- <em>Ralph Waldo Emerson</em></p>
<p>I never thought I would ever dare dabble in the workings of the modern militia. There are probably people out there that did not think I would be able to pull off another large, style-focused installment. And there are likely a scattering of naysayers who believe I can&#8217;t roleplay beyond an inpatient or fictional being.</p>
<p>I&#8217;ve got news for ya&#8217;- I am UAC, and this is my behemoth.</p>
<p style="text-align:center;"><a title="UAC Legion - On Duty by Green Dream, on Flickr" href="http://www.flickr.com/photos/green_dream/3913772547/"><!--more--><img class="aligncenter" src="http://farm4.static.flickr.com/3455/3913772547_ccd61cd37c.jpg" alt="UAC Legion - On Duty" width="500" height="375" /></a></p>
<p>Saying life is hard in Midian City is a gross understatement- and I mean both extreme and disgusting. For a soldier, the daily grind of duty is coupled with the dingy details of a rabid city. <a href="http://www.flickr.com/photos/green_dream/3989391858/">Our uniforms and gear</a> are a reminder of who and what we are, for ourselves as much as the spectators: the base fatigues of monotone camouflage go beyond simply obscuring us in the shadows. The dark pattern speaks of how we are surrounded in a festering urban jungle and the only people we can give any sort of real trust to are those that share the same spots. Our kits, with their dull buckles and straps, clink and clatter together to give our march a distinctive, ominous score. And when it comes to firepower, we pack a punch like no other.</p>
<p style="text-align:center;"><a title="UAC Legion - Off Duty by Green Dream, on Flickr" href="http://www.flickr.com/photos/green_dream/3913973203/"><img class="aligncenter" src="http://farm3.static.flickr.com/2499/3913973203_ab08f88e02.jpg" alt="UAC Legion - Off Duty" width="500" height="500" /></a></p>
<p>One time, a reporter approached me and my fellow marine; he wanted to know about the UAC beyond the armor and order. D grumbled and held his silence while I giggled and swayed- what a fool! How you are perceived is as much defense as the kevlar vests we wear, and on or off duty, we don&#8217;t let down our guard. The scum of the city doesn&#8217;t care if we&#8217;re clocked in or not; they&#8217;ll take any opportunity to hunt us down, so we always keep our image and some equipment on hand.</p>
<p>Of course, one doesn&#8217;t have to be a rocket scientist to gain an idea about our non-working selves. I often go out in my mechanic&#8217;s getup, and I&#8217;m sometimes treated to some pleasurable company down at the pier. Our clothes are fairly casual, with my date peeling off much of his gear while I girl it up with high-heeled boots and flower accessories. Sure, they&#8217;re old and stained with motor-oil, but they&#8217;re what we have. When you&#8217;re trying to make it to the next sunup alive, you learn quick to value these small treasures.</p>
<p style="text-align:center;"><a title="UAC Legion - Really Off Duty II by Green Dream, on Flickr" href="http://www.flickr.com/photos/green_dream/3914249531/"><img class="aligncenter" src="http://farm4.static.flickr.com/3455/3914249531_1885dfa0a3.jpg" alt="UAC Legion - Really Off Duty II" width="500" height="375" /></a></p>
<p>Then there was the time some &#8217;shrink&#8217; approached us on-duty and started asking about our sex life. Well&#8230; it wasn&#8217;t so much asking as vulgarly directing us to bump uglies. D was so damn lucky he had a mask on; I just about died and had to bite my tongue hard. This chick was so sure that there was some sort of passionate tension between us. To be blunt, the only tension ever felt between us in that regard are our undone pants. Clearly, though, our appearance did its job- we looked disconnected from the norm. I couldn&#8217;t wait to get underneath all those layers that night.</p>
<p>Am I positive the UAC is going to keep me alive? Hell no. Clearly, I was sent here to this dump because someone doesn&#8217;t want the light of day to ever shine on my face again. I&#8217;m certainly no genius that can fix this urban mess. I am sure, though, that I will continue to stand alongside the Legion as long as I can.</p>
<p><a href="http://punditkitchen.com/2009/09/16/political-pictures-american-soldier-carry-protection/"><img class="alignright" title="I’m not sure this is what Mom meant..." src="http://punditkitchen.files.wordpress.com/2009/09/political-pictures-american-soldier-carry-protection.jpg?w=154&#038;h=263" alt="" width="154" height="263" /></a><strong></strong></p>
<p style="text-align:center;"><em>*Note* This outfit break-down is incomplete due to nagging being ineffective with the male model. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </em></p>
<p><strong>On-Duty Ensemble</strong><br />
<em>Female Outfit:</em> 2.0 &#8211; BDU Black Shirt &#38; Pants &#8211; Midian City Legion [RP faction provided]<br />
<em>Top:</em> Kevlar Vest (Black SWAT) from <a href="http://slurl.com/secondlife/Rhododendron%20Island/225/227/2004">TonkTastic</a><br />
<em>Footwear:</em> Long Combat Boots from <a href="http://slurl.com/secondlife/Rhododendron%20Island/225/227/2004">TonkTastic</a><br />
<em>Waist:</em> S.I.C_5_Jacket_Choice! version_Belt from <a href="http://slurl.com/secondlife/sick/24/159/203">S.I.C.49</a><br />
<em>Hands:</em> TSL Black Gloves from <a href="http://slurl.com/secondlife/Bare%20Rose/89/36/30">::: Bare@Rose :::</a> [free]<br />
<em>Legs:</em> Upper leg panels BLACK &#8211; (left  + -  &#38; right + -) from <a href="http://slurl.com/secondlife/Ryder%20Haven/94/72/28">&#62;&#62;MTG&#60;&#60;</a><br />
<em>Hair:</em> Railway twilight from <a href="http://slurl.com/secondlife/Covet/171/39/28">Exile</a><br />
<em>Eyes:</em> Eyes – Mirror Green from <a href="http://slurl.com/secondlife/Celestial%20City/68/240/27">*Celestial Studios*</a><br />
<em>Skin:</em> Faith_Porcelain &#8211; Smudge Pale from <a href="http://slurl.com/secondlife/Atomic/126/128/34/">[ATOMIC]</a><br />
<em>Weapon:</em> MP7 from <a href="http://slurl.com/secondlife/Overdrive%20Island/129/116/106">*BREACH*</a></p>
<p><em>Male Outfit:</em> 2.0 &#8211; BDU Black Shirt &#38; Pants &#8211; Midian City Legion [RP faction provided]<br />
<em>Top:</em> Kevlar Vest (Black SWAT) from <a href="http://slurl.com/secondlife/Rhododendron%20Island/225/227/2004">TonkTastic</a><br />
<em>+++</em> Collar (w. flashlight)(spine)(kevlar vest comp.) from <a href="http://slurl.com/secondlife/Rhododendron%20Island/225/227/2004">TonkTastic</a><br />
<em>Footwear:</em> Long Combat Boots from <a href="http://slurl.com/secondlife/Rhododendron%20Island/225/227/2004">TonkTastic</a><br />
<em>Head:</em> M.I.C.H TC-2000 Tactical Helmet BLACK from <a href="http://slurl.com/secondlife/Ryder%20Haven/94/72/28">&#62;&#62;D1 &#38; MTG&#60;&#60;</a><br />
+++ Balaclava III mask from [4mc]<br />
<em>Eyes:</em> Fragmentation Goggles from <a href="http://slurl.com/secondlife/Rhododendron%20Island/225/227/2004">TonkTastic</a><br />
<em>Mouth:</em> The Respirator (without Snorkel) from <a href="http://slurl.com/secondlife/Rhododendron%20Island/225/227/2004">TonkTastic</a><br />
<em>Waist:</em> Tactical Ballistic Belt BLACK from <a href="http://slurl.com/secondlife/Ryder%20Haven/94/72/28">&#62;&#62;MTG&#60;&#60;</a><br />
<em>Hands:</em> Black Fingerless Gloves from SOCOM<br />
<em>Arms:</em> Urban Arm Belts &#8211; Upper Arms and forearms (L&#38;R) from <a href="http://slurl.com/secondlife/Rhododendron%20Island/225/227/2004">TonkTastic</a><br />
<em>Legs:</em> Upper leg panels BLACK medium (left  + mag pouches  &#38; right + grenades) from <a href="http://slurl.com/secondlife/Ryder%20Haven/94/72/28">&#62;&#62;MTG&#60;&#60;</a><br />
<em>Weapon:</em> *MM*M249 SAW &#8211; v6</p>
<p><a href="http://punditkitchen.com/2009/08/27/political-pictures-american-soldier-ipod-party/"><img class="alignright" title="50. cals and an ipod" src="http://punditkitchen.files.wordpress.com/2009/08/political-pictures-american-soldier-ipod-party.jpg?w=191&#038;h=131#38;h=344" alt="" width="191" height="131" /></a><em>Location:</em> Leviathan</p>
<p><strong>Off-Duty Ensemble</strong><br />
<em><span style="text-decoration:underline;">Female Outfit</span>:</em> Jumpsuit- BLACK BOX from <a href="http://slurl.com/secondlife/Hello/151/90/301">Worldwide Industries</a><br />
<em>Top:</em> S.I.C_5_Jacket_Choice! version_Body from <a href="http://slurl.com/secondlife/sick/24/159/203">S.I.C.49</a><br />
<em>Footwear:</em> Empress Boots Black from <a href="http://slurl.com/secondlife/Olive/164/233/41">[Dark Eden]</a><br />
<em>Head:</em> Skull hair flower *colour change* from <a href="http://slurl.com/secondlife/artilleri/91/123/26">/artilleri/</a><br />
<em>Waist:</em> :A13:Belt from <a href="http://slurl.com/secondlife/sick/24/159/203">S.I.C.49</a><br />
+++ S.I.C_5_Jacket_Choice! version_Belt from <a href="http://slurl.com/secondlife/sick/24/159/203">S.I.C.49</a><br />
<em>Wrists:</em> Empress Armlets Black from <a href="http://slurl.com/secondlife/Olive/164/233/41">[Dark Eden]</a><br />
<em>Hands:</em> TSL Black Gloves from <a href="http://slurl.com/secondlife/Bare%20Rose/89/36/30">::: Bare@Rose :::</a> [free]<br />
<em>Legs:</em> SE Army Garter Socks from <a href="http://slurl.com/secondlife/Hello/151/90/301">Worldwide Industries</a><br />
<em>Hair:</em> Jennifer &#8211; Black from <a href="http://slurl.com/secondlife/Truth%20Island/111/211/26">&#62;TRUTH&#60;</a><br />
<em>Eyes:</em> Eyes – Mirror Green from <a href="http://slurl.com/secondlife/Celestial%20City/68/240/27">*Celestial Studios*</a><br />
<em>Skin:</em> Faith_Porcelain &#8211; Smudge Pale from <a href="http://slurl.com/secondlife/Atomic/126/128/34/">[ATOMIC]</a><a href="http://slurl.com/secondlife/Atomic/126/128/34/"></a></p>
<p><span style="text-decoration:underline;"><em>Male Outfit</em></span><br />
<em>Top:</em> -<br />
<em><a href="http://punditkitchen.com/2009/09/10/political-pictures-american-soldier-hard-day/"><img class="alignright" title="It’s 110 in the shade..." src="http://punditkitchen.files.wordpress.com/2009/08/political-pictures-american-soldier-hard-day.jpg?w=210&#038;h=158" alt="" width="210" height="158" /></a></em><em>Bottom:</em> -<br />
<em>Footwear:</em> a from <a href="http://slurl.com/secondlife/Rhododendron%20Island/225/227/2004">TonkTastic</a><br />
<em>Head:</em> Fragmentation Goggles from <a href="http://slurl.com/secondlife/Rhododendron%20Island/225/227/2004">TonkTastic</a><br />
<em>Mouth:</em> -<br />
<em>Neck:</em> -<br />
<em>Waist:</em> -<br />
<em>Wrists:</em> -<br />
<em>Hands:</em> -<br />
<em>Arms:</em> Urban Arm Belts &#8211; Upper Arms and forearms (L&#38;R) from <a href="http://slurl.com/secondlife/Rhododendron%20Island/225/227/2004">TonkTastic</a><br />
<em>Legs:</em> -<br />
<em>Hair:</em> -<br />
<em>Eyes:</em> Brown Eyes from <a href="http://slurl.com/secondlife/Bare%20Rose/89/36/30">::: Bare@Rose :::</a><br />
<em>Skin:</em> Skin Milos [The Worker] B3 from <a href="http://slurl.com/secondlife/Cybernetic/222/63/24">CYBERNETIC</a><br />
<em>Weapon:</em> 92F with Shoulder Holsters from <a href="http://slurl.com/secondlife/Overdrive%20Island/129/116/106">*BREACH*</a></p>
<p><em>Pose:</em> Pulling Couples Pose from <a href="http://slurl.com/secondlife/Holland/92/99/25">[ImpEle]</a><br />
<em>Location:</em> Midian City</p>
<p><strong><a href="http://punditkitchen.com/2009/07/09/political-pictures-exists-porn/"><img class="alignright" title="Rule 34" src="http://punditkitchen.files.wordpress.com/2009/07/political-pictures-exists-porn.jpg?w=210&#038;h=157#38;h=374" alt="" width="210" height="157" /></a>Really Off-Duty Ensemble</strong><br />
<span style="text-decoration:underline;"><em>Female Outfit</em></span><br />
<em>Top:</em> Short Vest Lady &#8211; Black from <a href="http://slurl.com/secondlife/Bare%20Rose/89/36/30">::: Bare@Rose :::</a><br />
<em>Head:</em> Skull hair flower *colour change* from <a href="http://slurl.com/secondlife/artilleri/91/123/26">/artilleri/</a><br />
<em>Hair:</em> Jennifer &#8211; Black from <a href="http://slurl.com/secondlife/Truth%20Island/111/211/26">&#62;TRUTH&#60;</a><br />
<em>Eyes:</em> Eyes – Mirror Green from <a href="http://slurl.com/secondlife/Celestial%20City/68/240/27">*Celestial Studios*</a><br />
<em>Skin:</em> Faith_Porcelain &#8211; Smudge Pale from <a href="http://slurl.com/secondlife/Atomic/126/128/34/">[ATOMIC]</a></p>
<p><span style="text-decoration:underline;"><em>Male Outfit</em></span><br />
<em>Head:</em> -<br />
<em>Ear:</em> -<br />
<em>Neck:</em> -<br />
<em>Wrists:</em> -<br />
<em>Hands:</em> -<br />
<em>Arms:</em> -<br />
<em>Hair:</em> -<br />
<em>Eyes:</em> Brown Eyes from <a href="http://slurl.com/secondlife/Bare%20Rose/89/36/30">::: Bare@Rose :::</a><br />
<em>Skin:</em> Skin Milos [The Worker] B3 from <a href="http://slurl.com/secondlife/Cybernetic/222/63/24">CYBERNETIC</a><br />
<em>Tattoo:</em> -</p>
<p><em>Pose:</em> Closer from <a href="http://slurl.com/secondlife/Ooot%20Ooot/135/129/23">CnS eMotion</a><br />
<em>Location:</em> Apocalypse</p>
<p style="text-align:center;"><a href="http://roflrazzi.com/2009/09/18/celebrity-pictures-simon-pegg-taking-precautions/"><img class="aligncenter" title="TAKING PRECAUTIONS" src="http://roflrazzi.files.wordpress.com/2009/09/celebrity-pictures-simon-pegg-taking-precautions.jpg?w=492&#038;h=390" alt="" width="492" height="390" /></a><strong>Disclaimer</strong>: I do not speak for the UAC/Legion faction in the Midian City roleplay, In Character or Out of Character. This post also took some time to write, and current events have prevented me from actively roleplaying <em>anywhere</em>.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Doom (1993)]]></title>
<link>http://retrokadabra.wordpress.com/2009/10/06/doom-1993/</link>
<pubDate>Tue, 06 Oct 2009 14:18:04 +0000</pubDate>
<dc:creator>Robert Bronson</dc:creator>
<guid>http://retrokadabra.wordpress.com/2009/10/06/doom-1993/</guid>
<description><![CDATA[Rok po tym kiedy tysiące graczy zawzięcie eliminowało ss&#8217;mańskie szwadrony w Wolfenstein 3D tw]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:justify;">Rok po tym kiedy tysiące graczy zawzięcie eliminowało ss&#8217;mańskie szwadrony w Wolfenstein 3D twórcy tej gry, firma id Software z Johnem Romero na czele, ogłosiła premierę gry niesłychanie do Wolfa podobnej. Tyle, że tym razem zamiast przemierzać nazistowskie komnaty przyszło nam poruszać się w kosmicznej scenerii, a naszym celem nie byli uzbrojeni po zęby aryjczycy, a potworki  wprost z najniższego poziomu piekieł. Oto Doom.</p>
<p style="text-align:center;"><strong>Marine bez dowodu osobistego</strong></p>
<p style="text-align:justify;">Niestety jądrem fabuły Dooma, przynajmniej w jej długim wstępie, nie jest &#8211; tak jak to było w Wolfenstenie 3D &#8211; nasz bohater. To <img class="alignright size-medium wp-image-475" title="Whuaa... zobacz jaki jestem niedobry" src="http://retrokadabra.wordpress.com/files/2009/10/whuaa-zobacz-jaki-jestem-niedobry.png?w=300" alt="Whuaa... zobacz jaki jestem niedobry" width="300" height="225" />tylko mały trybik w wielkiej korporacyjnej maszynie Union Aerospace Corporation (UAC), który jest tak mało ważny, że w rzeczywistości nie posiada nawet imienia (fani ochrzcili go jako Doomguy).</p>
<p style="text-align:justify;">Cała historia ma miejsce w trudnej do zidentyfikowania przyszłości. Bez wątpienia jest to okres wielkich odkryć bowiem przebiegła rasa ziemian zdążyła już okiełznać Marsa, a nawet utworzyć dla niego dwa sztuczne księżyce: Phobos i Deimos. Naturalnie jakiekolwiek działania UAC są zaprzeczeniem idei &#8220;pro publico bono&#8221;. Wszak jest to firma wzorowana choćby na tej z czasów pierwszego Obcego, a więc z wyrachowanym szefostwem, które w imię najdziwniejszych eksperymentów i największych poświęceń chcę osiągać swoje cele.</p>
<p style="text-align:justify;">We właściwiej historii pierwszego Dooma UAC otrzymało zlecenie od ścisłego kierownictwa wojska, polegające na zbadaniu możliwości tzw. wrót międzywymiarowych. Rezolutni panowie w doktorskich fatałaszkach przystąpili do swojego celu, a funkcjonalność rzeczonych wrót postanowili sprawdzać przenosząc różne drobiazgi pomiędzy Phobos i Deimos.<!--more--></p>
<p style="text-align:justify;">Niestety eksperyment w pewnym momencie załamał się. Za pośrednictwem wrót pomiędzy Phobos, a Deimos nie wędrowały już przedmioty wrzucane przez sieć naukową UAC, a&#8230; kreatury z piekła rodem. Ich pochodzenie nie zostało zidentyfikowane, bo owe bestyje natychmiast opanowały Phobos nie tyle mordując personel, co zamieniając go w zombie.</p>
<p style="text-align:justify;">Dopiero w tym momencie wkracza gracz, międzyplanetarny marine, słynny&#8230; doomguy <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</p>
<p style="text-align:center;"><strong>Z piłą łańcuchową pod ręką</strong></p>
<p style="text-align:justify;">Marine będący pod naszą kontrolą wyruszył na trudną misję mającą na celu penetrację Phobos i ewentualną eksterminację jej niespodziewanych mieszkańców. O jego przeszłości wiadomo tyle, że służył kiedyś w elitarnej jednostce komandosów, ale w pewnym momencie jego kariera załamała się i został wysłany na Marsa. Nie bez powodu, bo w ramach kary za niewykonanie rozkazu swojego zwierzchnika i wytłumaczenie mu ręcznie czemu nie chciał tego zrobić. Świadczy to o dobrym charakterze naszego bohatera bowiem rozkaz polegał na pacyfikacji niewinnych ludzi.</p>
<p style="text-align:justify;">Niemniej wcale niewinnie nie wygląda nasz arsenał. Doomguy do dyspozycji będzie miał ośiem rodzajów broni, no dobrze&#8230; siedem rodzajów broni i wysoką umiejętność w posługiwaniu się pięścią. Właśnie łomot spuszczany ręcznie to podstawowa &#8220;broń&#8221; Doomguy&#8217;a, ale poza tym w jego ekwipunku znajdą się jeszcze piła łańcuchowa (miazga!), podręczny pistolet, klasyczny otwieracz <img class="alignleft size-medium wp-image-476" title="Lecę na premierę nowej Piły!" src="http://retrokadabra.wordpress.com/files/2009/10/lece-na-premiere-nowej-pily.jpg?w=300" alt="Lecę na premierę nowej Piły!" width="300" height="225" />drzwi do stodoły czyli dubeltówka, bardzo efektywny karabin maszynowy, wyrzutnia rakiet, pistolet plazmowy i&#8230; BFG w wersji 9000 (czyt. Zajebiście Duża Broń) skuteczna przede wszystkim przeciw molom i owadom (możliwe, że dobra też na wszy i gnidy).</p>
<p style="text-align:justify;">Pełen wachlarz naszego uzbrojenia będziemy mogli wykorzystać na trzech dużych etapach: Knee-Deep in the Dead, The Shores of Hell i Inferno. Każdy z nich zawiera po ośiem poziomów (plus po jednym dodatkowym do odkrycia), a na końcu każdego z  nich przyjdzie nam stanąć oko w oko z napakowanymi bossami, odpowiednio z: baronami piekieł, cyberdemonem i dalekim krewnym Spider-Mana czyli Spiderdemonem.</p>
<p style="text-align:justify;">Jednak aby dojść do każdego z nich, po drodze będziemy musieli rozprawić się z naszymi dawnymi sojusznikami przemienionymi w zombie oraz z całkiem pokaźną świtą stworzeń z piekła rodem. Pierwsza grupa nie stanowi większego problemu, najsilniejsi z nich wyposażeni są w dubeltówki, ale w pojedynczych starciach padają jak muchy. Trudniej jest gdy przyjdzie nam stanąć oko w oko z chochlikami, demonami, widmami, sympatycznymi kłębiastymi demonami <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  i zagubionymi duszyczkami. Ich poziom zaangażowania w walkę i wyjątkowej upierdliwości jest naprawdę wysoki.</p>
<p style="text-align:justify;">Ułatwieniem do rozgrywki będą liczne &#8220;przypadkowo&#8221; porozrzucane przedmioty, jak to w FPS-ach bywa: apteczki, pancerze, broń, amunicja, klucze, itd. Zaś  samą rozgrywkę będziemy mogli rozpocząć na jednym spośród pięciu poziomów trudności: &#8220;I&#8217;m too young to die&#8221;, &#8220;Hey, not too rough&#8221;, &#8220;Hurt me plenty&#8221;, &#8220;Ultra-violence&#8221; i &#8220;Nightmare&#8221;. Do wyboru, do koloru.</p>
<p style="text-align:center;"><strong>Heavy metalowe tło </strong></p>
<p style="text-align:justify;">Wartość wizualna pierwszego Dooma (zresztą drugiego też <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> ) została przyjęta całkiem gorąco, szczególnie w odniesieniu do wspominanego we wstępie Wolfensteina 3D. Oko gracza porównując te dwie gry być może dostrzeże większą ilość dynamicznych animacji i bogatszą paletę kolorów, ale według mnie nie są to jakieś diametralne różnice.</p>
<p style="text-align:justify;">Za muzykę do gry odpowiedzialny jest Robert Prince aka Bobby Prince. Ten sam, który napisał muzykę do Wolfensteina 3d. <img class="alignright size-medium wp-image-477" title="Masakra na czerwonej planecie" src="http://retrokadabra.wordpress.com/files/2009/10/czerwonka.png?w=300" alt="Masakra na czerwonej planecie" width="300" height="225" />Znamienne jest, że to właśnie muzyka do Dooma przyniosła mu dużą popularność, ale nie powinno to dziwić gdyż soundtrack do Dooma inspirowany jest twórczością takich zespołów jak Metallica, Megadeth, Slayer czy Pantera, a więc musi być mięsisty i dynamiczny. Dodatkowo na jego plus przemawia fakt, że w grze zapisany jest w lepszej wersji formatu MIDI, tak zwanym MUS.</p>
<p style="text-align:justify;">Doom jako klasyk gatunku spod ręki Johna Romero nie wymaga specjalnej rekomendacji. Tytuł ten powinien zachwycić przede wszystkim fanów kosmicznych wojaży, ale i po tę pozycję powinni sięgnąć też pasjonaci Wolfensteina 3d, Blooda, Duke Nukem 3d czy Shadow Warrior, a więc kwintesencji FPS-ów z lat 90-tych (dużo strzelania, dużo krwi, dużo broni, dużo przeciwników).</p>
<p style="text-align:justify;">Gra doczekała się jeszcze kontyunacji pod postacią drugiej części z 1994 roku i trzeciej części z 2004 roku, wielu modyfikacji i dodatków. Myślę, że aby zacząć przygodę z tym klimatem odpowiednie jest sięgnięcie po pierwszą częśc.</p>
<p style="text-align:justify;"><strong>Musisz sięgnąć jeśli&#8230; </strong>chcesz diabełkom nakopać w ich czarne zady.</p>
<p style="text-align:justify;"><span style="color:#ffffff;">sete</span></p>
<p><span style="color:#ffffff;"><span style="color:#000000;">Obrazy wojny pochodzą z oficjalnej strony Doom:</span></span></p>
<p><a href="http://www.idsoftware.com/games/doom/doom-ultimate/"><span style="color:#000000;">http://www.idsoftware.com/games/doom/doom-ultimate/a</span></a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[How to launch Visual Studio as Administrator from a Solution file with UAC in Windows 7]]></title>
<link>http://welltechnically.com/2009/10/06/how-to-launch-visual-studio-as-administrator-from-a-solution-file-with-uac-in-windows-7/</link>
<pubDate>Tue, 06 Oct 2009 02:04:46 +0000</pubDate>
<dc:creator>welltechnically</dc:creator>
<guid>http://welltechnically.com/2009/10/06/how-to-launch-visual-studio-as-administrator-from-a-solution-file-with-uac-in-windows-7/</guid>
<description><![CDATA[Fred Health is currently in the process of deploying Windows 7 to all of our office machines, includ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Fred Health is currently in the process of deploying Windows 7 to all of our office machines, including our development environments. And with the upgrade to Windows 7 we&#8217;re actually going to TRY and keep UAC on.</p>
<p>Most of our software runs services (e.g. a self hosted WCF service), so visual studio needs to be running as administrator (at least in Win7). With UAC on the only way you can accomplish this is to right click on Visual Studio, select ‘run as administrator’ and then open the Project/Solution from within Visual Studio.</p>
<p><em><strong><br />
</strong></em></p>
<p>This sucks because personally I like to be able to find the ‘solution file’ on my computer and simply double click on it.<br />
So to get Administrator elevation every time you launch VS, you need to change the ‘<em><strong>compatibility setting</strong></em>’ by:<br />
•    Right clicking on <em><strong>C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\devenv.exe</strong></em><br />
•    Then selecting <em><strong>Properties</strong></em>, selecting the <em><strong>Compatibility </strong></em>tab, and then checking the box <em><strong>‘Run this program as an Administrator’</strong></em></p>
<p><em><strong><br />
</strong></em></p>
<p>Now the second part is where the trick is, because the ‘solution file’ doesn’t actually launch VS itself, but rather a ‘<strong>VS Version Check Launcher</strong>’&#8230; which in turn launches VS<br />
So to fix this:<br />
•    Right click on <em><strong>C:\Program Files (x86)\Common Files\microsoft shared\MSEnv\VSLauncher.exe</strong></em><br />
•    Select <em><strong>Properties</strong></em>, select the <em><strong>Compatibility </strong></em>tab, and check the box <em><strong>‘Run this program as an Administrator’</strong></em></p>
<p><em><strong><br />
</strong></em></p>
<p>Hey presto&#8230; Now you can launch visual studio from your solution file, with UAC, and have the administrator elevation screen appear<em><strong>!<br />
</strong></em></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Windows UAC]]></title>
<link>http://crystalunicorn.wordpress.com/2009/10/01/windows-uac/</link>
<pubDate>Thu, 01 Oct 2009 12:49:06 +0000</pubDate>
<dc:creator>Aditya</dc:creator>
<guid>http://crystalunicorn.wordpress.com/2009/10/01/windows-uac/</guid>
<description><![CDATA[Hey! Looks like you&#8217;re trying to install a new software! And it looks like its downloaded from]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Hey! Looks like you&#8217;re trying to install a new software! And it looks like its downloaded from the internet.</p>
<p><em>Yes.</em></p>
<p>Hmm. iTunes 9. Do you really want to install this?</p>
<p><em>Yes.</em></p>
<p>Alright. &#60;wait a minute&#62; I really don&#8217;t think you should. It may harm your computer.</p>
<p><em>I don&#8217;t care</em>.</p>
<p>Ookay. But still, I <em>must</em> ask again. Do you really want to install this?</p>
<p><em>Yes, you idiot!</em></p>
<p>Alright! There&#8217;s no need to get so angry! &#60;wait five minutes&#62; Unfortunately, this program doesn&#8217;t seem compatible with Windows. Wanna try with recommended settings?</p>
<p><em>Hmm, alright. Ballmer didn&#8217;t leave me another choice, did he?</em></p>
<p>Er, no he didn&#8217;t. Lets go over this again.</p>
<p>Hmm. iTunes 9. Do you really want to install this?</p>
<p><em>Yes.</em></p>
<p>Alright. &#60;wait a minute&#62; I really don&#8217;t think you should. It may harm your computer.</p>
<p><em>I don&#8217;t care</em>.</p>
<p>Ookay. But still, I <em>must</em> ask again. Do you really want to install this?</p>
<p><em>Yes, you idiot!</em></p>
<p>Alright! There&#8217;s no need to get so angry! &#60;wait five minutes&#62; Looks like you don&#8217;t have the permission to install software. Do you have an administrator password?</p>
<p><em>This is an administrator account, you twat. </em></p>
<p>I know, but still. Gimme a password.</p>
<p><em>Here goes&#8230;</em></p>
<p>Alright, then.</p>
<p>Hmm. iTunes 9. Do you really want to install this?</p>
<p><em>Yes.</em></p>
<p>Alright. &#60;wait a minute&#62; I really don&#8217;t think you should. It may harm your computer.</p>
<p><em>I don&#8217;t care</em>. <em>No wait. Cancel the freakin&#8217; installation!</em></p>
<p>But why?</p>
<p>Psst! Lemme give you a piece of friendly advice. Use Windows Media Player.</p>
<p><em>That doesn&#8217;t work with iPods</em>.</p>
<p>Do I care? Buy a Zune, for Bill&#8217;s sake! And oh, that installation you wanted to cancel? You can&#8217;t. Its hung. Its crashed.</p>
<p><em>Die.</em></p>
<p><em>Now WHERE did I keep those Linux disks?</em></p>
</div>]]></content:encoded>
</item>

</channel>
</rss>
