<?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>shutdown &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://en.wordpress.com/tag/shutdown/</link>
	<description>Feed of posts on WordPress.com tagged "shutdown"</description>
	<pubDate>Tue, 24 Nov 2009 17:50:53 +0000</pubDate>

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

<item>
<title><![CDATA[Top 20 Tips To Keep Your System Faster]]></title>
<link>http://pkb89.wordpress.com/2009/11/24/top-20-tips-to-keep-your-system-faster/</link>
<pubDate>Tue, 24 Nov 2009 01:50:04 +0000</pubDate>
<dc:creator>Pradeep Kumar</dc:creator>
<guid>http://pkb89.wordpress.com/2009/11/24/top-20-tips-to-keep-your-system-faster/</guid>
<description><![CDATA[Follow these tips and you will definitely have a much faster and more reliable PC! Most of the below]]></description>
<content:encoded><![CDATA[Follow these tips and you will definitely have a much faster and more reliable PC! Most of the below]]></content:encoded>
</item>
<item>
<title><![CDATA[Spegnimento temporizzato di Windows]]></title>
<link>http://gnulinuxarea.wordpress.com/2009/11/23/spegnimento-temporizzato-di-windows/</link>
<pubDate>Mon, 23 Nov 2009 13:20:23 +0000</pubDate>
<dc:creator>gnulinuxarea</dc:creator>
<guid>http://gnulinuxarea.wordpress.com/2009/11/23/spegnimento-temporizzato-di-windows/</guid>
<description><![CDATA[Quante volte vi è capitato di dover uscire mentre il PC terminava qualche operazione che non potete/]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Quante volte vi è capitato di dover uscire mentre il PC terminava qualche operazione che non potete/volete interrompere? Per poi magari tornare dopo molte ore, con il risultato che il PC è rimasto acceso un sacco di tempo inutilmente.</p>
<p>E&#8217; possibile impostare uno shutdown temporizzato da prompt in questo modo:</p>
<blockquote><p>shutdown -s -t 1800</p></blockquote>
<p>La misurazione del tempo avviene in secondi, in questo caso il PC si spegnerà esattamente 30 minuti dopo l&#8217;avvio del comando.</p>
<p>Se al posto di spegnerlo si desidera riavviarlo basta sostituire l&#8217;opzione -s (shutdown) con -r (reboot):</p>
<blockquote><p>shutdown -r -t 1800 </p></blockquote>
<p>Nel caso si voglia spegnere o riavviare subito il valore è 0 (zero)</p>
<blockquote><p>
shutdown -s -t 0</p></blockquote>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Shutdown - Python - Dialog]]></title>
<link>http://mrsantos76.wordpress.com/2009/11/20/shutdown-python-dialog/</link>
<pubDate>Fri, 20 Nov 2009 18:44:24 +0000</pubDate>
<dc:creator>mrsantos76</dc:creator>
<guid>http://mrsantos76.wordpress.com/2009/11/20/shutdown-python-dialog/</guid>
<description><![CDATA[Bom pessoal durante essa semana me dediquei um pouco pra estudar o modulo python-dialog e pra finali]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Bom pessoal durante essa semana me dediquei um pouco pra estudar o modulo python-dialog e pra finalizar fiz dois scripts usando o dialog esse que é um &#8220;agendador&#8221; para desligamento da máquina, tinha feito algo parecido em glade, gtk e resolvi fazer ele agora em dialog, gostei do resultado, segue o código pra quem quiser testar, depois de uma desligamento agendado se vc executar o programa novamente ele vai lhe perguntar se vc quer cancelar o desligamento, há detalhe importante, ao executar o programa se vc der direto um enter ele vai desligar sua maquina na hora <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
afinal shutdown -t alem de um tempo em minutos informamos tbm um horário e nesse caso ao precisar enter vc vai estar passado pra ele a hora atual <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /><br />
to terminando uma agenda com python, dialog e postgres assim que tiver finalizada tbm posto aqui!</p>
<pre>
#! /usr/bin/python
# -*- coding: iso-8859-1 -*-

# Criado em: "19/11/2009"
# Autor: MRSantos mrsantos@viaconnect.com.br
#
# A espera não é uma esperaça vazia,
# possui a certeza interior de alcançar seu objetivo...

import sys
import os
try:
	import dialog
except:
	print "######################################"
	print "# favor instale o modulo python-dialog "
	print "# sudo apt-get install python-dialog   "
	print "######################################"
	sys.exit(1)

def scrollbox(text):
	""" Caixa de texto, pode ser usada pra textos grandes, o que nao foi caso
            nesse script
	"""
	return d.scrollbox(text, height=20, width=100)

def inputbox(text):
	""" Caixa pra pegar texto do user, tbm nao usei aqui nesse script
	    preferi, usar timbox pra coletar a informacao
	"""
	return d.inputbox(text, height=10, width=45)

def infobox(text):
	""" Caixa pra exibir texto qq, mostra e sai"""
	return d.infobox(text, height=10, width=45)

def msgbox(text):
	""" Caixa pra exibir texto qq """
	return d.msgbox(text, height=10, width=45)

def calendar(text):
	""" Caixa pra mostrar calendario na tela, tbm nao usei aqui"""
	return d.calendar(text, height=0, width=0, day=0, month=0, year=0)

def timebox(text):
	""" mostra a hora """
	return d.timebox(text, height=0, width=0, hour=-1, minute=-1, second=-1)

def yesno(text):
	return d.yesno(text, height=10, width=45)

def verifica_shutdown(file_path):
	""" Verfico se existe o arquivo com hora do desligamento """
	return os.path.exists(file_path)

def cancela_shutdown(file_path):
	""" cancelo o shutdown """
	try:
		os.system("sudo shutdown -c")
		os.remove(file_path)
	except:
		text = "Erro ao tentar cancelar o desligamento!"
		msgbox(text)
		print

def grava_desligar(h, file_path):
	""" gravo o horário em que a maquina vai ser desligada, pra verificar,
	    poderia saber se ela vai ser desligada com pidof shutdown, mas assim
	    nao teria o horário que ela seria desligada...
	"""
	try:
		f = open(file_path, "w")
		f.write(h)
		f.close()
	except:
		msgbox("Não consegui gravar no /tmp/")
		print

def le_desligar(file_path):
	""" Vejo se foi agendado já alguns deligamento """
	f = open(file_path).readline()
	return f

def agenda_shutdow(h):
	""" shutdown -h +hora:minutos, pode ser valor em minutos tbm """
	os.system("sudo shutdown -h +%s&#38;" % h)
	grava_desligar(h, file_path)
	text = "Maquina será desligada as %s" % h
	msgbox(text)
	print

if __name__ == '__main__':

	d = dialog.Dialog()
	file_path = "/tmp/my_shutdown"

	if verifica_shutdown(file_path):
		hora = le_desligar(file_path)
		rs = yesno("Desligamento agendado para: %s, deseja cancelar?" % hora)
		if not rs:
			cancela_shutdown(file_path)
			msgbox("Sua maquina não será mais desligada as %s" % hora)
			print
	else: # nao tem nada agendado ainda...
		code, time = timebox("Shutdown By MRSANTOS")
		if not code:
			hora, minuto, segundo = time

			if int(hora) &#60; 10: hora = &#039;0&#039; + str(hora)
			if int(minuto) &#60; 10: hora = &#039;0&#039; + str(minuto)

			time = &#039;%s:%s&#039; % (hora, minuto)
			agenda_shutdow(time)
		else:
			infobox(&#34;Tchau então!!!&#34;)
			print
</pre>
<p><img src="http://lh6.ggpht.com/_B760yE8mvz4/SwbiUMy7WbI/AAAAAAAAAJ4/h__s7iB1BHY/pede_pra_desligar.png" alt="tela1" /></p>
<p><img src="http://lh6.ggpht.com/_B760yE8mvz4/SwbiUKJ7SHI/AAAAAAAAAKE/lsYEo6qA_VQ/ira_desligar.png" alt="tela2" /></p>
<p><img src="http://lh6.ggpht.com/_B760yE8mvz4/SwbiUKJ7SHI/AAAAAAAAAKE/lsYEo6qA_VQ/ira_desligar.png" alt="tela3" /></p>
<p><img src="http://lh3.ggpht.com/_B760yE8mvz4/SwbiULNwBwI/AAAAAAAAAJ8/Hgwg2WId9Wk/confirm_desligamento.png" alt="tela4" /></p>
<p>Bom era isso, até mais</p>
<p>Marcio</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Things Done At 45]]></title>
<link>http://reyadel.wordpress.com/2009/11/14/things-done-at-45/</link>
<pubDate>Sat, 14 Nov 2009 23:59:26 +0000</pubDate>
<dc:creator>reyadel</dc:creator>
<guid>http://reyadel.wordpress.com/2009/11/14/things-done-at-45/</guid>
<description><![CDATA[Today is a special day for me, thus I am taking a breather from Travian, playing the game online or ]]></description>
<content:encoded><![CDATA[Today is a special day for me, thus I am taking a breather from Travian, playing the game online or ]]></content:encoded>
</item>
<item>
<title><![CDATA[Shutdown- ssh]]></title>
<link>http://skillzbreak.wordpress.com/2009/11/15/shutdown-ssh/</link>
<pubDate>Sat, 14 Nov 2009 21:42:32 +0000</pubDate>
<dc:creator>skillzbreak</dc:creator>
<guid>http://skillzbreak.wordpress.com/2009/11/15/shutdown-ssh/</guid>
<description><![CDATA[]]></description>
<content:encoded><![CDATA[]]></content:encoded>
</item>
<item>
<title><![CDATA[Auto shutdown di Linux...]]></title>
<link>http://budigunawan.wordpress.com/2009/11/13/auto-shutdown-di-linux/</link>
<pubDate>Fri, 13 Nov 2009 09:55:57 +0000</pubDate>
<dc:creator>Budi Gunawan Kusuma</dc:creator>
<guid>http://budigunawan.wordpress.com/2009/11/13/auto-shutdown-di-linux/</guid>
<description><![CDATA[sesuai dengan namanya auto shutdown adalah untuk melakukan proses shutdown pada waktu2 yang telah di]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>sesuai dengan namanya auto shutdown adalah untuk melakukan proses shutdown pada waktu2 yang telah ditentukan, pada umumnya setiap komputer tidak bisa bertahan selama 24/7 non stop di hidupkan, sekalipun itu komputer server yang telah diminimumkan downtimenya. Nah untuk itu, sebisa mungkin kita juga memberikan sedikit waktu istirahat untuk komputer tercinta kita, apabila kita cukup kejam dan tidak mengijinkan komputer kita beristirahat, paling minimal juga kita harus melakukan proses restart, supaya sistem tetap bisa berjalan dengan lancar.</p>
<p><!--more-->Untuk proses auto shutdown di Linux itu sendiri sangat sederhana sekali, kita cukup menjalankan di terminalnya perintah seperti ini:</p>
<ol>
<li>shutdown -h now<br />
untuk melakukan proses shutdown sekarang juga.</li>
<li>shutdown -r now<br />
untuk melakukan proses restart sekarang juga</li>
<li>shutdown -h 20:00<br />
untuk melakukan proses shutdown pada jam 20:00</li>
<li>shutdown -h +5<br />
untuk melakukan proses shutdown pada lima menit kedepan</li>
</ol>
<p>Nah, bukankah sangat mudah? ok sekian dulu dan selamat mencoba</p>
<p>Salam</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Creat A shutdown Botton on your desktop]]></title>
<link>http://anyhack.wordpress.com/2009/11/13/creat-a-shutdown-botton-on-your-desktop/</link>
<pubDate>Fri, 13 Nov 2009 08:15:45 +0000</pubDate>
<dc:creator>neerajdhiman786</dc:creator>
<guid>http://anyhack.wordpress.com/2009/11/13/creat-a-shutdown-botton-on-your-desktop/</guid>
<description><![CDATA[Navigate to your desktop. On the desktop, right-click and go to New, then to Shortcut (in other word]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Navigate to your desktop. On the desktop, right-click and go to New, then to Shortcut (in other words, create a new shortcut). You should now see a pop-up window instructing you to enter a command line path.<br />
Use this path in &#8220;Type Location of the Item&#8221;<br />
SHUTDOWN -s -t 01<br />
If the C: drive is not your local hard drive, then replace &#8220;C&#8221; with the correct letter of the hard drive. Click the &#8220;Next&#8221; button. Name the shortcut and click the &#8220;Finish&#8221; button. Now whenever you want to shut down, just click on this shortcut and you&#8217;re done.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[How to shutdown ubuntu from the command line]]></title>
<link>http://zappedpoint.wordpress.com/2009/11/11/how-to-shutdown-ubuntu-from-the-command-line/</link>
<pubDate>Wed, 11 Nov 2009 18:19:18 +0000</pubDate>
<dc:creator>sigtermer</dc:creator>
<guid>http://zappedpoint.wordpress.com/2009/11/11/how-to-shutdown-ubuntu-from-the-command-line/</guid>
<description><![CDATA[To shutdown ubuntu, type: sudo shutdown -h 0 This command can be used for other purposes such as reb]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>To shutdown ubuntu, type:<br />
<code><b>sudo shutdown -h 0</b></code></p>
<p>This command can be used for other purposes such as rebooting the system (-r). The 0 indicates the amount of time before the systems starts to shutdown which can be an integer or the string <code>now</code>.<br />
see <code>man 8 shutdown</code></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Reboot and Shutdown Mac OS X Using Keyboard Shortcuts]]></title>
<link>http://aenguillo.wordpress.com/2009/11/11/reboot-and-shutdown-mac-os-x-using-keyboard-shortcuts/</link>
<pubDate>Wed, 11 Nov 2009 07:05:46 +0000</pubDate>
<dc:creator>Alvin Enguillo</dc:creator>
<guid>http://aenguillo.wordpress.com/2009/11/11/reboot-and-shutdown-mac-os-x-using-keyboard-shortcuts/</guid>
<description><![CDATA[Keyboard shortcuts make interactions with a computer faster. They save time when working on any oper]]></description>
<content:encoded><![CDATA[Keyboard shortcuts make interactions with a computer faster. They save time when working on any oper]]></content:encoded>
</item>
<item>
<title><![CDATA[Superfast Shutdown ]]></title>
<link>http://bayuindragunawan.wordpress.com/2009/11/10/superfast-shutdown/</link>
<pubDate>Tue, 10 Nov 2009 06:16:16 +0000</pubDate>
<dc:creator>indra</dc:creator>
<guid>http://bayuindragunawan.wordpress.com/2009/11/10/superfast-shutdown/</guid>
<description><![CDATA[Software ini cukup membantu dalam mempercepat proses shutdown dan reboot. pengalaman saya, proses sh]]></description>
<content:encoded><![CDATA[Software ini cukup membantu dalam mempercepat proses shutdown dan reboot. pengalaman saya, proses sh]]></content:encoded>
</item>
<item>
<title><![CDATA[Αφαιρεση της χρονοκαθυστερησης κατα το κλεισιμο/επανεκινηση του ubuntu]]></title>
<link>http://ubuntugreek.wordpress.com/2009/11/09/%ce%b1%cf%86%ce%b1%ce%b9%cf%81%ce%b5%cf%83%ce%b7-%cf%84%ce%b7%cf%82-%cf%87%cf%81%ce%bf%ce%bd%ce%bf%ce%ba%ce%b1%ce%b8%cf%85%cf%83%cf%84%ce%b5%cf%81%ce%b7%cf%83%ce%b7%cf%82-%ce%ba%ce%b1%cf%84%ce%b1/</link>
<pubDate>Mon, 09 Nov 2009 20:32:15 +0000</pubDate>
<dc:creator>xqtr</dc:creator>
<guid>http://ubuntugreek.wordpress.com/2009/11/09/%ce%b1%cf%86%ce%b1%ce%b9%cf%81%ce%b5%cf%83%ce%b7-%cf%84%ce%b7%cf%82-%cf%87%cf%81%ce%bf%ce%bd%ce%bf%ce%ba%ce%b1%ce%b8%cf%85%cf%83%cf%84%ce%b5%cf%81%ce%b7%cf%83%ce%b7%cf%82-%ce%ba%ce%b1%cf%84%ce%b1/</guid>
<description><![CDATA[Στην εκδοση 9.04, πρωτοεμφανιστηκε μια &#8220;λειτουργια&#8221; η οποια, οταν ο χρηστης επελεγε να κ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><span style="font-size:x-large;"><strong>Σ</strong></span>την εκδοση 9.04, πρωτοεμφανιστηκε μια &#8220;λειτουργια&#8221; η οποια, οταν ο χρηστης επελεγε να κανει shutdown (ή καποια αλλη λειτουργια), εμφανιζοταν ενα επιπλεον dialog το οποιο ζητουσε επιβεβαιωση εντος καποιου χρονικου οριου.</p>
<p>Η λειτουργια αυτη για πολλους ειναι εκνευριστικη και για να την αφαιρεσεις στην εκδοση 9.04 απλως εκανες δεξι κλικ στο κουμπι logout και επελεγες το αντιστοιχο checkbox απο το μενου preferences. Στην εκδοση 9.10&#8230; ομως βαλθηκαν να μας αποτρελανουν&#8230; και την αφαιρεσαν αυτη τη δυνατοτητα. Ευτυχως ομως μπορει να απενεργοποιηθει μεσα απο το gconf-editor.</p>
<p>Γραψτε το παρακατω στο τερματικο και θα ειστε οκ:</p>
<p><code>gconftool-2 -s '/apps/indicator-session/suppress_logout_restart_shutdown' --type bool true</code></p>
<p>Για τους πιο &#8220;γραφικους&#8221; δειτε εδω:</p>
<blockquote><p>http://ubuntuguide.net/disable-60-seconds-delay-notification-in-ubuntu910karmic</p>
</blockquote>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Shutdown your Computer from your Cellphone]]></title>
<link>http://intimateintelligence.wordpress.com/2009/11/09/remote-shutdown-via-cellphone/</link>
<pubDate>Mon, 09 Nov 2009 06:21:00 +0000</pubDate>
<dc:creator>RedD3ath</dc:creator>
<guid>http://intimateintelligence.wordpress.com/2009/11/09/remote-shutdown-via-cellphone/</guid>
<description><![CDATA[Difficulty: Beginner Requirements: Cellphone with Text Messaging Service Email Account (preferably G]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><span style="text-decoration:underline;"><strong>Difficulty:</strong></span> Beginner <a href="http://intimateintelligence.wordpress.com/files/2009/11/cell_phone.jpg"><img class="alignright size-medium wp-image-124" title="Cell_Phone" src="http://intimateintelligence.wordpress.com/files/2009/11/cell_phone.jpg?w=300" alt="Cell_Phone" width="244" height="183" /></a></p>
<p><span style="text-decoration:underline;"><strong>Requirements:</strong></span></p>
<ul>
<li>Cellphone with Text Messaging Service</li>
<li>Email Account (preferably Gmail)</li>
<li>Thunderbird Portable &#38; Add-on</li>
<li>Notepad</li>
</ul>
<p>1. First download <a title="Thunderbird Portable" href="http://portableapps.com/apps/internet/thunderbird_portable" target="_blank">Thunderbird Portable</a> and run the .exe file to install.</p>
<p>2. Setup Thunderbird</p>
<p>Next you wanna setup an email account. You can use any email address; however, for this tutorials purpose I will be using a Gmail account.</p>
<ul>
<li><a title="Gmail" href="http://www.gmail.com" target="_blank">www.gmail.com</a></li>
</ul>
<p>After you&#8217;ve setup your email account and your done installing Thunderbird Portable. Run through Thunderbird&#8217;s email setup process and make sure it is configured properly.Basically all we did is linked your email account to Thunderbird Portable so that every time you get an email(yahoo, gmail, aol, hotmail, etc.) it forwards a copy of the email to Thunderbird Portable.</p>
<p>Now that you&#8217;ve got all that working correctly your gonna need to download this addon:</p>
<p><a href="https://addons.mozilla.org/en-US/thunderbird/addon/2610" target="_blank">https://addons.mozilla.org/en-US/thunderbird/addon/2610</a></p>
<p>*If you do not download this it will not work!</p>
<p>Once downloaded to install this addon into the thunderbird portable folder, open ThunderbirdPortable, and go to Tools -&#62; Add-ons and click install. Navigate thunderbird to the .xpi file you downloaded and it will install the add-on. Then restart to complete installation.</p>
<p>3. Configure Inbox</p>
<p>To make things simple and organized you&#8217;ll need a place where the text messages will go once received. Right click on &#8220;Inbox&#8221; and click new folder. Name the folder whatever you desire. For this tutorial mine will be &#8220;SMS&#8221;</p>
<p><strong>Figure 3.1:</strong></p>
<p style="text-align:center;"><a href="http://intimateintelligence.wordpress.com/files/2009/11/sms1.jpg"><img class="size-full wp-image-115 aligncenter" style="border:2px solid black;" title="sms1" src="http://intimateintelligence.wordpress.com/files/2009/11/sms1.jpg" alt="sms1" width="200" height="175" /></a></p>
<p>Next, click Tools -&#62; Message Filters. Now you must  specify the requirements your text message must meet in order to shut down your computer. Click &#8220;New&#8221; and create a filter. Configure your filter to meet some requirements in the top box, and configure the second box to move the message into the folder you created earlier. Should look like figure 3.2.</p>
<p><strong>Figure 3.2:</strong></p>
<p><a href="http://intimateintelligence.wordpress.com/files/2009/11/sms2.jpg"><img class="aligncenter size-full wp-image-116" title="sms2" src="http://intimateintelligence.wordpress.com/files/2009/11/sms2.jpg" alt="sms2" width="460" height="321" /></a></p>
<p>4. Add-on Configuration</p>
<p>Next you&#8217;ll need to create a batch file in the portable thunderbird program directory that will command the add-on what to do. Open up notepad and type the following code as shown in figure 3.3:</p>
<p><strong>Figure 3.3:</strong></p>
<p style="text-align:center;"><a href="http://intimateintelligence.wordpress.com/files/2009/11/sms5.jpg"><img class="aligncenter size-full wp-image-117" style="border:2px solid black;" title="sms5" src="http://intimateintelligence.wordpress.com/files/2009/11/sms5.jpg" alt="sms5" width="460" height="121" /></a></p>
<p>Now click File -&#62; Save As.  Name it shutdown.bat and click the drop down box in the Save As Type field and select All Files. Now click save.</p>
<p><strong>Figure 3.4:</strong></p>
<p style="text-align:center;"><a href="http://intimateintelligence.wordpress.com/files/2009/11/sms6.jpg"><img class="aligncenter size-full wp-image-118" style="border:2px solid black;" title="sms6" src="http://intimateintelligence.wordpress.com/files/2009/11/sms6.jpg" alt="sms6" width="460" height="327" /></a></p>
<p>Next, open up Thunderbird Portable and click on the folder you created previously (&#8220;SMS&#8221;). Then, go to Tools -&#62; Mailbox Alert Preferences</p>
<p>Now check the box located next to where it says &#8220;Execute Command.&#8221; Then click browse and navigate to where you created your batch file and select it. Then hit OK.</p>
<p><strong>Figure 3.5:</strong></p>
<p><a href="http://intimateintelligence.wordpress.com/files/2009/11/sms3.jpg"><img class="aligncenter size-full wp-image-119" title="sms3" src="http://intimateintelligence.wordpress.com/files/2009/11/sms3.jpg" alt="sms3" width="460" height="356" /></a></p>
<p>IMPORTANT : Make sure that you have selected your folder BEFORE editing the mailbox alert preferences. Otherwise, you will end up shutting down your computer every time you receive an email.</p>
<p>To decrease the delay between the sending of the text message to the shutting down of the computer, go to Tools -&#62; Account Settings&#8230;click &#8220;Server Settings&#8221; on the left side under the account you will be receiving text messages on. Under the server settings part of the box, change Check for new messages every _30_ minutes to every _1_ minute.</p>
<p><strong>Figure 3.6:</strong></p>
<p style="text-align:center;"><a href="http://intimateintelligence.wordpress.com/files/2009/11/sms4.jpg"><img class="aligncenter size-full wp-image-120" style="border:2px solid black;" title="sms4" src="http://intimateintelligence.wordpress.com/files/2009/11/sms4.jpg" alt="sms4" width="460" height="431" /></a></p>
<p style="text-align:left;">5. Test it out.</p>
<p style="text-align:left;">Send a txt message to your email address and watch it shutdown.</p>
<p style="text-align:left;">*IMPORTANT</p>
<p style="text-align:left;">In the body of the text message it must say the keyword that you specified earlier for the requirements of the &#8220;Message Filter.&#8221; For example mine was &#8220;totally rad.&#8221; Refer back to figure 3.2 for understanding.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Senate's delay to cause shutdown]]></title>
<link>http://mibredclaimer.wordpress.com/2009/11/04/senates-delay-to-cause-shutdown/</link>
<pubDate>Wed, 04 Nov 2009 17:57:34 +0000</pubDate>
<dc:creator>mibredclaimer</dc:creator>
<guid>http://mibredclaimer.wordpress.com/2009/11/04/senates-delay-to-cause-shutdown/</guid>
<description><![CDATA[From the Michigan Harness Horsemen&#8217;s Association website: We have learned that HB4288 is not s]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>From the <a href="http://www.mhha-online.com/news/news.htm">Michigan Harness Horsemen&#8217;s Association website</a>:</p>
<blockquote><p>We have learned that     HB4288 is not scheduled to be heard in the Senate Appropriations Committee     until at least Tuesday, 11/10; therefore <strong><span style="text-decoration:underline;">live     and simulcast racing will end 11/6/09.</span></strong><strong><span style="text-decoration:underline;"></span></strong></p></blockquote>
<p>After yesterday&#8217;s elections saw<a href="http://www.wxyz.com/news/local/story/Ohio-Approves-Casino-Gambling/-32Nj-j5Jk-3i4kiKMZ9LA.cspx"> Ohio approve casinos in its major cities</a>, the news just keeps getting worse for Michigan racing.  Keep an eye out for new developments.</p>
<p>For more information about HB4288, <a href="http://www.legislature.mi.gov/%28S%28gehhjcbnosrqjkui3wb4ih45%29%29/mileg.aspx?page=GetObject&#38;objectname=2009-HB-4288">click here</a>.</p>
<p>Thanks again goes to Twitter user @<a href="http://twitter.com/ThoroFan">ThoroFan</a> spotting this announcement.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Turn On your PC with Just 10 Secs]]></title>
<link>http://vvaavv.wordpress.com/2009/11/03/turn-on-your-pc-with-just-10-secs/</link>
<pubDate>Tue, 03 Nov 2009 17:07:14 +0000</pubDate>
<dc:creator>uashokkumar1989</dc:creator>
<guid>http://vvaavv.wordpress.com/2009/11/03/turn-on-your-pc-with-just-10-secs/</guid>
<description><![CDATA[TURN ON UR PC IN JUST 10 SECONDS(may vary) TURN ON UR PC IN JUST 10 SECONDS so u wanna know how to t]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>TURN ON UR PC IN JUST 10 SECONDS(may vary)<br />
TURN ON UR PC IN JUST 10  SECONDS<br />
so u wanna know how to turn the pc on in 10 seconds (may vary) heres  what u have to do to turn ur pc on in 10 seconds</p>
<p>Click on the start  button then &#8211;&#62;&#62;go to run<br />
then type Regedit<br />
press enter<br />
this will  open Registery Editor<br />
now look for the  key</p>
<p>HKEY_LOACAL_MECHINE\SYSTEM\CurrentControlSet\Control\ContentIndex</p>
<p>now  there find the Key Called<br />
&#8220;Startup Delay&#8221;<br />
Double Click On It<br />
Now where  its Base<br />
Click Decimal<br />
Now its Default Value Is 4800000  (75300:hexadecimal)<br />
Change The Value To 40000<br />
here u go u have done  it<br />
now close the Registery Editor and Restart Your Computer<br />
You&#8217;ll See The  Result</p>
<p>Enjoy</p>
<p>Try it ur own risk.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[How to Shutdown your Windows Virtual PC]]></title>
<link>http://paulelso.wordpress.com/2009/10/31/how-to-shutdown-your-windows-virtual-pc/</link>
<pubDate>Sat, 31 Oct 2009 11:26:33 +0000</pubDate>
<dc:creator>PaulElso</dc:creator>
<guid>http://paulelso.wordpress.com/2009/10/31/how-to-shutdown-your-windows-virtual-pc/</guid>
<description><![CDATA[Link…]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://blogs.technet.com/windows_vpc/archive/2009/10/29/tip-how-do-i-shut-down-a-virtual-machine.aspx">Link…</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[PROPER SHUTDOWN]]></title>
<link>http://techsteiny.wordpress.com/2009/10/30/proper-shutdown/</link>
<pubDate>Fri, 30 Oct 2009 14:00:09 +0000</pubDate>
<dc:creator>Brandt Steinhauser</dc:creator>
<guid>http://techsteiny.wordpress.com/2009/10/30/proper-shutdown/</guid>
<description><![CDATA[Remember when we were young?  We would come home from school, go meet up with our friends and go out]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Remember when we were young?  We would come home from school, go meet up with our friends and go out and play.  It didn&#8217;t matter what we played.  We could have been playing cops and robbers with water guns, kick ball, or just riding our bikes.  We would get on those bikes and just ride.  We never had a destination, so long as we were home before dark. We used to beg to go out and play!</p>
<p>Now look at us. Our eyes are glued to the computer.  We always seem to be working on something.  And you would have to pry my phone out of my hands.</p>
<p>Sometimes we need to just shutdown.  Hold down that Power button on your phone for 5 seconds, CMD Q the Mac, (CTRL Q on the PC).  Its OK.  Twitter will be here when you get back.</p>
<p>Go and open the front door.  Go for a walk, run, bike ride, or anything that takes place outside.  Become a kid again.  Take advantage of the day.  It&#8217;s OK, go ahead and play!</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[iseng sebelum tidur]]></title>
<link>http://alienfactory.wordpress.com/2009/10/29/iseng-sebelum-tidur/</link>
<pubDate>Thu, 29 Oct 2009 14:46:48 +0000</pubDate>
<dc:creator>Dwira</dc:creator>
<guid>http://alienfactory.wordpress.com/2009/10/29/iseng-sebelum-tidur/</guid>
<description><![CDATA[sedang iseng, kepala pusing,,, ga bisa futsalan dan maem bareng dengan doi.. jadi sebelum tidur inge]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>sedang iseng, kepala pusing,,, ga bisa futsalan dan maem bareng dengan doi..</p>
<p>jadi sebelum tidur inget sesuatu yaitu kerjaan si brainware untuk buat software matiin kompie pake VB..</p>
<p>jadi pengen nyoba pake java heheh&#8230;</p>
<p>syntx asli di command prompt itu</p>
<p style="text-align:center;"><code>shutdown /s /f /t [waktu]</code></p>
<p style="text-align:center;">
<p style="text-align:left;">nah abis utak atik di c++, script yang di butuhkan cuma ada tambahan dikit yaitu ada tambahan system di depannya diikuti script asli bawaan windows&#8230;</p>
<p style="text-align:left;">
<p style="text-align:center;"><code>system("shutdown /s /f /t 0");</code></p>
<p style="text-align:center;">
<p style="text-align:left;">nah ternyata di java ada sedikit kerumitan, entah kenapa susah banget nampilin tuh command prompt ke layar&#8230; eh setelah perjuangan dengan internet putus nyambung, dapet tuh scriptnya&#8230; yaitu di ambil dari kelas Runtime terus dari method getRuntime() dan juga baru di masukin tuh perintah asli di method exec.</p>
<p style="text-align:left;">
<p style="text-align:center;"><code> Runtime.getRuntime().exec("Shutdown /s /f /t 0");</code></p>
<p style="text-align:left;">
<p style="text-align:left;">yang semua di atas itu dimisalkan jika waktu untuk mematikan komputer ialah 0 menit&#8230;</p>
<p style="text-align:left;">maaf ya klo cuma sederhana, maklum di kerjain sambil dimarahin ama mbak kizzy karena di suruh istirahat&#8230;heheheheh&#8230;.</p>
<p style="text-align:left;">link nya dapat di klik di </p>
<p><a href="http://www.4shared.com/file/144631061/bb83f702/iseng_tidur.html">sini</a></p>
<p>klo ada error tolong beri komentar ya&#8230; maklum masih baru belajar&#8230;</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[things and stuff]]></title>
<link>http://bluerthanmidnight.wordpress.com/2009/10/24/things-and-stuff/</link>
<pubDate>Sat, 24 Oct 2009 17:16:19 +0000</pubDate>
<dc:creator>scar</dc:creator>
<guid>http://bluerthanmidnight.wordpress.com/2009/10/24/things-and-stuff/</guid>
<description><![CDATA[&lt;3 i took this photo of a cow on the road, because of the heart shape on it.  stupidly, i didn]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:justify;">
<div class="mceTemp" style="text-align:justify;">
<dl class="wp-caption alignleft">
<dt class="wp-caption-dt"><a href="http://bluerthanmidnight.wordpress.com/files/2009/10/photo-0107.jpg"><img class="size-medium wp-image-172" title="Photo 0107" src="http://bluerthanmidnight.wordpress.com/files/2009/10/photo-0107.jpg?w=300" alt="&#60;3" width="300" height="199" /></a></dt>
<dd class="wp-caption-dd">&#60;3</dd>
</dl>
</div>
<p style="text-align:justify;">i took this photo of a cow on the road, because of the heart shape on it.  stupidly, i didn&#8217;t have my dslr with me and even more stupidly, my stupid cellphone camera has somehow shifted into a mode where, well &#8211; you cannot use the zoom function in this mode &#8230; 4tw?  anyway, kak photo, way cool <span style="text-decoration:line-through;">cow</span> bull.  speaking of hearts, i am hearting <a href="http://www.aheartaday.com" target="_blank">a heart a day</a> very much, daily.  you should too.</p>
<p style="text-align:justify;">you should avoid kiwi/apple/lemon fanta though.  it&#8217;s a lovely idea, but just too much toxic apple and not enough kiwi.</p>
<p style="text-align:justify;">you <em>should</em>, however, have early morning sex outside, in a very kind and gentle breeze.</p>
<p style="text-align:justify;">you also need to read doug coupland&#8217;s generation a, because he is still funny and on the money completely when it comes to identifying the absolute pop cultural and social pulse of the day.  smart.  funny.  mmmmmmmmmmmmm!  get it.</p>
<p style="text-align:justify;">this morning i had a brainstorm about the tattoo i want.  i really want it.  really.  now.  i won&#8217;t say what it is though, let&#8217;s hang back and see if i actually get it, and then there will be pictorial evidence.</p>
<p style="text-align:justify;">the past week was tough yo &#8230; but shutdown tough, not meltdown tough and i really do see that as progress.  because i didn&#8217;t short circuit and freak out, i didn&#8217;t feel sore, depleted.  i think, maybe, just maybe, my long-term goals right now, are finally real and realistic enough to keep me, if not sane, at least a little saner.</p>
<p style="text-align:justify;">still a way to go.</p>
<p style="text-align:justify;">things that need thought [not nec by me]:</p>
<ul>
<li>grunge is autistic</li>
<li>the logical conclusion of postmodernism is the eradication of language</li>
<li>binaries don&#8217;t need to be abolished, they just need the line between the two poles drawn in</li>
</ul>
<p style="text-align:justify;">thanks to sam for this&#8230; <a href="http://omploader.org/vMm0xNQ/5d929535490f183b305120bcfd5895ec.jpg.gif.jpeg" target="_blank">talkin&#8217; bout my generation</a></p>
<p style="text-align:justify;">
<div class="mceTemp" style="text-align:justify;">
<dl class="wp-caption alignleft">
<dt class="wp-caption-dt"><a href="http://bluerthanmidnight.wordpress.com/files/2009/10/photo-0105.jpg"><img class="size-medium wp-image-173" title="Photo 0105" src="http://bluerthanmidnight.wordpress.com/files/2009/10/photo-0105.jpg?w=300" alt="blue unspotted hyaena + flying heart" width="300" height="225" /></a></dt>
<dd class="wp-caption-dd">blue unspotted hyaena + flying heart</dd>
</dl>
</div>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Windows compara&ccedil;&otilde;es &ndash; Startup e Shutdown]]></title>
<link>http://inorbt.com/2009/10/23/windows-comparaes-startup-e-shutdown/</link>
<pubDate>Fri, 23 Oct 2009 18:05:53 +0000</pubDate>
<dc:creator>orbtblog</dc:creator>
<guid>http://inorbt.com/2009/10/23/windows-comparaes-startup-e-shutdown/</guid>
<description><![CDATA[até o vista do windows 7]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>até o vista</p>
<p>
<div class="wlWriterEditableSmartContent" id="scid:5737277B-5D6D-4f48-ABFC-DD9C333F4C5D:7258d07c-71c7-4447-b52e-41f3a332e1d5" style="display:inline;float:none;margin:0;padding:0;">
<div><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/I1Iup7iDaeQ&#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/I1Iup7iDaeQ&#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></div>
</div>
<p>do windows 7</p>
<div class="wlWriterEditableSmartContent" id="scid:5737277B-5D6D-4f48-ABFC-DD9C333F4C5D:00399443-836b-45f4-a7e2-e448a365b349" style="display:inline;float:none;margin:0;padding:0;">
<div><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/ix9WTF_itWY&#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/ix9WTF_itWY&#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></div>
</div>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Shutdown XP Faster]]></title>
<link>http://pkb89.wordpress.com/2009/10/21/shutdown-xp-faster/</link>
<pubDate>Wed, 21 Oct 2009 20:16:03 +0000</pubDate>
<dc:creator>Pradeep Kumar</dc:creator>
<guid>http://pkb89.wordpress.com/2009/10/21/shutdown-xp-faster/</guid>
<description><![CDATA[Like previous versions of windows, it takes long time to restart or shutdown windows XP when the ]]></description>
<content:encoded><![CDATA[Like previous versions of windows, it takes long time to restart or shutdown windows XP when the ]]></content:encoded>
</item>
<item>
<title><![CDATA[Half-Term]]></title>
<link>http://missdoofus.wordpress.com/2009/10/20/half-term/</link>
<pubDate>Tue, 20 Oct 2009 21:10:52 +0000</pubDate>
<dc:creator>schessilibam</dc:creator>
<guid>http://missdoofus.wordpress.com/2009/10/20/half-term/</guid>
<description><![CDATA[I just quickly wanted to say that I am already dreading the half-term children&#8217;s centre shutdo]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>I just quickly wanted to say that I am already dreading the half-term children&#8217;s centre shutdown next week&#8230; I hope that at least half of the groups we usually go to are on&#8230;</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Are You Unable to Shutdown Your Computer?]]></title>
<link>http://antivirus2010.wordpress.com/2009/10/20/are-you-unable-to-shutdown-your-computer-2/</link>
<pubDate>Tue, 20 Oct 2009 05:10:00 +0000</pubDate>
<dc:creator>ninjarich001</dc:creator>
<guid>http://antivirus2010.wordpress.com/2009/10/20/are-you-unable-to-shutdown-your-computer-2/</guid>
<description><![CDATA[It is always important to shut down our computers safe, a forced shutdown by abruptly cutting off th]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p> It is always important to shut down our computers safe, a forced shutdown by abruptly cutting off the power supply can cause the loss of your data and can also cause system instability as a function of the processes running at the time. How can search for malicious software to avoid this feature, you shut off the computer. (If you are a user account with limited privileges to your administrator have implemented this for some reason). You can remove this problem by using freeSoftware such as &#39;Disk Heal&#39;, or run it manually with the registry when the malware is still active but that it may be reset by the setting in this case you need a good anti-virus program and prevent you from using that removing of the malware first before you change the setting.&#39;ll Below, I have covered how to resolve this problem with the registry. </p>
<p>
 * Open the Registry<br />
<br /> Go to Start&#62; Run&#62; &#34;regedit&#34; </p>
<p>
 * Find the value<br />
<br /> Go to Edit&#62; Find or press Ctrl + F and searchfor &#8216;no close&#8217;</p>
<p>
*Delete   the entry</p>
<p>Right click the value and click delete or select modify and set the data to &#8216;0&#8242;.</p>
<p>
*Repeat   step 2</p>
<p>If another entry exists, repeat step 3.</p>
<p>After this restart of your computer (you may log off and log on, or use the designated button in your CPU since shutdown is disabled), after which you should be able to shutdown. If your computer still cannot be shutdown as mentioned above, the malware is still active and should be deleted first (with a good anti-virus program like <b>Kaspersky),</b> or use your computer on a limited profile. </p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Apagar el equipo automáticamente al terminar las descargas directas con Tucan]]></title>
<link>http://andalinux.wordpress.com/2009/10/17/apagar-el-equipo-automaticamente-al-terminar-las-descargas-directas-con-tucan/</link>
<pubDate>Sat, 17 Oct 2009 15:15:53 +0000</pubDate>
<dc:creator>jasvazquez</dc:creator>
<guid>http://andalinux.wordpress.com/2009/10/17/apagar-el-equipo-automaticamente-al-terminar-las-descargas-directas-con-tucan/</guid>
<description><![CDATA[Recientemente ha salido una nueva versión del gestor de descarga directa Tucan. Entre las novedades ]]></description>
<content:encoded><![CDATA[Recientemente ha salido una nueva versión del gestor de descarga directa Tucan. Entre las novedades ]]></content:encoded>
</item>
<item>
<title><![CDATA[Reconsidering Happiness]]></title>
<link>http://nwhog.wordpress.com/2009/10/16/reconsidering-happiness/</link>
<pubDate>Fri, 16 Oct 2009 22:50:11 +0000</pubDate>
<dc:creator>mac</dc:creator>
<guid>http://nwhog.wordpress.com/2009/10/16/reconsidering-happiness/</guid>
<description><![CDATA[Keith Urban Whoa!  My two previous posts on the current state of the Harley-Davidson state was clear]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><div id="attachment_5244" class="wp-caption alignright" style="width: 310px"><img class="size-medium wp-image-5244" title="Urban_HD" src="http://nwhog.wordpress.com/files/2009/10/urban_hd.png?w=300" alt="Keith Urban" width="300" height="182" /><p class="wp-caption-text">Keith Urban</p></div>
<p>Whoa!  My two <a href="http://nwhog.wordpress.com/2009/10/15/are-you-significant/">previous posts</a> on the current state of the Harley-Davidson state was clearly like a sad country song in an old rundown coffee shop, yup one of those “bummer zones” so, we need a change of scenery.</p>
<p>Speaking of, have you been to Nashville?  If you haven&#8217;t been to the <a href="http://www.countrymusichalloffame.com/site/">Country Music Hall of Fame and Museum</a> you&#8217;re the worse for it.  Yeah, you may think you don&#8217;t care about boot-kickers, but you&#8217;re missing out on the history of America.  From slavery to the Dust Bowl to Elvis and the tragedy of the Williams family.  To go to the Country Music Hall of Fame and Museum is to become a fan.  And to insure that it lives on, Vince Gill proposed a “<a href="http://www.vincegill.com/news.php">All For The Hall</a>” event where every artist cough up one night of revenue for the Hall.</p>
<p>Keith Urban is one who took him up on it and at the <a href="http://sommetcenter.com/">Sommet Center</a> (the Staples Center of Nashville), he hosted some of country music&#8217;s finest as they raised money for the Hall.   Keith and his band played one my favorites, &#8220;<a href="http://www.youtube.com/watch?v=4BM1RUN_KuQ">Who Wouldn&#8217;t Wanna Be Me</a>&#8220;:</p>
<p><em>&#8220;I got no money in my pockets<br />
I got a hole in my jeans<br />
I had a job and I lost it<br />
But it won&#8217;t get to me&#8221;<br />
</em><br />
That&#8217;s the power of music.  It crowds out all the negative and replaces the bad thoughts with joy and inspiration.  And when you <a href="http://www.youtube.com/watch?v=4BM1RUN_KuQ">watch</a> Keith Urban ride his Harley and hear him wail on his guitar, you’ll smile with a good feeling.  I don’t know about you, but after yesterday’s jaw-dropping news from H-D and the layoffs at Buell I needed some &#8220;sunshine blown up my skirt.&#8221;</p>
<p>Life.  It&#8217;s full of hopes and dreams.  And victories and losses.  What gets you through is your friends, family and the music.</p>
<p><em>Photo courtesy of Keith Urban.</em></p>
<h6>All Rights Reserved © Northwest Harley <a href="http://nwhog.wordpress.com/">Blog</a></h6>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Linux, UNIX and Oracle - automating database startup and shutdown]]></title>
<link>http://oraclelabs.wordpress.com/2009/11/10/linux-unix-and-oracle-automating-database-startup-and-shutdown/</link>
<pubDate>Tue, 10 Nov 2009 20:14:49 +0000</pubDate>
<dc:creator>oraclelabs</dc:creator>
<guid>http://oraclelabs.wordpress.com/2009/11/10/linux-unix-and-oracle-automating-database-startup-and-shutdown/</guid>
<description><![CDATA[How to automate database startup and shutdown when your server restarts. Technorati : Linux, Oracle ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://oraclelabs.wordpress.com/linux-and-oracle-automating-startup-and-shutdown/">How to automate database startup and shutdown when your server restarts.</a></p>
<p class="zoundry_raven_tags">  <!-- Tag links generated by Zoundry Raven. Do not manually edit. http://www.zoundryraven.com -->  <span class="ztags"><span class="ztagspace">Technorati</span> : <a href="http://www.technorati.com/tag/Linux" class="ztag" rel="tag">Linux</a>, <a href="http://www.technorati.com/tag/Oracle+database" class="ztag" rel="tag">Oracle database</a>, <a href="http://www.technorati.com/tag/automation" class="ztag" rel="tag">automation</a>, <a href="http://www.technorati.com/tag/shutdown" class="ztag" rel="tag">shutdown</a>, <a href="http://www.technorati.com/tag/startup" class="ztag" rel="tag">startup</a></span> </p>
</div>]]></content:encoded>
</item>

</channel>
</rss>
