<?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>script &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://wordpress.com/tag/script/</link>
	<description>Feed of posts on WordPress.com tagged "script"</description>
	<pubDate>Mon, 06 Oct 2008 18:18:12 +0000</pubDate>

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

<item>
<title><![CDATA[subnet ping scan in shell]]></title>
<link>http://smaftoul.wordpress.com/?p=203</link>
<pubDate>Mon, 06 Oct 2008 16:12:38 +0000</pubDate>
<dc:creator>smaftoul</dc:creator>
<guid>http://smaftoul.nl.wordpress.com/2008/10/06/subnet-ping-scan-in-shell/</guid>
<description><![CDATA[Today I logged in a machine I don&#8217;t want to install anything on it, but I wanted to find a mac]]></description>
<content:encoded><![CDATA[<p>Today I logged in a machine I don't want to install anything on it, but I wanted to find a machine in its network.<br />
I came up with the little shell script that scans the subnet:</p>
<p>[sourcecode language="php"]<br />
CURR=1<br />
SUBNET="192.168.0"</p>
<p>while [ $CURR -lt 255 ] ; do<br />
  ping -c1 -t1 $SUBNET.$CURR 2>&1 >/dev/null<br />
  if [ "$?" -eq "0" ]; then<br />
    echo "$SUBNET.$CURR"<br />
  fi<br />
  let CURR=$CURR+1<br />
done<br />
[/sourcecode]</p>
<p>This script is suboptimal but it does the stuff: It uses ping with a timeout of 1 sec, so If no machine is up, the script takes around 255 seconds to scan the subnet, it doesn't list the machines that doesn't reply to ping and so on ... but as I said it , it does the stuff.</p>
<p>I tested this script in Linux and OSX.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Script para backup en Windows]]></title>
<link>http://ikerib.wordpress.com/?p=393</link>
<pubDate>Mon, 06 Oct 2008 08:02:01 +0000</pubDate>
<dc:creator>ikerib</dc:creator>
<guid>http://ikerib.nl.wordpress.com/2008/10/06/script-para-backup-en-windows/</guid>
<description><![CDATA[Recientemente he usado este script para hacer backups en un servidor:


@echo off
set origen=C:\
set]]></description>
<content:encoded><![CDATA[<p>Recientemente he usado este script para hacer backups en un servidor:</p>
<blockquote><p>
<code><br />
@echo off</p>
<p>set origen=C:\<br />
set destino=D:\copia<br />
set carpetaAexcluir=WINDOWS<br />
set TEMPO= %temp%\mycopia.txt</p>
<p>rem COPIAR ARCHIVOS Y CARPETAS NO OCULTOS<br />
dir /B %origen%  &#124; find /i /v "%carpetaAexcluir%" &#62; %TEMPO%</p>
<p>rem COPIAR ARCHIVOS Y CARPETAS OCULTOS<br />
dir /ah /B %origen%  &#124; find /i /v "%carpetaAexcluir%" &#62;&#62; %TEMPO%<br />
for /f %%i in (%TEMPO%) do xcopy %%i /S /E /C /I /H /R /V &#62; %destino<br />
</code>
</p></blockquote>
<p>Lo guardamos como .bat y podemos crear una tarea programada para lanzarlo cada martes a la madrugada por ejemplo</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Akses Cepat Yahoo! Mail Dengan VBS]]></title>
<link>http://ikatama.wordpress.com/?p=651</link>
<pubDate>Sun, 05 Oct 2008 22:59:41 +0000</pubDate>
<dc:creator>Yonatan Prasdikatama</dc:creator>
<guid>http://prasdikatama.com/2008/10/05/akses-cepat-yahoo-mail-dengan-vbs/</guid>
<description><![CDATA[Berkomunikasi dengan orang disekitar kita memang sangat menyenangkan apalagi dengan sahabat kita. De]]></description>
<content:encoded><![CDATA[<p>Berkomunikasi dengan orang disekitar kita memang sangat menyenangkan apalagi dengan sahabat kita. Dengan majunya perkembangan teknologi maka komunikasi seakan tidak terbatas. Dengan menggunakan email kita dapat mengirimkan surat tanpa harus membeli perangko maupun amplop terlebih dahulu.</p>
<p style="text-align:center;"><a href="http://ikatama.wordpress.com/files/2008/10/akses-yahoo-mail.jpg"><img class="alignnone size-full wp-image-652" title="akses-yahoo-mail" src="http://ikatama.wordpress.com/files/2008/10/akses-yahoo-mail.jpg" alt="" width="363" height="153" /></a></p>
<p>Menggunakan email sangatlah mudah yaitu dengan cara mengakses halaman web seperti Yahoo! atau Hotmail yang menyediakan fasilitas layanan email maka kita sudah dapat berkirim surat secara online. Akan tetapi bagaimana kita dapat mengakses email bila web browser yang kita ingin gunakan tidak dapat dibuka atau di proteksi oleh administrator.</p>
<p style="text-align:center;"><a href="http://ikatama.wordpress.com/files/2008/10/akses-yahoo-mail2.jpg"><img class="alignnone size-full wp-image-653" title="akses-yahoo-mail2" src="http://ikatama.wordpress.com/files/2008/10/akses-yahoo-mail2.jpg" alt="" width="468" height="357" /></a></p>
<p>Satu cara yang sangat mudah dan aman yaitu dengan menggunakan script VBS. Dengan mengetikkan sedikit script program pada Notepad maka kita dapat mengakses email kembali. Tertarik? Ikutilah petunjuk berikut ini.<br />
Ketikkan script program berikut ini pada Notepad dengan nama yahoo.vbs dan ubah Save as type menjadi All files (*.*).</p>
<blockquote><p>Dim browser<br />
Set browser = Wscript.CreateObject("InternetExplorer.Application")<br />
pengguna = inputbox("User Id:","User Id Anda di Yahoo?")<br />
kunci = inputbox("Password:","Password Anda di Yahoo?")<br />
With browser<br />
.Navigate "http://login.yahoo.com/config?login=" &#38; pengguna &#38; "&#38;passwd=" &#38; kunci<br />
.Visible = 1<br />
End With<br />
msgbox "Koneksi... Klik OK untuk lanjut.",vbinformation,"Login Yahoo!"</p></blockquote>
<p>Buka program tersebut dengan cara klik dua kali pada ikon yahoo.vbs kemudian masukkan user id dan password Anda satu persatu. Maka jendela web browser akan terbuka bersamaan dengan email Anda. Selamat surfing &#38; selamat mencoba </p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Here's A Question for Ya]]></title>
<link>http://chandlermariecraig.wordpress.com/?p=564</link>
<pubDate>Sun, 05 Oct 2008 22:21:32 +0000</pubDate>
<dc:creator>cmcraig</dc:creator>
<guid>http://chandlermariecraig.nl.wordpress.com/2008/10/05/heres-a-question-for-ya-4/</guid>
<description><![CDATA[Hey, y&#8217;all, it&#8217;s Sunday and with all the craziness that is my life right now (law schoo]]></description>
<content:encoded><![CDATA[<p>Hey, y'all, it's Sunday and with all the craziness that is my life right now (law school smackdown, getting my book ready for submission, working with an artist, keeping up with new friends, getting Nate settled in Austin...) I've been using Sunday evenings as a chance to slow down, take a breather, and prepare myself for the rest of the week. Nate and I have been doing this by taking time to do church and dinner together starting at 7, but, yanno, anything works really. However, it is important that it's not something that involves TV or even reading because that gives no opportunity for your own thought.</p>
<p>Here's the deal, most writers have to work still, right? Ok, so I'm not working and I'm grateful for that, but I am attempting not to fail school, so, for our purposes, I'm gonna put myself in the same category. Anyway, as much as I hate it, throughout the week I do get a bit dragged down in trying to keep up with all my responsibilities. I mean, when I was just writing for myself, I wasn't too worried, but now I have to think about my agent as well. I have to provide him work that he feels proud presenting.</p>
<p>I think it's so important to sit back in the midst of the nutiness that is all of our lives and remember, hey, we're doing what we love. It's not that I'm ever complaining in my head, but there's no reason to even get stressed. This is fun!</p>
<p>This Sunday, I'm thinking about what I want to accomplish this week. <em>So here's what I'm up to, what are y'all up to?</em></p>
<p>-complete script</p>
<p>-review and turn in artist work</p>
<p>-talk to agent about when we're aiming to finish</p>
<p>-complete some writing related correspondence</p>
<p>-blog every day</p>
<p>-finish and interview</p>
<p>-review a book</p>
<p> </p>
<p>Here's to a happy and productive week. Breathe everyone!</p>
<p> </p>
<p><strong>Status:</strong> Getting my homework done like a good girl, then headed to Church. After, going  grocery shopping and writing at least 9 pages of script.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Nautilus scripts para tu Gnome. Menus contextuales en español ]]></title>
<link>http://thetuxteam.wordpress.com/?p=251</link>
<pubDate>Sun, 05 Oct 2008 14:41:35 +0000</pubDate>
<dc:creator>thetuxteam</dc:creator>
<guid>http://thetuxteam.nl.wordpress.com/2008/10/05/nautilus-scripts-para-tu-gnome-menus-contextuales-en-espanol/</guid>
<description><![CDATA[Como bien saben Nautilus es el Explorador de Archivos de GNOME, éste también es el responsable de ]]></description>
<content:encoded><![CDATA[<p>Como bien saben Nautilus es el Explorador de Archivos de GNOME<span style="font-family:arial;">, éste también es el responsable de los menús contextuales desde los cuales podemos acceder a determinadas funciones al hacer click derecho sobre algún elemento en una carpeta o en el escritorio.</span></p>
<p>De esta manera <span style="font-family:arial;">se pueden agregar pequeñas aplicaciones (Scripts) que te faciliten tareas y se pueden ejecutar desde el Explorador de Archivos (Nautilus) solo haciendo click derecho sobre el archivo que queremos que se ejecute, es decir, desde cualquier menú contextual y así ejecutar diversas funciones bastante útiles. Los Scripts (<span style="font-weight:bold;">todos en Español</span>) se dividen en las siguientes categorías:</span></p>
<p><span style="font-family:arial;">* <span style="font-weight:bold;color:#00ff00;">Audio:</span> Convierte archivos de audio de un formato a otro con facilidad.</span></p>
<p>* <span style="font-weight:bold;color:#00ff00;">Comandos de Ventana:</span> Ejecuta líneas de comandos fácilmente desde Nautilus.</p>
<p>*<span style="font-weight:bold;color:#00ff00;"> Comentarios:</span> Pon comentarios a tus fotografías para usarlos en otros scripts.</p>
<p>* <span style="font-weight:bold;color:#00ff00;">DVD: </span>Genera un DVD de fotografías con música y fondos.<br />
<span style="font-family:arial;"><br />
* <span style="font-weight:bold;color:#00ff00;">Imágenes:</span> Reducir imágenes, efectos, rotaciones y mucho más.</span></p>
<p>* <span style="font-weight:bold;color:#00ff00;">Otros:</span> Realiza diferentes acciones.</p>
<p>* <span style="font-weight:bold;color:#00ff00;">PDF: </span>Une, extrae y combina imágenes en archivos PDF.</p>
<p>* <span style="font-weight:bold;color:#00ff00;">Video:</span> Convierte y divide entre varios formatos.</p>
<p><span style="font-family:arial;">En la siguiente imagen se puede observar claramente como funcionan (click para ampliar):</span></p>
<p><img class="aligncenter" src="http://thetuxteam.wordpress.com/files/2008/10/nautilus.png" alt="" width="457" height="226" /></p>
<p><span style="font-family:arial;">Ahora bien, para poder instalar los scripts tienen que hacer lo siguiente:</span></p>
<p><span style="font-weight:bold;">1. </span>Descargan el paquete de scripts <a href="http://nautilus-scripts.javielinux.com/nautilus/nautilus-scripts.tar.gz" target="_blank"><span style="font-weight:bold;color:#0000ff;">desde aquí</span></a>.</p>
<p><span style="font-weight:bold;">2. </span>Una vez descargado pasan a descomprimir el paquete.</p>
<p><span style="font-weight:bold;">3.</span> Ahora copian los scripts en el siguiente directorio:</p>
<p><span style="font-weight:bold;font-style:italic;color:#79edcb;">Home/Usuario/.gnome2/nautilus-scripts</span></p>
<p><span style="font-family:arial;"><span style="font-style:italic;">Nota:</span> para poder acceder a la carpeta .genome2 que se encuentra en nuestra carpeta personal es necesario presionar las teclas <span style="font-weight:bold;">Control + H</span> para que aparezca ok.</span></p>
<p>PARA QUE FUNCIONE ES NESESARIO INSTALAR EL PAQUETE phyton-nautilus QUE SE ENCUENTRA EN EL SYNAPTIC.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Trik Chatting Dengan Net Send]]></title>
<link>http://ikatama.wordpress.com/?p=637</link>
<pubDate>Sun, 05 Oct 2008 11:27:40 +0000</pubDate>
<dc:creator>Yonatan Prasdikatama</dc:creator>
<guid>http://prasdikatama.com/2008/10/05/trik-chatting-dengan-net-send/</guid>
<description><![CDATA[Di dalam kehidupan ini banyak cara yang digunakan untuk berkomunikasi. Misalnya dengan menggunakan s]]></description>
<content:encoded><![CDATA[<p><span style="font-family:Arial;">Di dalam kehidupan ini banyak cara yang digunakan untuk berkomunikasi. Misalnya dengan menggunakan surat, telegram, dan lain-lain. Dalam era teknologi informasi ini komunikasi juga dapat dilakukan dengan menggunakan komputer. Salah satu cara yang digunakan untuk mengirimkan pesan melalui komputer adalah dengan menggunakan fasilitas <em>net send </em>yang terdapat pada Windows. Untuk mengirimkan pesan biasanya para pengguna komputer menggunakan <strong>command prompt</strong> dengan cara mengetikkan <em>net send</em> nama_komputer “isi pesan”. </span></p>
<p class="MsoNormal" style="text-align:center;"><img class="aligncenter" src="http://ikatama.files.wordpress.com/2008/04/gambar1.jpg" alt="" /></p>
<p><span style="font-family:Arial;">Jika menggunakan <em>net send</em> sangatlah tidak efisien karena setiap kali kita ingin mengirim pesan, kita harus selalu mengetikkan <em>net send</em> kemudian diikuti dengan mengetikkan nama komputer yang ingin kita hubungi. Tentunya dengan cara tersebut sangatlah merepotkan. Oleh karena itu, dibutuhkan suatu program yang mempermudah kita untuk mengirim pesan dari satu komputer ke komputer yang lainnya. Dalam menggunakan aplikasi ini, kita hanya perlu sekali memasukkan nama komputer yang ingin kita hubungi. Setelah itu kita hanya perlu mengetikkan isi pesan yang ingin disampaikan. Sangat mudah dan efisien bukan? Penasaran? Cobalah <em>script</em> berikut ini.<span> </span></span></p>
<p class="MsoNormal" style="text-align:justify;"><span style="font-family:Arial;">Ketikkanlah <em>script</em> program dibawah ini dengan menggunakan <strong>Notepad</strong> lalu simpan dengan nama <strong>chatting.vbs</strong> dan jangan lupa ubah <em>Save as type</em> yang tadinya dari <em>Text Documents (*.txt)</em> menjadi <em>All Files</em>. Jangan lupa juga untuk menonaktifkan <strong>Word Wrap</strong> yang ada di <strong>Notepad</strong> pada saat pengetikan <em>script</em> program. </span></p>
<blockquote>
<p class="MsoNormal" style="text-align:justify;"><span style="font-size:9pt;">dim aksi, perintah, komputer, kompu, pesan, kalimat, hasil</span></p>
<p class="MsoNormal" style="text-align:justify;"><span style="font-size:9pt;">mulai()</span></p>
<p class="MsoNormal" style="text-align:justify;"><span style="font-size:9pt;">sub mulai()</span></p>
<p class="MsoNormal" style="text-align:justify;"><span style="font-size:9pt;">komputer = InputBox("Nama Komputer:","PeSink [Pesan Singkat]")</span></p>
<p class="MsoNormal" style="text-align:justify;"><span style="font-size:9pt;">kompu=ucase(komputer)</span></p>
<p class="MsoNormal" style="text-align:justify;"><span style="font-size:9pt;">kirim_beneran()</span></p>
<p class="MsoNormal" style="text-align:justify;"><span style="font-size:9pt;">End Sub</span></p>
<p class="MsoNormal" style="text-align:justify;"><span style="font-size:9pt;"> </span></p>
<p class="MsoNormal" style="text-align:justify;"><span style="font-size:9pt;">sub kirim_beneran()</span></p>
<p class="MsoNormal" style="text-align:justify;"><span style="font-size:9pt;">set aksi = WScript.CreateObject("Wscript.Shell")</span></p>
<p class="MsoNormal" style="text-align:justify;"><span style="font-size:9pt;">kalimat = "Anda terhubung dengan komputer: [" &#38; kompu &#38; "]" &#38;_</span></p>
<p class="MsoNormal" style="text-align:justify;"><span style="font-size:9pt;"><span> </span>vbcrlf &#38; vbcrlf &#38;_</span></p>
<p class="MsoNormal" style="text-align:justify;"><span style="font-size:9pt;"><span> </span>"Ketik [quit] untuk berhenti." &#38; vbcrlf &#38;_</span></p>
<p class="MsoNormal" style="text-align:justify;"><span style="font-size:9pt;"><span> </span>"Ketik [ganti] untuk ganti teman." &#38; vbcrlf &#38; vbcrlf &#38; vbcrlf &#38;_</span></p>
<p class="MsoNormal" style="text-align:justify;"><span style="font-size:9pt;"><span> </span>"Pesan Anda:"</span></p>
<p class="MsoNormal" style="text-align:justify;"><span style="font-size:9pt;">pesan = InputBox(kalimat,"PeSink [Pesan Singkat]")</span></p>
<p class="MsoNormal" style="text-align:justify;"><span style="font-size:9pt;">hasil=ucase(pesan)</span></p>
<p class="MsoNormal" style="text-align:justify;"><span style="font-size:9pt;">if hasil="QUIT" then</span></p>
<p class="MsoNormal" style="text-align:justify;"><span style="font-size:9pt;">MsgBox "Anda keluar dari chatting ini!",vbOkOnly,"PeSink [Pesan Singkat]"</span></p>
<p class="MsoNormal" style="text-align:justify;"><span style="font-size:9pt;">wscript.quit</span></p>
<p class="MsoNormal" style="text-align:justify;"><span style="font-size:9pt;">else </span></p>
<p class="MsoNormal" style="text-align:justify;"><span style="font-size:9pt;">if hasil="GANTI" then</span></p>
<p class="MsoNormal" style="text-align:justify;"><span style="font-size:9pt;">MsgBox "Anda Ganti Teman Chatting!",vbOkOnly,"PeSink [Pesan Singkat]"</span></p>
<p class="MsoNormal" style="text-align:justify;"><span style="font-size:9pt;">mulai()</span></p>
<p class="MsoNormal" style="text-align:justify;"><span style="font-size:9pt;">else</span></p>
<p class="MsoNormal" style="text-align:justify;"><span style="font-size:9pt;">perintah = "cmd /c net.exe send /domain:" &#38; kompu &#38; " " &#38; pesan</span></p>
<p class="MsoNormal" style="text-align:justify;"><span style="font-size:9pt;">aksi.run perintah, 0, true</span></p>
<p class="MsoNormal" style="text-align:justify;"><span style="font-size:9pt;">MsgBox "Pesan telah dikirim ke komputer: " &#38;_</span></p>
<p class="MsoNormal" style="text-align:justify;"><span style="font-size:9pt;">kompu,vbOkOnly,"PeSink [Pesan Singkat]"</span></p>
<p class="MsoNormal" style="text-align:justify;"><span style="font-size:9pt;">kirim_beneran()</span></p>
<p class="MsoNormal" style="text-align:justify;"><span style="font-size:9pt;">end if</span></p>
<p class="MsoNormal" style="text-align:justify;"><span style="font-size:9pt;">end if</span></p>
<p class="MsoNormal" style="text-align:justify;"><span style="font-size:9pt;">End Sub</span></p>
</blockquote>
<p class="MsoNormal" style="text-align:justify;"><span style="font-family:Arial;">Setelah mengetikan <em>script</em> program diatas simpanlah <em>file</em> tersebut kemudian jalankan <em>file</em> yang bernama <strong>chatting.vbs</strong>. Program diatas telah diuji coba di sistem operasi Windows 2000 Professional dan Windows XP Professional Service Pack 2. Selamat belajar &#38; mencoba.</span></p>
<p class="MsoNormal" style="text-align:center;"><img class="aligncenter" src="http://ikatama.wordpress.com/files/2008/04/gambar2.jpg" alt="" /></p>
<p class="MsoNormal" style="text-align:center;"><img class="aligncenter" src="http://ikatama.wordpress.com/files/2008/04/gambar4.jpg" alt="" /></p>
<p class="MsoNormal" style="text-align:center;"><img class="aligncenter" src="http://ikatama.wordpress.com/files/2008/04/gambar5.jpg" alt="" /></p>
<p class="MsoNormal" style="text-align:center;"><img class="aligncenter" src="http://ikatama.wordpress.com/files/2008/04/gambar3.jpg" alt="" /></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Trik Logoff Windows Dengan Script WSF]]></title>
<link>http://ikatama.wordpress.com/?p=632</link>
<pubDate>Sun, 05 Oct 2008 11:22:44 +0000</pubDate>
<dc:creator>Yonatan Prasdikatama</dc:creator>
<guid>http://prasdikatama.com/2008/10/05/trik-logoff-windows-dengan-script-wsf/</guid>
<description><![CDATA[
Modifikasi dalam kehidupan sehari-hari sangatlah diperlukan, agar kita tidak terus merasa bosan kar]]></description>
<content:encoded><![CDATA[<p class="MsoNormal" style="line-height:150%;">
<p class="MsoNormal" style="line-height:150%;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;">Modifikasi dalam kehidupan sehari-hari sangatlah diperlukan, agar kita tidak terus merasa bosan karena kegiatan sehari-hari yang sifatnya monoton. Demikian juga halnya dalam bidang komputer pastinya diperlukan suatu modifikasi, agar kegiatan kerja yang dilakukan lebih efektif, efisien dan menghindari rasa bosan. </span></p>
<p style="text-align:center;"><img class="aligncenter" src="http://ikatama.wordpress.com/files/2008/05/gambar11.jpg" alt="" /></p>
<p class="MsoNormal" style="line-height:150%;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;">Salah satu perubahan dalam bidang komputer yang dapat dilakukan yaitu merubah cara <em>LogOff</em> atau keluar dari suatu <em>account</em>(akun) di Windows. Cara biasa yang sering kita lakukan untuk keluar dari suatu <em>account</em>(akun) di Windows yaitu dengan klik tombol <strong>Start</strong> pada <strong>Taskbar</strong> lalu memilih <strong>Log Off</strong>, ketika menu <strong>Log Off Windows</strong> muncul kemudian klik tombol <strong>Log Off</strong>. Cara tersebut terlalu panjang dan boleh dibilang kurang praktis.</span></p>
<p class="MsoNormal" style="line-height:150%;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;">Maka dari itu diperlukan suatu langkah yang praktis, yaitu dengan memanfaatkan <strong>WSF(Windows Scripting File)</strong> agar dapat dibuat suatu program yang mampu menciptakan sebuah <em>shortcut</em> di <strong>Start Menu</strong> dan <strong>Windows Explorer </strong>sehingga berguna dalam <strong>Log Off</strong> dari suatu <em>account</em>(akun). Dengan membuat program yang satu ini maka di dapat suatu inovasi baru dalam <strong>Log Off</strong> Windows yang praktis. Hanya dengan dua langkah saja <strong>Log Off</strong> dari suatu <em>account</em>(akun) pun sudah dapat dilakukan. Penasaran ingin membuatnya? Silahkan ikuti petunjuk menarik yang satu ini.</span></p>
<p class="MsoNormal" style="line-height:150%;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;">Pertama-tama salin dan simpan <em>script</em> program berikut ini melalui <strong>Notepad</strong> dengan nama <strong>LogOffWin.wsf</strong>, lalu ubah <em>Save as type</em> yang tadinya bernama <em>Text Documents (*.txt)</em> menjadi <em>All Files</em>. Nonaktifkan juga <strong>Word Wrap</strong> yang ada di <strong>Notepad</strong> pada saat pengetikan <em>script</em> program, tujuannya yaitu agar pengetikkan program dapat berjalan dengan lancar tanpa hambatan. </span></p>
<blockquote>
<p class="MsoNormal" style="line-height:150%;"><span style="font-size:10pt;line-height:150%;font-family:&#34;">&#60;job id="log off via klik kanan"&#62;</span></p>
<p class="MsoNormal" style="line-height:150%;"><span style="font-size:10pt;line-height:150%;font-family:&#34;">&#60;script language="VBScript"&#62;</span></p>
<p class="MsoNormal" style="line-height:150%;"><span style="font-size:10pt;line-height:150%;font-family:&#34;">set natan = WScript.CreateObject("WScript.Shell")</span></p>
<p class="MsoNormal" style="line-height:150%;"><span style="font-size:10pt;line-height:150%;font-family:&#34;">judul= "[visit me @ &#60;http://ikatama.wordpress.com&#62;]"</span></p>
<p class="MsoNormal" style="line-height:150%;"><span style="font-size:10pt;line-height:150%;font-family:&#34;">p1 = "Pilihan Instalasi:"&#38;vbcrlf&#38;vbcrlf&#38;_</span></p>
<p class="MsoNormal" style="line-height:150%;"><span style="font-size:10pt;line-height:150%;font-family:&#34;"><span> </span>"&#62; Yes=untuk 'Install'."&#38;vbcrlf&#38;_</span></p>
<p class="MsoNormal" style="line-height:150%;"><span style="font-size:10pt;line-height:150%;font-family:&#34;"><span> </span>"&#62; No=untuk 'Hapus'."&#38;vbcrlf&#38;_</span></p>
<p class="MsoNormal" style="line-height:150%;"><span style="font-size:10pt;line-height:150%;font-family:&#34;"><span> </span>"&#62; Cancel=untuk 'Batal'."&#38;vbcrlf&#38;vbcrlf&#38;_</span></p>
<p class="MsoNormal" style="line-height:150%;"><span style="font-size:10pt;line-height:150%;font-family:&#34;"><span> </span>"Install sekarang?"</span></p>
<p class="MsoNormal" style="line-height:150%;"><span style="font-size:10pt;line-height:150%;font-family:&#34;">j = MsgBox(p1,vbQuestion+vbYesNoCancel,judul)</span></p>
<p class="MsoNormal" style="line-height:150%;"><span style="font-size:10pt;line-height:150%;font-family:&#34;">if j = vbYes then</span></p>
<p class="MsoNormal" style="line-height:150%;"><span style="font-size:10pt;line-height:150%;font-family:&#34;">natan.RegWrite"HKCR\Directory\shell\keluar\",_</span></p>
<p class="MsoNormal" style="line-height:150%;"><span style="font-size:10pt;line-height:150%;font-family:&#34;"><span> </span>"&#62; LogOff Windows!","REG_SZ"</span></p>
<p class="MsoNormal" style="line-height:150%;"><span style="font-size:10pt;line-height:150%;font-family:&#34;">natan.RegWrite"HKCR\Directory\shell\keluar\command\",_</span></p>
<p class="MsoNormal" style="line-height:150%;"><span style="font-size:10pt;line-height:150%;font-family:&#34;"><span> </span>"shutdown.exe -l","REG_SZ"</span></p>
<p class="MsoNormal" style="line-height:150%;"><span style="font-size:10pt;line-height:150%;font-family:&#34;">natan.RegWrite"HKCR\Drive\shell\keluar\",_</span></p>
<p class="MsoNormal" style="line-height:150%;"><span style="font-size:10pt;line-height:150%;font-family:&#34;"><span> </span>"&#62; LogOff Windows!","REG_SZ"</span></p>
<p class="MsoNormal" style="line-height:150%;"><span style="font-size:10pt;line-height:150%;font-family:&#34;">natan.RegWrite"HKCR\Drive\shell\keluar\command\",_</span></p>
<p class="MsoNormal" style="line-height:150%;"><span style="font-size:10pt;line-height:150%;font-family:&#34;"><span> </span>"shutdown.exe -l","REG_SZ"</span></p>
<p class="MsoNormal" style="line-height:150%;"><span style="font-size:10pt;line-height:150%;font-family:&#34;">p2 = "Sukses di install!"</span></p>
<p class="MsoNormal" style="line-height:150%;"><span style="font-size:10pt;line-height:150%;font-family:&#34;">MsgBox p2,vbInformation,judul</span></p>
<p class="MsoNormal" style="line-height:150%;"><span style="font-size:10pt;line-height:150%;font-family:&#34;">else if j = vbNo then</span></p>
<p class="MsoNormal" style="line-height:150%;"><span style="font-size:10pt;line-height:150%;font-family:&#34;">natan.RegDelete"HKCR\Directory\shell\keluar\command\"</span></p>
<p class="MsoNormal" style="line-height:150%;"><span style="font-size:10pt;line-height:150%;font-family:&#34;">natan.RegDelete"HKCR\Directory\shell\keluar\"</span></p>
<p class="MsoNormal" style="line-height:150%;"><span style="font-size:10pt;line-height:150%;font-family:&#34;">natan.RegDelete"HKCR\Drive\shell\keluar\command\"</span></p>
<p class="MsoNormal" style="line-height:150%;"><span style="font-size:10pt;line-height:150%;font-family:&#34;">natan.RegDelete"HKCR\Drive\shell\keluar\"</span></p>
<p class="MsoNormal" style="line-height:150%;"><span style="font-size:10pt;line-height:150%;font-family:&#34;">p3 = "Sukses di hapus!"</span></p>
<p class="MsoNormal" style="line-height:150%;"><span style="font-size:10pt;line-height:150%;font-family:&#34;">MsgBox p3,vbInformation,judul</span></p>
<p class="MsoNormal" style="line-height:150%;"><span style="font-size:10pt;line-height:150%;font-family:&#34;">else if j = vbcancel then</span></p>
<p class="MsoNormal" style="line-height:150%;"><span style="font-size:10pt;line-height:150%;font-family:&#34;">p4 = "Batal di install!"</span></p>
<p class="MsoNormal" style="line-height:150%;"><span style="font-size:10pt;line-height:150%;font-family:&#34;">MsgBox p4,vbInformation,judul</span></p>
<p class="MsoNormal" style="line-height:150%;"><span style="font-size:10pt;line-height:150%;font-family:&#34;">end if</span></p>
<p class="MsoNormal" style="line-height:150%;"><span style="font-size:10pt;line-height:150%;font-family:&#34;">end if</span></p>
<p class="MsoNormal" style="line-height:150%;"><span style="font-size:10pt;line-height:150%;font-family:&#34;">end if</span></p>
<p class="MsoNormal" style="line-height:150%;"><span style="font-size:10pt;line-height:150%;font-family:&#34;">&#60;/script&#62;</span></p>
<p class="MsoNormal" style="line-height:150%;"><span style="font-size:10pt;line-height:150%;font-family:&#34;">&#60;/job&#62;</span></p>
</blockquote>
<p class="MsoNormal" style="line-height:150%;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;">Bukalah <strong>Windows Explorer</strong>, lalu cari <em>file</em> yang bernama <strong>LogOffWin.wsf</strong>. Klik dua kali pada ikon <em>file</em> tersebut untuk mengeksekusinya. </span></p>
<p class="MsoNormal" style="line-height:150%;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;">Setelah jendela <strong>LogOffWin.wsf</strong> terbuka, silahkan klik tombol <strong>Yes</strong> untuk <em>install shortcut</em> <strong>&#62; LogOff Windows!</strong> di <strong>Start Menu</strong> atau <strong>Windows Explorer</strong>. Guna melihat perubahannya cobalah klik kanan di <strong>Start Menu</strong>, atau di salah satu <em>drive</em> maupun <em>folder</em> yang terdapat di <strong>Windows Explorer</strong>. Tampilkah <em>shortcut</em> <strong>&#62; LogOff Windows!</strong> tersebut? Menarik? Pasti!</span></p>
<p class="MsoNormal" style="line-height:150%;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;">Jika tidak menginginkan <em>shorcut</em> tersebut tampil di <strong>Start Menu</strong> atau <strong>Windows Explorer</strong>, silahkan klik tombol <strong>No</strong> untuk menghapusnya. </span></p>
<p class="MsoNormal" style="line-height:150%;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;">Tetapi jika tidak ada keinginan untuk mengeksekusi program tersebut, silahkan klik tombol <strong>Cancel</strong> untuk keluar. </span></p>
<p><span style="font-size:10pt;font-family:Verdana;">Program diatas telah di uji coba di salah satu sistem operasi keluaran Microsoft, yaitu <strong>Windows XP Professional Service Pack 2</strong>. Selamat mempraktekkan. </span></p>
<p style="text-align:center;"><img class="aligncenter" src="http://ikatama.wordpress.com/files/2008/05/gambar6.jpg" alt="" width="506" height="529" /></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[The Journey - I think I'm almost there!]]></title>
<link>http://denimadness.wordpress.com/?p=105</link>
<pubDate>Sun, 05 Oct 2008 10:34:18 +0000</pubDate>
<dc:creator>deni</dc:creator>
<guid>http://denimadness.nl.wordpress.com/2008/10/05/the-journey-i-think-im-almost-there/</guid>
<description><![CDATA[For the past several days - if you&#8217;ve been reading my blog, I have been psyching myself up (or]]></description>
<content:encoded><![CDATA[<p>For the past several days - if you've been reading my blog, I have been psyching myself up (or is it down?) for the worst by basking in the negative.  It's probably what a lot of people do.  They try to imagine the worst thing possible only to raise up to meet the challenge head on.  Despite my overall negative outlook on my journey, especially since my not living anywhere near Hollywood makes any chances of success almost non-existent, hope still exists for me and I feel that there is still a chance and all is not lost.  I tell myself that I'm a lousy salesman so I've been learning to sell.  I tell myself how impossible it will be, and yet I still try.  Even though I place a mental obstacle before me the size of the Hoover Dam, I still feel that I can climb high enough to peak over and see some prospects. I am ready.</p>
<p>My spec script, as mentioned before can be marketed as an Indy-drama.  It's sort of a romance without the sappy sweetness.  It's very character driven about two souls who have suffered loss in very different ways.  This kind of story is very hard to sell.  Plot driven action movies are easy but unfortunately I love character driven independent type films and that's what I wrote.  I wrote it because it's what I know after observing people and this one aspect of the dating world in New York City.  It was easy for me to write because I was all too familiar with the characters, having met most of them - some of whom I liked while other's I've hated.  My main female character is a hybrid of the two.  I have started many screenplays in the past and never completed any; not one, because they were too ambitious and I was young and had very little discipline.  So, this time around, I wrote about everything I saw and this required little to no research - only the ability to observe human nature at it's best and worst and with a little bit of maturity mixed into the batch, I was able to finally complete my first screenplay.</p>
<p>You know about the evaluations and the critiques and my revisions and now I'm ready to sell.  I've been stumbling over the perfect query letter for a script which is hard to market.  I've written emails to quite a few professionals in the business for their advice and their only reply is to tell me that I should buy their book.  Hogwash!  After a week and a half of typing, deleting, re-typing, deleting, and eating Snicker's bars, I finally sat down at 1am in the morning and just hammered out a query that I found quite do-able.  I quickly saved it because after 1 1/2 hours of staring at the screen, I'm afraid that it's too good to be true and I should wait until the morning, after several hours of sleep and a cup of java to see if my brain is in fact deceiving me.  But I do think that I've stumbled on to a hook that I think just might work.  It might be a bit unconventional but everything is subjective and it's not too over-the-top.</p>
<p>The next day, I read over my creation again and I couldn't help but smile.  I still might actually pull this off but only time will tell if it works.  I've thought long and hard about which direction I should go and found that considering my circumstance, the best way for me to is to pursue an agent/manager first, which means that I have to finish my second script.  I'll continue to send out query letters to production companies for this one but while that is underway, I will save up for the Hollywood Representative Directory and do my best to see a reputable agent.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Ubucleaner, limpieza del disco duro]]></title>
<link>http://buscalo.wordpress.com/?p=103</link>
<pubDate>Sun, 05 Oct 2008 07:12:49 +0000</pubDate>
<dc:creator>Alexkev</dc:creator>
<guid>http://buscalo.nl.wordpress.com/2008/10/05/ubucleaner-limpieza-del-disco-duro/</guid>
<description><![CDATA[Bueno, para los que proceden del mundo windows, mas que una buena costumbre ya es casi una mania, li]]></description>
<content:encoded><![CDATA[<p>Bueno, para los que proceden del mundo windows, mas que una buena costumbre ya es casi una mania, limpiar un disco duro utilizado por win es casi lo mismo que mantener a punto un delicado motor que no funciona a la mas minima mota de polvo. No se aun a ciencia cierta cuanto de cierto puede aplicarsele este paradigma a Ubuntu, sabemos que la carpeta personal alberga cierta basura cuando al verla con los archivos ocultos al descubierto (Control+H) y encontramos residuos de programas que hemos borrado hace tiempo, es casi seguro que en algunas carpetas de root ocurra lo mismo (voy a mirarlo en cuanto termine de escribir esta entrada jejeje) pero lo que si es seguro, es que el rendimiento a pesar de la basura, es practicamente invariable, puede ser que en ocasiones tu PC se note mas lento que antes pero es mas probable que sea por la cantidad de programas que tengas ejecutando en ese momento que a la basura acumulada.</p>
<p>En fin que navegando por los mares de costumbre he encontrado un pequeño scrip que si bien no es un programa espectacular como podria esperarse de un Ccleaner para Ubuntu, cumple con su funcion limpiadora decente y segura, no quedara como cuando instalamos el Ubuntu pero si podra eliminar bastantes residuos de los programas que hayamos instalado o probado.</p>
<p>No tiene interfaz grafica, lo cual quiere decir que ha de ejecutarse en una consola y con privilegios de root.</p>
<p>¿Que hace exactamente?</p>
<p>Aptitude (APT): Borra la cache</p>
<p>Archivos de configuracion: borra los archivos de los programas que han sido desinstalados</p>
<p>Kernels: elimina todos los kernels excepto el que este en uso</p>
<p>Papelera de reciclaje: vacia todas la papeleras de todos los usuarios a la vez<br />
Veamos como se usa:</p>
<p>Lo primero es descargar el script, para ello clica <a href="http://www.box.net/shared/u6djshq4cs" target="_blank">AQUI</a></p>
<p>Es recomendable descargarlo o moverlo despues de descargarlo a una carpeta que nos sea facil de encontrar cuando estemos en modo ROOT.</p>
<p>Abrimos una consola y escribimos:</p>
<p>sudo nautilus</p>
<p>ponemos nuestra contraseña de root y se nos abrira el nautilus.</p>
<p>Buscamos el scrip y con el boton derecho seleccionamos Propiedades  y luego clicamos en la pestaña de permisos, aqui marcaremos la casilla de Ejecucion para que se comporte como un programa.</p>
<p>Cerramos las ventanas de propiedades y echamos a correr el scrip, si todo ha ido bien, veremos en la ventana de terminal como va funcionando y limpiando, hasta que se detenga,</p>
<p>La proxima vez que queramos ejecultarlo no necesitaremos cambiar las propiedades, eso si, para que funcione hemos de entrar a nautilus con privilegios de Root, es decir, con sudo nautilus, contraseña y ejecucion del script</p>
<p>Como siempre espero que mis expplicaciones no se vean muy complicadas y que el script os sea tan util como a mi.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[CUMHURBAŞKANI GÜL, TALABANİ İLE GÖRÜŞTÜ]]></title>
<link>http://turknews.wordpress.com/?p=337</link>
<pubDate>Sat, 04 Oct 2008 22:44:12 +0000</pubDate>
<dc:creator>manex</dc:creator>
<guid>http://turknews.nl.wordpress.com/2008/10/04/cumhurbaskani-gul-talabani-ile-gorustu/</guid>
<description><![CDATA[film izle
 CUMHURBAŞKANI GÜL, TALABANİ İLE GÖRÜŞTÜ
Cumhurbaşkanı Gül, Irak Cumhurbaşkan]]></description>
<content:encoded><![CDATA[<p><a title="film izle, filim izle" href="http://www.cinefilmizle.com" target="_self">film izle</a><br />
<img style="margin-right:10px;" src="http://www.ebmhaber.com/resim.php?sayi=75830" border="0" alt="CUMHURBAŞKANI GÜL, TALABANİ İLE GÖRÜŞTÜ" align="left" /> <strong>CUMHURBAŞKANI GÜL, TALABANİ İLE GÖRÜŞTÜ</strong></p>
<div style="font-size:10pt;"><strong>Cumhurbaşkanı Gül, Irak Cumhurbaşkanı Talabani ile bir telefon görüşmesi yaparak, hain saldırının Türk topraklarına karşı bir saldırı olduğunu vurguladı ve Irak hükümetinin gerekli tedbirleri derhal alması beklentisini iletti.</strong></div>
<p>Cumhurbaşkanı Abdullah Gül, Irak Cumhurbaşkanı Celal Talabani ile bir telefon görüşmesi yaparak, Şemdinli'deki hain saldırının Türk topraklarına karşı bir saldırı olduğunu vurguladı ve Irak hükümetinin gerekli tedbirleri derhal alması beklentisini iletti.</p>
<p>Cumhurbaşkanlığı Basın Merkezinden yapılan açıklamada, Irak Cumhurbaşkanı Talabani'nin, akşam saatlerinde Cumhurbaşkanı Gül'ü telefonla aradığı bildirildi.</p>
<p>Açıklamaya göre Talabani, Hakkari'de düzenlenen terör saldırısını şiddetle kınadığını bildirdi ve bayram ertesinde yapılan bu terör saldırısının hem Türklere hem Kürtlere, tüm Irak halkına ve dini değerlere yönelik bir suç olduğunu belirtti. Talabani, ayrıca Üçlü Güvenlik Komitesinin derhal toplanmasını önerdi.</p>
<p>Cumhurbaşkanı Gül ise ''haince terör eyleminin Türk topraklarına karşı bir saldırı ve uluslararası bir terör eylemi'' olduğuna işaret ederek, Irak Hükümetinin gerekli tedbirleri derhal alması beklentisini iletti.</p>
<p>Gül, ''Türkiye ile Irak arasındaki ilişkilerde başlatılan yeni olumlu atmosferi zehirlemek isteyen teröristlere izin verilmemesi gerektiğini'' de vurguladı.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Miniscript per backup compressi]]></title>
<link>http://gnulinuxarea.wordpress.com/?p=255</link>
<pubDate>Sat, 04 Oct 2008 17:22:10 +0000</pubDate>
<dc:creator>gnulinuxarea</dc:creator>
<guid>http://gnulinuxarea.nl.wordpress.com/2008/10/04/miniscript-per-backup-compressi/</guid>
<description><![CDATA[Il backup è un requisito essenziale per una sana vita informatica. A volte può essere comodo dispo]]></description>
<content:encoded><![CDATA[<p>Il backup è un requisito essenziale per una sana vita informatica. A volte può essere comodo disporre velocemente<strong>¹</strong> di un backup completo della nostra directory home. Con <code>tar</code> possiamo realizzare questa operazione.</p>
<p>Il comando è il seguente:</p>
<p><code>tar -czf /percorso/backup/nome_backup$(date +"%Y%m%d").tar.gz /percorso/origine/</code></p>
<p>Scriverlo tutto ogni volta è un pò scomodo per cui possiamo salvarlo sotto forma di script.</p>
<p>Creare un file con un editor di testo, nominarlo in maniera sensata e assegnarli l'estensione .sh</p>
<p><code>nano backup_compresso_home.sh</code></p>
<p>Inserire il seguente contenuto</p>
<p><code>#!/bin/sh<br />
#esegue il backup compresso della home. notare che il percorso di origine si trova alla fine del comando<br />
echo "backup in corso..."<br />
tar -czf /percorso/backup/nome_backup$(date +"%Y%m%d").tar.gz /percorso/origine/<br />
echo "backup eseguito!"</code></p>
<p>Salvare lo script premendo successivamente le combinazioni di tasti <code>CTRL+X</code> e <code>CTRL+Y</code></p>
<p>Rendere eseguibile lo script</p>
<p><code>$ chmod 755 backup_compresso_home.sh</code></p>
<p>Ogni volta che desideriamo lanciare lo script sarà sufficiente il seguente comando</p>
<p><code>$ ./backup_compresso_home.sh</code></p>
<p><strong>¹</strong>ovviamente dipende molto anche dalla quantità di dati da salvare..</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[O caso Meireles (1ª parte)]]></title>
<link>http://sucataespacial.wordpress.com/?p=104</link>
<pubDate>Sat, 04 Oct 2008 15:18:43 +0000</pubDate>
<dc:creator>sucataespacial</dc:creator>
<guid>http://sucataespacial.nl.wordpress.com/2008/10/04/o-caso-meireles-1%c2%aa-parte/</guid>
<description><![CDATA[&#8220;s-è-m-r-e-h-d’- e-r-r-e-t&#8221;&#8230;
O Inspector Nunes da Ponte soletrou lentamente a m]]></description>
<content:encoded><![CDATA[<p><span>"s-è-m-r-e-h-d’- e-r-r-e-t"...</span></p>
<p>O Inspector Nunes da Ponte soletrou lentamente a marca do <em>aftershave</em> reflectida no espelho enquanto escanhoava a barba, devagar. O seu pensamento vagueava entre os motivos da última discussão com a mulher, antes de adormecer. e as razões que terão levado o Departamento de Investigação Criminal de o acordar ás cinco da manhã de um feriado de Santo António?</p>
<p><span>A Dona Isaura Meireles sofria de arteroses múltiplas, nas mãos, nos pés, nos joelhos e na anca. Mas também de arteriosclerose, diabetes, aerofagia, ataques de pânico e obesidade mórbida. Nada que a impedisse de comer umas Tripas à moda do Porto regadas com um vinho maduro do Dão, em clandestinidade, no quarto de banho, longe do olhar do seu marido, Fernando Meireles.</span></p>
<p><span>O “Pélé” já tinha <em>ido dentro</em> por pequenos furtos e posse de substâncias ilícitas, mas nunca ninguém o levou a sério e até, um dia, um Juiz acabou por gabar-lhe na sentença os dotes futebolísticos. Contudo, “Pélé” era uma referência mítica da criminalidade violenta em Alhos Vedros.</span></p>
<p><span>O Sr. Fernando Meireles, surdo bi-lateral profundo  em consequência do disparo acidental de um morteiro na véspera da partida para a guerra colonial, acabou por se estabelecer como comerciante do ramo da alimentação e bebidas abrindo um Tasco junto à estação do comboio, por baixo da casa arrendada. Dona Isaura seria a sua primeira empregada para todo o serviço e, mais tarde, a sua verdadeira mulher.</span></p>
<p><span>(continua)</span></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Free Download: Photoshop Brush Controller]]></title>
<link>http://thaicardesign.wordpress.com/?p=283</link>
<pubDate>Sat, 04 Oct 2008 15:08:31 +0000</pubDate>
<dc:creator>imdwordpress</dc:creator>
<guid>http://thaicardesign.nl.wordpress.com/2008/10/04/free-download-photoshop-brush-controller/</guid>
<description><![CDATA[
PS brush controller เป็น script สำหรับ Photoshop ที่แจกให้ด]]></description>
<content:encoded><![CDATA[<p style="text-align:left;"><a href="http://www.carbodydesign.com/archive/2008/09/30-photoshop-brush-controller/"><img class="aligncenter" src="http://www.carbodydesign.com/archive/2008/09/30-photoshop-brush-controller/_Photoshop-Brush-Controller.jpg" alt="" width="355" height="266" /></a></p>
<p>PS brush controller เป็น script สำหรับ Photoshop ที่แจกให้ดาวน์โหลดได้ฟรี ซึ่ง จะเปิดความสามารถในการควบคุมขนาดของ brush ใน PS ได้ด้วยเมาส์หรือปากกาแท็บเบล็ต เหมือนกับใน Photoshop CS4 และยังสามารถปรับ opacity และ flow ได้ด้วย</p>
<p><strong>บทคัดย่อ</strong></p>
<p>Photoshop Brush Controller เป็น free script สำหรับ Adobe Photoshop (บน Windows เท่านั้นนะครับ) เขียนขึ้นโดย <strong><a href="http://www.attic22.com/">Marco Traverso</a></strong><br />
ซึ่งจะทำให้สามารถควบคุมขนาด brush, ค่า opacity รวมถึงค่า flow ได้โดยการกดค้าง CTRL + เมาส์ขวาและลากเมาส์<br />
ลากเมาส์ไปทางขวา &#62; เพิ่มขนาด Brush<br />
ลากเมาส์ไปทางซ้าย&#62; ลดขนาด Brush<br />
ลากเมาส์ไปข้างบน&#62; ปรับค่า opacity<br />
ลากเมาส์ไปข้างล่าง&#62; ปรับค่า flow</p>
<p>script ถูกสร้างโดย <strong><a href="http://www.autohotkey.com/">AutoHotKey</a></strong> และยังอนุญาตให้เราปรับแต่งปุ่มกดที่จะใช้ หรือ ความไวต่อสัมผัส (sensitivity) อ่านเนื้อหาด้านล่างเพื่อรายละเอียด (แนะนำให้อ่าน) หรือ scroll ลงไปด้านล่าง page เพื่อ<a href="http://www.carbodydesign.com/archive/2008/09/30-photoshop-brush-controller/#download"> ดาวน์โหลด</a></p>
<p><a href="http://www.attic22.com/it/2008/09/30/photoshop-brush-controller/">บทความต้นฉบับ</a> เป็นภาษาอิตาลีซึ่งอธิบายเกี่ยวกับ script ตัวนี้อยู่ที่ <a href="http://www.attic22.com/">attic22</a> บลอกเปิดใหม่ของ <a href="http://carbodydesign-com/info/about/">Marco Traverso</a> ครับ</p>
<p><!--more--></p>
<p><strong>บทนำ</strong></p>
<p><strong></strong><br />
อุปกรณ์มาตรฐานของการทำงาน sketch และลงสีใน Adobe Photoshop ก็คือ Brush Tool และ แม้ว่าจะมี brush มาตรฐาน รวมถึง brush ที่สามารถปรับแต่งได้ให้คุณเลือกใช้อย่างมากมายแล้วก็ตาม มันก็ยังดีกว่ามากหากว่าคุณสามารถเปลี่ยนขนาดเส้นผ่านศูนย์กลางของ brush ได้โดยไม่ต้องเปลี่ยน brush เลย</p>
<p><a href="http://www.carbodydesign.com/archive/2008/09/30-photoshop-brush-controller/Cintiq-21UX-lg.jpg"><img class="aligncenter" src="http://www.carbodydesign.com/archive/2008/09/30-photoshop-brush-controller/Cintiq-21UX.jpg" alt="" width="355" height="262" /></a><br />
สำหรับในเวอร์ชั่น CS3 เราสามารถทำได้โดยวิธีดังนี้:<br />
- โดยการปรับ slider ใน option bar ด้านบนสุด<br />
- โดยการคลิกเมาส์ขวา แล้วเลื่อน slider ใน pop-up dialog ที่ปรากฎขึ้นมา<br />
- โดยการใช้ปุ่มลัดบนคีย์บอร์ด (เพิ่ม / ลดขนาด brush)</p>
<p>และยังสามารถทำได้ด้วยการใช้ graphic tablet เพื่อเปลี่ยนขนาดของเส้นผ่านศูนย์กลางของ brush ตามแรงกดหรือการเอียงของปากกา: หรือให้สะดวกกว่านั้นคือใช้แรงกดของปากกาเพื่อควบคุมค่า opacity เพียงอย่างเดียว โดยจะมีประโยชนที่์ในการควบคุมขนาดของ brush จะแม่นยำมากขึ้น</p>
<p>หนึ่งในความสามารถใหม่ของ Photoshop CS4 ก็คือ สามารถเปลี่ยนขนาดของ brush ได้โดยการคลิก Ctrl +Alt + ปุ่มเมาส์ซ้าย แล้วลากเมาส์ (ดู <a href="http://www.peachpit.com/podcasts/episode.aspx?e=4a5711d7-09e2-4e0a-9d85-df0addbaffdb">video</a>)</p>
<p>script ดังกล่าวนี้สนับสนุนการใช้งานดังกล่าวบน Photoshop เวอร์ชั่นเก่า (ต้องเป็นเวอร์ชั่นที่ support ปุ่มลัดบนคีย์บอร์ด) และยังทำให้สามารถปรับแต่งค่า opacity และค่า flow</p>
<p><em>Note: ด้วยว่ามีพื้นฐาน script อยู่บน AutoHotKey ซึ่งเป็นโปรแกรม utility ฟรีสำหรับ Windows เท่านั้น, script PS Brush Controller จึงทำงานได้เฉพาะบน Windows แต่คาดว่าน่าจะนำแนวคิดเดียวกันนี้ไปดัดแปลงใช้กับ script ใน OSx  ได้</em></p>
<p><strong>ทำงานได้อย่างไร</strong></p>
<p>เมื่อ script ได้ทำงานในเบื้องหลังของ Windows ไปครั้งหนึ่งแล้ว การควบคุมจะเริ่มทำงานด้วยการกดปุ่ม CTRL+เมาส์ขวา ในโปรแกรม (สามารถปรับแต่ง เปลี่ยนปุ่มเองได้)</p>
<p>ระหว่างที่ยังกดปุ่มอยู่นั้น สามารถเลื่อนเมาส์ไปได้ใน 4 ทิศทาง / พื้นที่:</p>
<p><a href="http://www.carbodydesign.com/archive/2008/09/30-photoshop-brush-controller/ps-brush-controller-scheme-lg.jpg"><img class="aligncenter" src="http://www.carbodydesign.com/archive/2008/09/30-photoshop-brush-controller/ps-brush-controller-scheme.jpg" alt="" width="355" height="355" /></a><br />
ทางขวา &#62; เพิ่มขนาด brush - เมื่อเลื่อน cursor ไปด้านขวาจากตำแหน่งปกติ script จะส่งคำสั่ง เพิ่มขนาด brush  อย่างต่อเนื่องตราบที่ยังคลิกเมาส์ค้างไว้ที่ตำแหน่งเดิม<br />
ทางซ้าย &#62;  ลดขนาด brush -  เมื่อเลื่อน cursor ไปด้านซ้ายจากตำแหน่งปกติ script จะส่งคำสั่ง ลดขนาด brush  อย่างต่อเนื่องตราบที่ยังคลิกเมาส์ค้างไว้ที่ตำแหน่งเดิม<br />
ขึ้น &#62; ตั้งค่า opacity: เมื่อเลื่อน cursor ไปด้านบนจากตำแหน่งปกติ script จะส่งคำสั่งเป็นค่าตัวเลข 1,2,3 ... 0 ซึ่งเป็นการควบคุมค่า opacity ตัวเลขจะขึ้นมากน้อยขึ้นอยู่กับตำแหน่งของเมาส์ ยิ่ง cursor ขึ้นไปสูงค่า opacity ก็ยิ่งสูงตาม (ไปจนถึง 100%).<br />
ลง &#62; ตั้งค่า Brush Flow: ในทางเดียวกัน  เมื่อเลื่อน cursor ไปด้านล่าง script จะส่งคำสั่งของปุ่มลัด Shift+ปุ่มตัวเลขซึ่งใช้ควบคุมค่า flow</p>
<p><em>Note: สามารถปล่อยปุ่ม CTRL ได้เมื่อกดเมาส์ขวาแล้ว</em></p>
<p><em><br />
</em><strong>การติดตั้ง</strong></p>
<p>PS Brush Controller มาในรูปแบบของไฟล์ zipซึ่งประกอบไปด้วย 3 file ดังนี้ครับ<br />
- <strong>PS Brush Size Controller.ini</strong><br />
ไฟล์ .ini นี้ประกอบไปด้วย setting ที่จะถูกใช้โดย script - เช่น ปุ่มลัดบน keyboard, ค่า sensitivity รายละเอียดการปรับแต่งดูได้ด้านล่าง<br />
- <strong>PS Brush Size Controller.ahk</strong><br />
ไฟล์ .ahk ประกอบด้วย code ของ script และต้องใช้ร่วมกับโปรแกรม AutoHotKey<br />
- <strong>PS Brush Size Controller.exe</strong><br />
ไฟล์ .exe เป็นเวอร์ชั่นที่รวมสมบูรณ์แล้วของ script ซึ่งไม่จำเป็นต้องติดตั้ง AutoHotKey ก็ใช้ได้</p>
<p>การติดตั้ง script:<br />
Unzip ไฟล์ลงใน ที่ไหนซักที่<br />
เปิดไฟล์ .ini ด้วย Notepad หรือโปรแกรม text editor อื่นๆ แล้วตรวจดูปุ่มลัด เพิ่มขนาด/ลดขนาด ว่าตรงกับที่คุณใช้อยู่ใน Photoshop หรือไม่ - รายละเอียดการปรับแต่งดู<a href="http://www.carbodydesign.com/archive/2008/09/30-photoshop-brush-controller/#customization">ด้านล่าง</a><br />
รันไฟล์ .exe หรือ - ถ้าคุณมีโปรแกรม AutoHotKey ติดตั้งไว้อยู่แล้วก็สามารถรันไฟล์ .ahk แทนได้</p>
<p>คุณยังสามารถ copy ลิงค์ของไฟล์ script (ทำได้โดยการสร้าง shortcut) ลงไปยัง Startup folder ใน start menu ซึ่งจะทำให้โปรแกรมเปิดการทำงานอัตโนมัติพร้อม Windows</p>
<p>script นั้น<strong>ถูกทดสอบการทำงานใน Adobe Photoshop CS3 เท่านั้น</strong> แต่มันก็น่าจะสามารถทำงานบนเวอร์ชั่นเก่ากว่านั้นได้ด้วย อย่างไรก็ตามหากคุณมีปัญหา กรุณาส่ง email กลับมาที่เราและเราจะพยายามแก้ไขมัน<br />
<strong>รายละเอียดเพิ่มเติม</strong><br />
- controller script นี้ยังสามารถทำงานกับอุปกรณ์หรือ tools อื่นที่มีพื้นฐานเดียวกันกับ brush ได้ด้วยเช่น eraser, burn, dodge  และอื่นๆ<br />
- ด้วยความที่ script นี้ไม่ใช่ ชุดคำสั่งปกติของ Photoshop การกดปุ่ม CTRL+ เมาส์ขวา จึงเป็นการเริ่มทำงานของ script ทันทีแม้ว่า brush tool จะไม่ได้ถูกเรียกใช้อยู่ก็ตาม ซึ่งนี่จะเป็นการปิดคำสั่งอื่นที่ใช้การกด CTRL+ เมาส์ขวา นี้ใน Photoshop - ตัวอย่างเช่นเมื่อกด CTRL+เมาส์ขวา แทนที่ layers selection menu จะเปิดขึ้นมาก็จะไม่เปิด<br />
- ปัญหาดังกล่าวควรจะถูกนำมาพิจารณาเมื่อคุณคิดจะเปลี่ยนหรือแก้ไขปุ่มเริ่มการทำงานใหม่ในไฟล์ setting ยกตัวอย่างเช่น ถ้าคุณตั้งปุ่มสั่งให้เริ่มการทำงานของ script เป็น CTRL+เมาส์ซ้าย นี่จะเป็นการแทนที่ / ปิดฟังก์ชั่นอื่นของการกดปุ่มแบบนี้ด้วยคือ - การเลือกหลาย layer, ปุ่มลัดของ move tool และ ปุ่มลัดคำสั่ง layer mask selection ดังนั้น ถ้าหาปุ่มที่ไม่ค่อยได้ใช้มาเป็นปุ่ม 'เริ่มการทำงาน' ของ script ได้ก็ยิ่งดีครับ<br />
- Photoshop Brush Controller เผยแพร่ภายใต้ GNU General Public License<br />
<strong>การปรับแต่ง</strong></p>
<p>script นั้นมาพร้อมกับไฟล์ .ini ซึ่งทำการ setting ได้ด้วย notepad, wordpad หรือโปรแกรม text editor อื่นๆเพื่อปรับแต่งค่าต่อไปนี้:<br />
ค่า <strong>brush_increase_size_hotkey</strong> คือคำสั่งเพิ่มขนาด brush (ค่าปกติของ Photoshop อยู่ที่ ' ] ' )<br />
ค่า <strong>brush_decrease_size_hotkey</strong> คือคำสั่งลดขนาด brush (ค่าปกติของ Photoshop อยู่ที่ ' [ ' )<br />
ค่า <strong>Activation_Hotkey</strong> และ <strong>mouse_button</strong> คือการตั้งปุ่มลัดบนคีย์บอร์ด / ปุ่มเมาส์ที่จะใช้เปิดการทำงานของ Brush Controller<br />
ค่าปกติคือ Ctrl + เมาส์ขวา</p>
<p>เราสามารถใช้สัญลักษณ์แทนปุ่มต่างๆได้ดังนี้</p>
<p>- ! แทน 'Alt'</p>
<p>- ^ แทน Ctrl</p>
<p>- # แทนปุ่ม Windows</p>
<p>- + แทนปุ่ม Shift</p>
<p>- LButton แทนปุ่มเมาส์ซ้าย</p>
<p>- RButton แทนเมาส์ขวา</p>
<p>ตัวอย่าง:</p>
<p>Activation_Hotkey = ^!<br />
mouse_button = RButton</p>
<p>คือการตั้งค่าปุ่มเริ่มทำงานของ script เป็น Ctrl + Alt + เมาส์ขวา<br />
min_x_offset คือการเว้นระยะ offset ออกไปในแนวนอน สำหรับพื้นที่ เพิ่ม / ลดขนาด brush - ค่าปกติอยู่ที่ 1<br />
y_tolerance ตั้งค่าความสูงสำหรับพื้นที่ เพิ่ม / ลดขนาด brush ด้านข้าง<br />
min_y_offset sets  คือการเว้นระยะ offset ออกไปในแนวตั้ง สำหรับพื้นที่เพิ่ม / ลดค่า opacity/flow<br />
x_tolerance ตั้งค่าความกว้างสำหรับพื้นที่ เพิ่ม / ลดค่า opacity/flow ด้านบนและล่าง<br />
y_mag_factor ตั้งค่าความสูงสำหรับพื้นที่เพิ่ม / ลดค่า flow/opacity<br />
x_slp และ y_slp ตั้งค่า refresh time ของ script สำหรับการควบคุมขนาด brush (x) และการเพิ่ม / ลดค่า opacity / flow (y)<br />
<strong>Download</strong></p>
<p style="text-align:center;">Photoshop Brush Controller</p>
<p style="text-align:center;"><a href="http://www.carbodydesign.com/modules/download.php?f=PS-Brush-Controller-10.zip"><img class="aligncenter" src="http://www.carbodydesign.com/images/icons/btn-download.png" alt="" width="180" height="55" /></a></p>
<p style="text-align:left;">
<p style="text-align:left;">แปลผิดแปลตกก็ขออภัยนะครับ ยาวเหลือเกิน แปลอยู่ตั้งหลายวัน</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Feedback for jsc]]></title>
<link>http://zproxy.wordpress.com/?p=384</link>
<pubDate>Sat, 04 Oct 2008 08:56:59 +0000</pubDate>
<dc:creator>zproxy</dc:creator>
<guid>http://zproxy.nl.wordpress.com/2008/10/04/feedback-for-jsc/</guid>
<description><![CDATA[Which one is better ? My heart goes to JSC as I&#8217;m fond of LINQ, it&#8217;s anonymous delegates]]></description>
<content:encoded><![CDATA[<blockquote><p>Which one is better ? My heart goes to JSC as I'm fond of LINQ, it's anonymous delegates syntax and extension methods, even if Script# seems better documented.<br />
I've successfully created my first Flash application using JSC and I'm very proud ! So it really works ! Even if there are syntax tricks and the needs to know basic flash programming to make it work.</p></blockquote>
<p><a rel="bookmark" href="http://www.softlion.com/blogs/post/2008/10/04/Script-or-JSC-.aspx">Read a post "Script# or JSC ?"</a> by SoftLion</p>
<p>Update: JSC has been mentioned on <a href="http://d.hatena.ne.jp/GX999/20081004/1223105674">Diary of the GX999</a>.</p>
<p>.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Fame Fun]]></title>
<link>http://wtfux.wordpress.com/?p=47</link>
<pubDate>Sat, 04 Oct 2008 07:55:59 +0000</pubDate>
<dc:creator>wtfux</dc:creator>
<guid>http://wtfux.nl.wordpress.com/2008/10/04/fame-fun/</guid>
<description><![CDATA[I&#8217;ve coded some Automaton scripts for a friend and this is what he did with the scripts: He ha]]></description>
<content:encoded><![CDATA[<p>I've coded some Automaton scripts for a friend and this is what he did with the scripts: He had fun! He owned Fly For Fame a bit.<br />
<!--more--><br />
<a href="http://wtfux.files.wordpress.com/2008/10/flyff00004.jpg"><img class="alignnone size-medium wp-image-48" title="flyff00004" src="http://wtfux.wordpress.com/files/2008/10/flyff00004.jpg?w=300" alt="" width="300" height="225" /></a></p>
<p><a href="http://wtfux.files.wordpress.com/2008/10/flyff00050.jpg"><img class="alignnone size-medium wp-image-49" title="flyff00050" src="http://wtfux.wordpress.com/files/2008/10/flyff00050.jpg?w=300" alt="" width="300" height="225" /></a></p>
<p><a href="http://wtfux.files.wordpress.com/2008/10/lolbag.jpg"><img class="alignnone size-medium wp-image-50" title="lolbag" src="http://wtfux.wordpress.com/files/2008/10/lolbag.jpg?w=300" alt="" width="300" height="225" /></a></p>
<p><a href="http://wtfux.files.wordpress.com/2008/10/haigm.jpg"><img class="alignnone size-medium wp-image-51" title="haigm" src="http://wtfux.wordpress.com/files/2008/10/haigm.jpg?w=300" alt="" width="300" height="225" /></a></p>
<p><a href="http://wtfux.files.wordpress.com/2008/10/flyff00056.jpg"><img class="alignnone size-medium wp-image-59" title="flyff00056" src="http://wtfux.wordpress.com/files/2008/10/flyff00056.jpg?w=300" alt="" width="300" height="225" /></a></p>
<p><a href="http://wtfux.files.wordpress.com/2008/10/flyff00003.jpg"><img class="alignnone size-medium wp-image-60" title="flyff00003" src="http://wtfux.wordpress.com/files/2008/10/flyff00003.jpg?w=300" alt="" width="300" height="225" /></a></p>
<p><a href="http://wtfux.files.wordpress.com/2008/10/3t31b3tmp.jpg"><img class="alignnone size-full wp-image-61" title="3t31b3tmp" src="http://wtfux.wordpress.com/files/2008/10/3t31b3tmp.jpg" alt="" width="450" height="1094" /></a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Script 'Een familiezaak']]></title>
<link>http://aliceverheij.wordpress.com/?p=1017</link>
<pubDate>Sat, 04 Oct 2008 07:05:04 +0000</pubDate>
<dc:creator>Alice Verheij</dc:creator>
<guid>http://aliceverheij.nl.wordpress.com/2008/10/04/script-een-familiezaak/</guid>
<description><![CDATA[
Voor de geïnteresseerden kan hier het script van &#8216;Een familiezaak&#8217; worden gedownload]]></description>
<content:encoded><![CDATA[<p style="text-align:center;"><a href="http://aliceverheij.files.wordpress.com/2008/10/familiezaak2.jpg"><img class="alignnone size-large wp-image-1023" title="familiezaak2" src="http://aliceverheij.wordpress.com/files/2008/10/familiezaak2.jpg?w=500" alt="" width="500" height="333" /></a></p>
<p>Voor de geïnteresseerden kan <a href="http://aliceverheij.files.wordpress.com/2008/10/familiezaak-definitief.pdf">hier</a> het script van 'Een familiezaak' worden gedownload. 'Een familiezaak' is naar een idee van mij geschreven door mij en Ellen Boekelaar. Het is in juni 2007 opgevoerd in het Werftheater in Utrecht onder regie van Ida van de Lagemaat. Meer informatie over die voorstellingen kan gelezen worden op <a href="http://familiezaak.wordpress.com" target="_blank">deze plek</a>.</p>
<p>Uiteraard is er sprake van copyright<strong>. </strong>Gebruik van het script kan daarom uitsluitend met toestemming van de auteurs plaatsvinden. Voor informatie kan natuurlijk contact met mij worden opgenomen.</p>
<p><a href="http://aliceverheij.files.wordpress.com/2008/10/familiezaak21.jpg"><img class="alignnone size-medium wp-image-1026" title="familiezaak21" src="http://aliceverheij.wordpress.com/files/2008/10/familiezaak21.jpg?w=200" alt="" width="200" height="300" /> </a><a href="http://aliceverheij.files.wordpress.com/2008/10/familiezaak3.jpg"><img class="alignnone size-medium wp-image-1027" title="familiezaak3" src="http://aliceverheij.wordpress.com/files/2008/10/familiezaak3.jpg?w=197" alt="" width="197" height="300" /> </a><a href="http://aliceverheij.files.wordpress.com/2008/10/familiezaak4.jpg"><img class="alignnone size-medium wp-image-1029" title="familiezaak4" src="http://aliceverheij.wordpress.com/files/2008/10/familiezaak4.jpg?w=199" alt="" width="199" height="300" /> </a><a href="http://aliceverheij.files.wordpress.com/2008/10/familiezaak5.jpg"><img class="alignnone size-medium wp-image-1032" title="familiezaak5" src="http://aliceverheij.wordpress.com/files/2008/10/familiezaak5.jpg?w=183" alt="" width="183" height="300" /></a></p>
<p>Alice</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Invite Contributors Pre-launch - Make money and build your list]]></title>
<link>http://contributornews.wordpress.com/?p=4</link>
<pubDate>Fri, 03 Oct 2008 23:33:49 +0000</pubDate>
<dc:creator>htnmedia</dc:creator>
<guid>http://contributornews.nl.wordpress.com/2008/10/03/invite-contributors-pre-launch-make-money-and-build-your-list/</guid>
<description><![CDATA[ 
Hey, you really should check this site out
by Brad Smith and David Canham!

These guys are puttin]]></description>
<content:encoded><![CDATA[<p> </p>
<pre>Hey, you really should check this site out
by Brad Smith and David Canham!

These guys are putting on a massive
firesale and need YOU to join as a contributor here,
<a href="http://htn-marketing.com/firesale" target="_blank">http://htn-marketing.com/firesale</a>

Here's how it works, you signup and get
your product setup. Now these aren't
giveaway gifts because this is NOT a
giveaway.

They are only accepting products that must
be sold and have no giveaway rights. Plus
it must be able to be packaged or bundled
so be sure to check your rights certificate.

Then on launch day you invite members
from your list and in order for your referrals
to get the products they have to upgrade
and you get paid commissions on all your
referrals that upgrade.

Now this site is only going to be open for
7 days, Thats it! And then it's gone!

So you need to get in now and get your
product setup, there is not much time.

You can find out more by going here
<a href="http://htn-marketing.com/firesale" target="_blank">http://htn-marketing.com/firesale</a>

So what are you doing still reading this
message? Go signup now before it's  too
late!

Sincerely,
Martin</pre>
]]></content:encoded>
</item>
<item>
<title><![CDATA[This country has been attacked with nuclear weapons.]]></title>
<link>http://dogsounds.wordpress.com/?p=671</link>
<pubDate>Fri, 03 Oct 2008 20:04:14 +0000</pubDate>
<dc:creator>dogsounds</dc:creator>
<guid>http://dogsounds.nl.wordpress.com/2008/10/03/this-country-has-been-attacked-with-nuclear-weapons/</guid>
<description><![CDATA[
The National Archives have released a script, written by the BBC and the government in the 1970]]></description>
<content:encoded><![CDATA[<p style="text-align:center;"><a href="http://dogsounds.wordpress.com/2008/10/03/this-country-has-been-attacked-with-nuclear-weapons/"><img class="aligncenter size-full wp-image-672" title="nuclear explosion" src="http://dogsounds.wordpress.com/files/2008/10/untitled.jpg" alt="" width="450" height="382" /></a></p>
<p style="text-align:justify;"><span style="color:#ff9900;">The National Archives have released a script, written by the BBC and the government in the 1970's, that was to be aired on the radio following a nuclear attack on Britain.</span></p>
<p style="text-align:justify;"><span style="color:#ff9900;">The cold war was still going strong, and tensions were often high. Nowadays, such a message would be pretty pragmatic, stating simply <em>"This country has been attacked with nuclear weapons. You're all pretty much fucked. Good luck with that."</em> The full script is after the jump.</span> <!--more--></p>
<p style="text-align:justify;">But back in the '70's, the public was often provided with advice that, looking back, is quaint and outdated. Anyone remember the public information films that suggested you take a door off its hinges and place it against a wall, to hide behind? Because we all know that an MDF door can protect you from 1000-mile an hour winds at several thousand degrees, right? But at that time, to a kid like me of five or six who had an air-raid siren on the roof of his school and was used to hearing it be tested every month, it was scary stuff.</p>
<p style="text-align:justify;">The script is perhaps a little more pragmatic than that, but still very BBC in its quaintness, advising you to <em>avoid flushing the toilet until advised to do so</em>, to <em>stay in your own homes as walls and roofs offer substantial protection</em>, and to <em>only turn your radio on every two hours to listen to the emergency broadcasts, to save battery life</em>.</p>
<p style="text-align:justify;"><a href="http://dogsounds.files.wordpress.com/2008/10/untitled-1.jpg"><img class="aligncenter size-full wp-image-673" title="BBC Nuclear Attack Broadcast" src="http://dogsounds.wordpress.com/files/2008/10/untitled-1.jpg" alt="" width="437" height="698" /></a></p>
<p style="text-align:justify;">Nowadays, of course, the first thing to go through the countless millions of chav minds that we seem to be saddled with in this Godforsaken country would be either which car they would TWOK first, or which store they would loot. <a href="http://news.bbc.co.uk/1/hi/uk/7648042.stm" target="_blank">BBC</a></p>
<p style="text-align:justify;"><iframe src='http://digg.com/api/diggthis.php?u=http%3A%2F%2Fdigg.com%2Fodd_stuff%2FThis_country_has_been_attacked_with_nuclear_weapons' height='82' width='55' frameborder='0' scrolling='no' style='float: right; margin-left: 10px; margin-bottom: 5px; padding: 4px 0 2px 4px; background: #fff;'></iframe></p>
<p style="text-align:justify;"> </p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Bienvenue]]></title>
<link>http://ungarcon.wordpress.com/?p=3</link>
<pubDate>Fri, 03 Oct 2008 18:49:20 +0000</pubDate>
<dc:creator>phoenix2009</dc:creator>
<guid>http://ungarcon.nl.wordpress.com/2008/10/03/en-cours-de-creation/</guid>
<description><![CDATA[Bienvenue sur le blog ou vous pourrez suivre la création étape par étape du film : &#8216;Un gar]]></description>
<content:encoded><![CDATA[<p>Bienvenue sur le blog ou vous pourrez suivre la création étape par étape du film : 'Un garçon'.<br />
Sur ce blog vous pourrez laisser vos avis, une demande et surtout nous contacter pour participer au film et à son élaboration.</p>
<p>Pour le moment nous en sommes au tout début de l'élaboration de ce chantier.<br />
Le script est en cours d'écriture et nous pensons déjà à quelques acteurs pour les différents rôles mais rien de bien concret.</p>
<p>Dans un mois nous vous dévoilerons le synopsis complet du script, en attendant, découvrez ici dès demain les premières ébauches de certaines scènes du film.<br />
Puis la semaine prochaine, vous découvrirez la première actrice à rejoindre le casting de 'Un garçon'.</p>
<p>A très bientôt.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Napalovanie CD/DVD v shelle]]></title>
<link>http://cinan.wordpress.com/?p=142</link>
<pubDate>Fri, 03 Oct 2008 18:10:49 +0000</pubDate>
<dc:creator>cinan</dc:creator>
<guid>http://cinan.nl.wordpress.com/2008/10/03/napalovanie-cddvd-v-shelle/</guid>
<description><![CDATA[Prehlad najpouzivanejsich prikazov pre napalovanie CD/DVD
CD
Vymazanie CD
wodim -v dev=/dev/dvd -bla]]></description>
<content:encoded><![CDATA[<p>Prehlad najpouzivanejsich prikazov pre napalovanie CD/DVD<!--more Pokracovat--></p>
<h2>CD</h2>
<h3>Vymazanie CD</h3>
<blockquote><p><code>wodim -v dev=/dev/dvd -blank=fast</code></p></blockquote>
<h3>Napalenie ISO obrazu</h3>
<blockquote><p><code>wodim -v dev=/dev/dvd isoimage.iso</code></p></blockquote>
<h3>Napalenie suborov z disku</h3>
<p>Najprv sa vytvori image a potom sa napali</p>
<blockquote><p><code>mkisofs -V nazov_CD -J -r -o image.iso /adresar/ &#124; wodim -v dev=/dev/dvd image.iso</code></p></blockquote>
<p>alebo rychlejsou cestou</p>
<blockquote><p><code>genisoimage -V nazov_CD -J -r /adresar/ &#124; wodim -v dev=/dev/dvd -</code></p></blockquote>
<p>(ta pomlcka na konci je tiez dolezita)</p>
<h2>DVD</h2>
<h3>Vymazanie DVD</h3>
<blockquote><p><code>dvd+rw-format /dev/dvd</code></p></blockquote>
<h3>Napalenie ISO obrazu</h3>
<blockquote><p><code>growisofs -Z /dev/dvd=/cesta/k/iso</code></p></blockquote>
<h3>Napalenie suborov z disku</h3>
<blockquote><p><code>growisofs -Z /dev/dvd -r -J /cesta/k/suborom</code></p></blockquote>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Flyff Automaton by nForce/dBased]]></title>
<link>http://wtfux.wordpress.com/?p=22</link>
<pubDate>Fri, 03 Oct 2008 16:24:22 +0000</pubDate>
<dc:creator>wtfux</dc:creator>
<guid>http://wtfux.nl.wordpress.com/2008/10/03/flyff-automaton-by-nforcedbased/</guid>
<description><![CDATA[FlyFF Automaton is a fully scriptable automated gameplay system, using the Lua scripting engine. The]]></description>
<content:encoded><![CDATA[<p><strong>FlyFF Automaton</strong> is a fully scriptable <strong>automated gameplay system</strong>, using the <strong>Lua</strong> scripting engine. The goal is to provide an environment in which it is easy to write powerful scripts to control the behaviour of your player.<br />
<!--more--><br />
FlyFF Automaton is a freeware package for educational/accessibility purposes only. It must not be used for any other purposes, and doing so is at your own risk.</p>
<p>Fixes in 16/06/2008 Update:</p>
<p>* Full Vista support (tested).<br />
* Added support for latest version of GG.<br />
* Fixed some issues with 15/06/2008 version.</p>
<p>Features:</p>
<p>* Load/unload Lua scripts.<br />
* Flexible environment where scripts can respond to events like damage, death, and chat.<br />
* Legacy user interface, similar to previous releases, with the automated revival system included.<br />
* An example script with simple grinding AI.<br />
* Documentation of available functions and events.<br />
* Support for some but not all version 9 and 11 regions.</p>
<p>Notes:</p>
<p>* Insert opens the legacy console, and end opens the legacy menus.<br />
* Commands can be issued from the legacy console or the in game chat.<br />
* To list the commands in existence execute the command help.<br />
* <strong>Scripts</strong> are located in the Scripts subdirectory in the installation folder.</p>
<p>You can download the latest Fly For Fun Automaton made by nForce here: http://rapidshare.com/files/129015023/FlyFF_Automaton__16-06-2008_.rar</p>
<p>I think I'll also release the latest version of my <strong>wtfux script</strong> today.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[The Journey - I couldn't even sell oxygen to people living on the moon!]]></title>
<link>http://denimadness.wordpress.com/?p=93</link>
<pubDate>Fri, 03 Oct 2008 15:13:36 +0000</pubDate>
<dc:creator>deni</dc:creator>
<guid>http://denimadness.nl.wordpress.com/2008/10/03/the-journey-i-couldnt-even-sell-oxygen-to-people-living-on-the-moon/</guid>
<description><![CDATA[Now comes one of the toughest things for me when it comes to this business.  Following up on query ]]></description>
<content:encoded><![CDATA[<p><a href="http://denimadness.files.wordpress.com/2008/10/sold.jpg"><img class="size-medium wp-image-101 alignleft" title="sold" src="http://denimadness.wordpress.com/files/2008/10/sold.jpg?w=300" alt="" width="300" height="229" /></a>Now comes one of the toughest things for me when it comes to this business.  Following up on query - submissions (which is really a no-brainer) and the art of selling my work.</p>
<p>How does one sell when they are not a "natural" sales-person.  I read somewhere that actor Will Farrell (Stranger Than Fiction, SNL) said he was not good at the art of selling, however he gets to prove his worth by performing, but writing is a different matter.  I'm someone who cringes at selling anything but if I want to make some kind of dent with my work, then I have to learn to make my work sound so damn good that sparks will fly out of the asses of the these Hollywood Executive big wigs who can make my dream a reality. How do you convince these mini-icons that you've got something special?  I've met a few in my time and they look at you as if you're robbing them of air.  It's the nature of the business I guess - they are extremely busy and when get your chance to see them they look tired and bored.  Their mind is obviously on something else that's either going to make them money, making them money or causing them to lose money and you're just not that important to them at the moment and yet, you've got to make them believe that you have something special - that could make them money.  How do you maintain enthusiasm when they're scratching their ass while you're talking?  The easiest option for me would be to get an agent/manager but 'hello', I'd still have to make sparks fly out of an agents ass as well.</p>
<p>It doesn't help that I don't live in Los Angeles or New York right now but still there is such a thing as a phone pitch and that sounds just as daunting to me as a face-to-face pitch.  I can prepare my pitch until I'm blue in the face and I can recite it backwords in my sleep but still it's no good until I get either the magic email, phone-call or request letter.  Right now I have only one prospect going for me and that's a long shot but still it's strange that I have to prepare for something that might now even happen unless I write the worlds most perfect query letter.</p>
<p>And so despite how things look this is how the journey must start.  This is what I and countless others out there must deal with and face.  I like to make sense out of things in my head no matter how difficult it seems.  The thing to do now is prepare my query and work out a good pitch and get a few synopsis' going. One short one, mid-sized one and one three pager and just believe.</p>
<p>Will keep y'all posted.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Biden's Missed Opportunity in the Debate: "Sarah Palin, you're no Ronald Reagan."]]></title>
<link>http://canarypapers.wordpress.com/?p=1297</link>
<pubDate>Fri, 03 Oct 2008 14:41:41 +0000</pubDate>
<dc:creator>canarypapers</dc:creator>
<guid>http://canarypapers.wordpress.com/2008/10/03/bidens-missed-opportunity-in-the-debate-sarah-palin-youre-no-ronald-reagan/</guid>
<description><![CDATA[It boils down to this: 
Joe Biden was equally capable of delivering as knowledgeable, intelligent, i]]></description>
<content:encoded><![CDATA[<p><strong>It boils down to this: <a href="http://canarypapers.files.wordpress.com/2008/10/biden-speaking.jpg"><img class="alignright size-medium wp-image-1300" title="biden-speaking" src="http://canarypapers.wordpress.com/files/2008/10/biden-speaking.jpg?w=230" alt="" width="230" height="300" /></a></strong></p>
<p><strong>Joe Biden was equally capable of delivering as knowledgeable, intelligent, insightful and nuanced a discussion of the issues facing our nation and the world 5 days ago, as he was 5 weeks, 5 years or even 25 years ago. Sarah Palin delivered a scripted, well-rehearsed performance last night, nothing more, and it was a performance she was not capable of giving just 5 days ago. </strong></p>
<p><a href="http://canarypapers.files.wordpress.com/2008/10/mask.jpg"></a><a href="http://canarypapers.files.wordpress.com/2008/10/theater-2.jpg"></a>There's really no more to it than that, except among those who simply *need* to believe that Sarah Palin owns more than an ability to memorize talking points. Have the past 5 weeks not offered enough compelling evidence that, off-script, she is dismally, dangerously unqualified for the job? Much as she tried to chide Joe Biden for referencing the so-called "past" mistakes of the Bush Administration, Sarah Palin's scriptwriters nonetheless felt the need to validate her candidacy by latching onto the past -- namely, the coattails of Ronald Reagan's legacy.</p>
<p>I would like someone to ask Sarah Palin just what Ronald Reagan meant all those times, when he conjured the vision of that "shining city upon the hill." And what did <span style="text-decoration:underline;">you</span> mean, Governor Palin, when you coupled the word 'exceptionalism' with that 'shining city' last night, as in: "<em>America is a nation of exceptionalism. And we are to be that shining city on a hill</em>"? Do you even know what is meant by the word, '<a href="http://www.answers.com/topic/exceptionalism" target="_blank">exceptionalism</a>' in this context? Or would that be "gotcha" journalism to ask you such a question, as when Katie Couric asked, "<em>What do you read</em>?" on the heels of your statement, "<em>The way that I have understood the world is through education, through books, through mediums that have provided me a lot of perspective on the world</em>"?</p>
<p>My educated guess is that Sarah's answer on the 'shining city' question would be the same as her answer to Couric's question about her reading list: a pause -- one beat too long -- followed by a mish-mash of hollow words infused with insults against anyone smart enough to know the answer. Lest Sarah be at a loss for words, I've done her homework, the same as I did when she asked, <a href="http://canarypapers.wordpress.com/2008/08/30/here-it-is-sarah-palin-a-job-description-for-vice-president/" target="_blank">"What is it exactly that the VP does every day?" </a>The answer is printed, in entirety, at the bottom of this post.  I offer this, not because I'm a fan of Ronald Reagan -- or of exceptionalism -- but because, when he conjured the vision of the shining city upon the hill, it was not merely a stage prop. His words were fleshed from a personal belief, born from an established school of thought, about which he knew something. Ronald Reagan not only understood what he was saying. He meant it.    </p>
<p><a href="http://canarypapers.files.wordpress.com/2008/10/theater-22.jpg"><img class="alignleft size-medium wp-image-1302" title="theater-22" src="http://canarypapers.wordpress.com/files/2008/10/theater-22.jpg?w=240" alt="" width="240" height="300" /></a><a href="http://canarypapers.files.wordpress.com/2008/10/theater-21.jpg"></a></p>
<p><strong>Sarah proved last night (as she did at the convention) that she is capable of delivering her lines on cue with, alternately, pseudo conviction, curled-lip sarcasm, or a wink and a smile. There are small theatre groups across the country filled with similar talents. What does this have to do with being vice-president of the United States?</strong></p>
<p>We've been duly warned: there will be no more unfettered media access (huh?) to Sarah Palin (even as we were told, just a few days ago, that the McCain campaign was going to "allow" Sarah Palin to "be herself" to America). There will be only scripted speeches, no more of that "gotcha" journalism. </p>
<p>Here's the thing. I'm sick and tired of living under a government that operates in secrecy, that censors media access, that denies Americans the right to a transparent government, that gives us, instead, a scripted version of the truth in the form of cooked intelligence, manufactured news, propaganda and lies. On that note, I'm also sick and tired of living under a government that believes the rules don't apply to them. Censoring the media and making special exceptions to the law were the trademarks of the Bush-Cheney Administration. The McCain-Palin team have shown that they would be no different. </p>
<p>In the past 5 weeks, alone, we have seen the media censored from covering Sarah Palin, we have seen more lies than we can count -- so many, that it has become an embarrassment and a joke, even among the most statured conservatives -- and we have seen Sarah Palin thumb her nose at a court order, when subpoenaed to testify in the ethics investigation for her alleged abuse of executive power. This is the foundation upon which dictatorships, not democracies, are built. Ronald Reagan at least understood this much, when he described the foundation of that "shining city upon a hill," in his speech, below:</p>
<p style="text-align:center;">_______________________________________ </p>
<blockquote><p><strong>The past few days when I've been at that window upstairs, I've thought a bit of the "shining city upon a hill." The phrase comes from John Winthrop, who wrote it to describe the America he imagined. What he imagined was important because he was an early Pilgrim, an early freedom man. He journeyed here on what today we'd call a little wooden boat; and like the other Pilgrims, he was looking for a home that would be free.</strong></p>
<p><strong>I've spoken of the shining city all my political life, but I don't know if I ever quite communicated what I saw when I said it. But in my mind it was a tall proud city built on rocks stronger than oceans, wind-swept, God-blessed, and teeming with people of all kinds living in harmony and peace, a city with free ports that hummed with commerce and creativity, and if there had to be city walls, the walls had doors and the doors were open to anyone with the will and the heart to get here. That's how I saw it and see it still.</strong></p>
<p><strong>And how stands the city on this winter night? More prosperous, more secure, and happier than it was eight years ago. But more than that; after 200 years, two centuries, she still stands strong and true on the granite ridge, and her glow has held steady no matter what storm. And she's still a beacon, still a magnet for all who must have freedom, for all the pilgrims from all the lost places who are hurtling through the darkness, toward home. </strong></p></blockquote>
<p style="text-align:center;"><em><a href="http://www.reaganlibrary.com/reagan/speeches/farewell.asp" target="_blank">Ronald Reagan, from his Farewell Address to the Nation, January 11, 1989 </a></em></p>
<p style="text-align:center;"><img class="aligncenter size-full wp-image-1309" title="shining-city1" src="http://canarypapers.wordpress.com/files/2008/10/shining-city1.jpg" alt="" width="600" height="299" /><a href="http://canarypapers.files.wordpress.com/2008/10/shining-city.jpg"></a></p>
<p>It is a genuine source of sadness to many Americans that these words could not be spoken today, except by those blind to the fate which our country has suffered under the Bush Administration. We see, in Sarah Palin and John McCain, a stubborn blindness to this reality. Otherwise, their platform would not be nearly identical to the Bush-Cheney platform. Otherwise, her speechwriters would not have felt it necessary to have her chide Joe Biden for discussing the fatal flaws in the Bush Administration that have brought our country to this sad state. Joe Biden got it right last night when he said, "Past is prologue," but he missed a golden opportunity to tell Sarah Palin, "Governor, you're no Ronald Reagan."</p>
<p> </p>
<p> </p>
<p><a href="http://canarypapers.files.wordpress.com/2008/10/past-is-prologue.jpg"></a></p>
<p><a href="http://canarypapers.files.wordpress.com/2008/10/past-is-prologue1.jpg"><img class="alignleft size-full wp-image-1315" title="past-is-prologue1" src="http://canarypapers.wordpress.com/files/2008/10/past-is-prologue1.jpg" alt="" width="314" height="500" /></a></p>
<p style="text-align:center;"><a href="http://canarypapers.files.wordpress.com/2008/10/study-the-past.jpg"></a>____________________</p>
<p style="text-align:center;">by Mantis Katz for the canarypapers</p>
<p style="text-align:center;">_________________________________</p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<h6 style="text-align:justify;">Two statues stand outside the National Archives on Pennsylvania Avenue. One is called "Study the Past," and the other (left) explains why: "What is Past is Prologue." On display in the National Archives are the  Declaration of Independence, Constitution, and Bill of Rights -- the cornerstone documents of the United States. </h6>
<p style="text-align:center;">____________________________________________________________________________________</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Scriptidéer/förslag]]></title>
<link>http://projectsecondlife.wordpress.com/?p=137</link>
<pubDate>Fri, 03 Oct 2008 12:59:48 +0000</pubDate>
<dc:creator>projectsecondlife</dc:creator>
<guid>http://projectsecondlife.nl.wordpress.com/2008/10/03/scriptideerforslag/</guid>
<description><![CDATA[
Vid ankomst till ön ska man bli tilldelad en medieteknik t-shirt och ett &#8220;hulahula&#8221;-ha]]></description>
<content:encoded><![CDATA[<ul>
<li>Vid ankomst till ön ska man bli tilldelad en medieteknik t-shirt och ett "hulahula"-halsband. Dessutom ska man bli välkomnad i chatten. (give something to an avatar/say something in chat)</li>
<li>Det kan finnas en stereo som när man trycker på den spelar musik. (play sound)</li>
<li>En stor reklamskylt för Medieteknik som man kan trycka på och komma till vår hemsida. (promt an avatar to load a URL in a web browser)</li>
</ul>
<p>Alla scripten kan enkelt skapas på länken som fanns i ett tidigare inlägg: <a href="http://3greeneggs.com/autoscript/" target="_blank">http://3greeneggs.com/autoscript/</a></p>
]]></content:encoded>
</item>

</channel>
</rss>
