<?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>batch &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://wordpress.com/tag/batch/</link>
	<description>Feed of posts on WordPress.com tagged "batch"</description>
	<pubDate>Wed, 08 Oct 2008 03:14:04 +0000</pubDate>

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

<item>
<title><![CDATA[FastStone Photo and Image Resizer]]></title>
<link>http://jungphoto.wordpress.com/?p=3</link>
<pubDate>Wed, 08 Oct 2008 01:23:09 +0000</pubDate>
<dc:creator>jungphoto</dc:creator>
<guid>http://jungphoto.wordpress.com/2008/10/08/faststone-photo-and-image-resizer/</guid>
<description><![CDATA[Publisher Description: FastStone Photo Resizer is an image converter / resizer intended to enable us]]></description>
<content:encoded><![CDATA[<p>Publisher Description: FastStone Photo Resizer is an image converter / resizer intended to enable users to convert, rename, resize, crop, rotate, change color depth, add text and watermarks to images in a quick and easy batch mode. ...<br><br />
http://slayo.com</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Two pictures to account for...]]></title>
<link>http://tomashalberstad.wordpress.com/?p=652</link>
<pubDate>Thu, 02 Oct 2008 20:07:35 +0000</pubDate>
<dc:creator>Tomas Halberstad</dc:creator>
<guid>http://tomashalberstad.wordpress.com/2008/10/02/two-pictures-to-account-for/</guid>
<description><![CDATA[&#8230; and a third.
First of: September, the horrible month of crap and stuff.

Secondly the first ]]></description>
<content:encoded><![CDATA[<p>... and a third.</p>
<p>First of: September, the horrible month of crap and stuff.</p>
<p><img class="alignnone size-full wp-image-653" title="train_september" src="http://tomashalberstad.wordpress.com/files/2008/10/train_september.jpg" alt="" width="480" height="360" /></p>
<p>Secondly the first batch of promos before they were sent off. Well... to be honest, they haven't been sent away yet. Not my fault. I went down to the Candy Troll to buy stamps. They were out. Shipping starts tomorow.</p>
<p><img class="alignnone size-full wp-image-654" title="batch" src="http://tomashalberstad.wordpress.com/files/2008/10/batch.jpg" alt="" width="480" height="360" /></p>
<p>Third but not last... well, not true: Last. Me and the Boo went out fora nice eavning walk. It's getting pretty chilly here in The Gigantic! Hat time:</p>
<p><img class="alignnone size-full wp-image-655" title="hat" src="http://tomashalberstad.wordpress.com/files/2008/10/hat.jpg" alt="" width="480" height="360" /></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Deploying changes to multiple SQL Server Environments]]></title>
<link>http://dacosta9.wordpress.com/?p=7</link>
<pubDate>Thu, 02 Oct 2008 03:47:27 +0000</pubDate>
<dc:creator>dacosta9</dc:creator>
<guid>http://dacosta9.wordpress.com/2008/10/02/deploying-changes-to-multiple-sql-server-environments/</guid>
<description><![CDATA[I am a bit old school when it comes to working with databases. I know it’s so easy to just jump in]]></description>
<content:encoded><![CDATA[<p><span>I am a bit old school when it comes to working with databases. I know it’s so easy to just jump into SSMS or Query Analyzer to do ones job so fast and nifty, but I like to have scripts handy of everything I do, as well as logs on disk for each of these operations I perform.</span></p>
<p><span>In order to satisfy this requirement I have 2 separate folders which I use to manage my scripts. The first folder being "c:\sqlscripts\" which I use for storing automation scripts &#38; utility scripts, and secondly a folder in which I keep scripts that I will run "c:\sqlsource\".</span></p>
<p><span>The first step is to create a batch file as a deployment template for deploying changes</span></p>
<p><span>&#60;code&#62;</span></p>
<p><span>osql -S server_name -d database_name -i "c:\sqlsource\%1" -o "c:\sqlsource\logs\%1.environment_name.log" -U username -P password –n</span></p>
<p><span>&#60;/code&#62;</span></p>
<p><span>I then save this file as "c:\sqlscripts\run_script_on_environment_name_database_name.bat" in a convenient folder of my choosing, for the purposes of this example "c:\sqlscripts\".<span>  </span>Replace environment_name and database_name with values suitable to your specific need.</span></p>
<p><span>When its time to run scripts on an environment, I assemble a list of files choose the method I will use to run these items from the command line.</span></p>
<p><span># run a single file on a specific database<span> </span><br />
run_script_on_environment_name_database_name.bat sourcescriptname.sql </span></p>
<p><span># run all non-hidden files in directory</span></p>
<p><span>FOR %x IN ( dir /A:-H /B )  DO run_script_on_environment_name_database_name.bat sourcescriptname.sql </span></p>
<p><span># run a list of files<br />
FOR %x IN ( file1.sql file2.sql file3.sql )  DO run_script_on_environment_name_database_name.bat sourcescriptname.sql </span></p>
<p class="MsoNormal"><span> </span></p>
<p><span>There are several tweaks that one can do to customize this process, however these tweaks would be based entirely on your personal preferences.  </span></p>
<p><span>By all means I can imagine people ranting about having separate files for each environment. This was a choice I made because of my own devices. You could easily parameterize the entire batch file and produce a script such as the one below and pass all your arguments in at run time. </span></p>
<p><span>osql -S %1 -d %2-i "%5/%6" -o "%7\%6.%1.%2.log" -U %3-P %4 -n</span></p>
<p><span>%1 =&#62; servername<br />
%2 =&#62; databasename<br />
%3  =&#62; username<br />
%4 =&#62; password<br />
%5 =&#62; sourcefolder<br />
%6 =&#62; sourcefile<br />
%7 =&#62; logfolder </span></p>
<p><span>If you choose to do so, go right ahead, however I like to have everything setup in my file and keep my parameters to a minimum. </span></p>
<p><span>Do what suits you. In the near future I am going to recreate this process in VBScript. Reason being, I would like to</span></p>
<p><span>1. Timestamp the log files, so if the scripts errors out, I create a new log file each time. This would also provide neatly time stamped log files of the deployment &#38;/or rollback process, which would be sweet for debugging on a testing environment.</span></p>
<p><span>2. Introduce error checking. If I do not have any print statements, and SET NOCOUNT ON, then I could theoretically say that if the log file size is greater than zero, the script failed, and I should automatically run the rollback statement.</span></p>
<p><span>I am wondering whether I should use Powershell or VBScript to do this. I have not looked into Powershell enough at this point to determine if this is a good option, any comments would definitely be appreciated.</span></p>
<p class="MsoNormal"> </p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Cambiar IP DNS desde consola BATCH]]></title>
<link>http://huakalero.wordpress.com/?p=26</link>
<pubDate>Wed, 01 Oct 2008 23:15:15 +0000</pubDate>
<dc:creator>huakalero</dc:creator>
<guid>http://huakalero.wordpress.com/2008/10/01/cambiar-ip-dns-desde-consola-batch/</guid>
<description><![CDATA[Bueno, yo suelo conectarme en la red de la escuela en la que voy, pero siempre se me hace muy tedios]]></description>
<content:encoded><![CDATA[<p>Bueno, yo suelo conectarme en la red de la escuela en la que voy, pero siempre se me hace muy tedioso tener que estarla configurando. Y como hace poco empecé a aprender sobre la programación en batch (archivos con extensión bat o cmd que programan la consola MS-DOS) pues decidí investigar un poco y aplicar mis conocimientos para construir un programa que me configurara la IP y la DNS, y así poder conectarme a la red de la escuela fácilmente. Y del mismo modo al volver a casa, correr otro programa que hiciera el proceso inverso, para así poder usar la red de mi casa.<br />
Lo importante aquí es saber que en la consola podemos llamar a un programa llamado netsh.exe¸ aunque como es un programa de sistema lo podemos llamar desde cualquier ruta con solo poner netsh.</p>
<p><!--more--><br />
<strong>Como configurar la IP</strong><br />
Lo más fácil es llamar al programa con una serie de parámetros, para así configurar más fácil y rápida la cosa.<br />
Netsh interface IP set address “Conexión” static &#60;IP&#62; &#60;mascaradered&#62; &#60;puertadeenlace&#62; &#60;metric&#62;</p>
<ul>
<li> “Conexión”: es el nombre de tu conexión, en mi caso fue "Conexión de red inalámbrica". Checa bien los acentos porque con una letra que este mal ya marca error.</li>
<li> &#60;IP&#62;: es tu dirección IP</li>
<li> &#60;mascaradered&#62;: Es la máscara de red, jeje</li>
<li> &#60;puertadeenlace&#62;: es la IP de la puerta de enlace</li>
<li> &#60;metric&#62;: yo se que alguien sabrá que es esto, pero yo no lo puse en mi bat y todo jalo bien.</li>
</ul>
<p><strong>C</strong><strong>omo configurar la DNS</strong></p>
<p>La operacion es igual a lo anterior solo que en ves de <em>address</em> se pone <em>dns</em> , que es pues el servidor DNS, y solo se incluye una direccion.</p>
<p><strong>Agregando la DNS preferencial</strong></p>
<p>netsh interface ip set dns "Conexión" static &#60;direccion&#62;</p>
<p><strong>Y para la alternativa</strong></p>
<p>netsh interface ip add dns name="Conexión" addr=&#60;direccion2&#62; index=2<br />
<strong>Volver al estado original</strong></p>
<p>Pues esto es casi lo mismo, solo que hay que especificar que ahora la direccion IP y DNS la obtenga automaticamente del siguiente modo:</p>
<p>Para la IP:</p>
<p>Netsh interface IP set address “Conexión” source=DHCP</p>
<p>Para la DNS:</p>
<p>Netsh interface IP set dnsserver “Conexión”  source=DHCP</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[لینکهای امروز 10 مهر 1387 (88 لینک)]]></title>
<link>http://lord386.wordpress.com/2008/10/01/88_hotlink-for-1387_7_10-foxlink_33/</link>
<pubDate>Wed, 01 Oct 2008 14:21:38 +0000</pubDate>
<dc:creator>lord386</dc:creator>
<guid>http://lord386.wordpress.com/2008/10/01/88_hotlink-for-1387_7_10-foxlink_33/</guid>
<description><![CDATA[
برجی که به شکل W خواهد بود
&#160;
اخبار فن آوری اطلاعات - تا]]></description>
<content:encoded><![CDATA[<p align="center"><a href="http://lord386.files.wordpress.com/2008/10/lord386wtower.jpg"><img title="lord386-w-tower" style="display:inline;border-width:0;" height="240" alt="lord386-w-tower" src="http://lord386.files.wordpress.com/2008/10/lord386wtower-thumb.jpg" width="240" border="0" /></a></p>
<p align="center"><a href="http://feeds.feedburner.com/~r/Narenji/~3/407953284/">برجی که به شکل W خواهد بود</a></p>
<p>&#160;</p>
<p><a href="http://lord386.wordpress.com/category/top_10/&#216;&#167;&#216;&#174;&#216;&#168;&#216;&#167;&#216;&#177;-it/"><b>اخبار فن آوری اطلاعات</b></a> - <font color="#8000ff">تازه های کامپیوتر و فن آوری ، اخبار نرم افزار ، اخبار سخت افزار</font></p>
<p>1- <a href="http://feeds.feedburner.com/~r/medianews_ir/~3/407511131/adsl-1.html">ADSL ارزان شد</a> ***</p>
<p>2- <a href="http://www.ictna.ir/news/archives/016821.html">صدور مجوز نصب و بهره برداری تجهیزات تلفن همراه ایرانسل از سوی سازمان انرژی اتمی</a></p>
<p>3- <a href="http://www.tarashe.com/news/2008/09/30/7776-/">گوگل به واشنگتن می رود</a></p>
<p>4- <a href="http://www.tarashe.com/news/2008/09/30/7775-/">Visual Studio 2010 با جعبه سياه از راه می رسد</a></p>
<p>5- <a href="http://www.itna.ir/archives/news/011137.php">IP چینی‌ها تمام شد!</a></p>
<p>6- <a href="http://feeds.feedburner.com/~r/medianews_ir/~3/405554316/yahoogooglefacts.html">گوگل در پاسخ به منتقدانش وب‌سایت راه‌اندازی کرد</a></p>
<p>7- <a href="http://feeds.feedburner.com/~r/Narenji/~3/406252368/">USB Hub با چهار ورودی به شکل آدمک</a></p>
<p>&#160;</p>
<p><a href="http://lord386.wordpress.com/category/top_10/&#217;&#216;&#167;&#219;&#338;&#216;&#177;&#217;&#216;&#167;&#218;&#169;&#216;&#179;/"><b>فایرفاکس</b></a> – <font color="#8000ff">ترفند فایرفاکس ، افزونه های فایرفاکس ، تم فایرقاکس ، اخبار فایرفاکس</font></p>
<p>1- <a href="http://feeds.feedburner.com/~r/Mer30/~3/408000067/">5 ترفند برای کاهش مصرف RAM مرورگر فایرفاکس</a></p>
<p>2- <a href="http://feeds.feedburner.com/~r/hall/~3/407595127/">چهار امکان جالب از فایرفاکس 3 که احتمالاً چیزی راجع بهشون نمیدونستین</a> ***</p>
<p>3- <a href="http://feeds.feedburner.com/~r/planet-mozillafirefox-ir/~3/407953202/">لباس ویستا بر قامت فایرفاکس</a></p>
<p>4- <a href="http://wiki.mozillafirefox.ir/&#217;&#8230;&#217;&#8218;&#216;&#167;&#217;&#8222;&#217;&#8225;&#226;&#8364;&#338;&#217;&#8225;&#216;&#167;/&#216;&#186;&#217;&#8222;&#216;&#183;_&#218;&#175;&#219;&#338;&#216;&#177;_&#216;&#167;&#217;&#8230;&#217;&#8222;&#216;&#167;&#219;&#338;&#219;&#338;">افزونه (Add-on) غلط گیر فارسی (مخصوص مرورگر فایرفاکس</a></p>
<p>5- <a href="http://xray.wordpress.com/2007/09/27/enable-saving-any-image-on-flickr/">ذخیره تصویر در فیلکر</a></p>
<p>6- <a href="http://feeds.gawker.com/~r/lifehacker/full/~3/407683412/better-gmail-2-gets-labellinks4gmail-plus-updates">Better Gmail 2 Gets LabelLinks4Gmail Plus Updates</a></p>
<p>7- <a href="http://www.pcmag.com/article2/0,2704,2331278,00.asp">Firefox 3: 8 Things You Didn't Know You Could Do</a> ***</p>
<p>8- <a href="http://feedproxy.google.com/~r/Mashable/~3/aKt97mifZKY/">13 Gmail Extensions for Firefox 3</a></p>
<p>9- <a href="http://feeds.feedburner.com/~r/SmashingApps/~3/405769725/11-free-firefox-3-themes-you-probably-never-use-before.html">11 Free Firefox 3 Themes You Probably Never Use Before</a> ***</p>
<p>&#160;</p>
<p><a href="http://lord386.wordpress.com/category/top_10/&#216;&#179;&#216;&#177;&#217;&#710;&#219;&#338;&#216;&#179;&#217;&#8225;&#216;&#167;&#219;&#338;-&#216;&#172;&#216;&#175;&#219;&#338;&#216;&#175;/"><b>معرفی سرویسهای جدید اینترنتی</b></a> –<font color="#8000ff"> خدمات جدید ، معرفی سایت</font></p>
<p>1- <a href="http://feeds.feedburner.com/~r/asroone/~3/407959306/">جستجو در سال ۲۰۰۱</a> ***</p>
<p>2- <a href="http://www.mohand.es/story/4774">معرفی وب سایت های کاربردی و جذاب وب که نیازی به ثبت نام ندارند قسمت اول</a>&#160; ***</p>
<p>3- <a href="http://feedproxy.google.com/~r/readwriteweb/~3/iednHWOuCZY/free_online_storage_services.php">Into the Cloud: Our 5 Favorite Online Storage Services</a> ***</p>
<p>4- <a href="http://feeds.gawker.com/~r/lifehacker/full/~3/401886378/rososo-is-a-clean-minimalist-feed-checker">Rososo is a Clean, Minimalist Feed Checker</a></p>
<p>&#160;</p>
<p><a href="http://lord386.wordpress.com/category/top_10/&#216;&#175;&#216;&#167;&#217;&#8224;&#217;&#8222;&#217;&#710;&#216;&#175;-&#217;&#219;&#338;&#217;&#8222;&#217;&#8230;/"><b>دانلود فیلم با لینک مستقیم</b></a> -&#160; <font color="#8000ff">دانلود فیلم خارجی ، دانلود فیلم اکشن ، دانلود فیلم ترسناک ، دانلود انیمیشن ، دانلود فیلم کمدی</font></p>
<p>1- <a href="http://www.downloadha.com/modules.php?name=News&#38;file=article&#38;sid=960">دانلود مستقیم Dragon Hunters 2008</a></p>
<p>2- <a href="http://bya22.blogfa.com/post-143.aspx">دانلود با لینک مستقیم فیلم 2008 In Bruges</a></p>
<p>3- <a href="http://www.downloadha.com/modules.php?name=News&#38;file=article&#38;sid=957">دانلود مستقيم فيلم Mamma Mia! 2008</a></p>
<p>&#160;</p>
<p><a href="http://lord386.wordpress.com/category/top_10/&#217;&#8230;&#217;&#710;&#216;&#168;&#216;&#167;&#219;&#338;&#217;&#8222;-top_10/"><b>موبایل</b></a> -&#160; <font color="#8000ff">اخبار موبایل ، بازی موبایل ، بازی نوکیا ، بازی سونی اریکسون ، آنتی ویروس سونی اریکسون ، رینگتون موبایل</font></p>
<p>1- <a href="http://www.ir-tci.org/archives/games/game-n-gage-2/hooked_on_creatures_of_the_deep/">بازی موبایل Hooked on Creatures of the Deep N-Gage2</a></p>
<p>2- <a href="http://www.ir-tci.org/archives/games/game_java/xforce_multiscreen_java/">بازی زیبای Xforce برای گوشی های موبایل - جاوا</a></p>
<p>3- <a href="http://www.asandownload.com/mobile/archives/game/java/download_gladiator_3d_java_full/">بازی جذاب و سه بعدی GLADIATOR 3D Java</a></p>
<p>4- <a href="http://far30mobile.com/2008/09/post-346.php">بازی استراتژیکی THE SETTLERS - با فرمت جاوا</a></p>
<p>5- <a href="http://feeds.feedburner.com/~r/Mobileha/~3/404764458/">مجموعه ۵۷۰ بازی مهیج برای گوشیهای چینی</a></p>
<p>6- <a href="http://feeds.feedburner.com/~r/imiladcom/~3/406344766/">نسخه جدید نرم افزار فرهنگ دارویی برای موبایل شما !</a></p>
<p>7- <a href="http://irancell.ws/index.php?newsid=439">اولین آنتی ویروس برای گوشی های سونی اریکسون</a></p>
<p>8- <a href="http://feeds.feedburner.com/~r/Mer30/~3/406092248/">مدیریت موبایل نوکیا Nokia PC Suite 7.0 Release 8.2 Final</a></p>
<p>9- <a href="http://feeds.feedburner.com/~r/Mer30/~3/406092249/">مدیریت موبایل های سونی اریکسون با MyPhoneExplorer 1.6.7</a></p>
<p>10- <a href="http://fun.1zarb.ir/post-94.html">دانلود پکیج آهنگ sms</a> ***</p>
<p>&#160;</p>
<p><a href="http://lord386.wordpress.com/category/top_10/&#216;&#175;&#216;&#167;&#217;&#8224;&#217;&#8222;&#217;&#710;&#216;&#175;-&#216;&#179;&#217;&#8224;&#216;&#170;&#216;&#177;/"><b>دانلود سنتر</b></a> -&#160; <font color="#8000ff">دانلود نرم افزار های جدید ، دانلود بازی ، فرهنگ لغت و مترجم</font></p>
<p>1- <a href="http://feeds.feedburner.com/~r/asandownload/XML/~3/408044845/">بازی بسیار جذاب و هیجان انگیز مزرعه داری Farm Frenzy</a></p>
<p>2- <a href="http://feeds.feedburner.com/~r/respecttousa/~3/408012300/">نسخه جدید بابیلون همراه با کرک</a></p>
<p>3- <a href="http://www.ghacks.net/2008/09/25/vista-live-shell-pack-for-windows-xp/">Vista Live Shell Pack For Windows XP</a></p>
<p>&#160;</p>
<p><a href="http://lord386.wordpress.com/category/top_10/&#216;&#170;&#216;&#177;&#217;&#217;&#8224;&#216;&#175;/"><b>ترفند</b></a> -&#160; <font color="#8000ff">ترفند رجیستری ، ترفند یاهو ، ترفند امنیت ،&#160; ترفند ویندوز ، ترفند شبکه ، ترفند کیبورد ، ترفند موبایل ، ترفند دسکتاپ ،&#160; ترفند مرورگر ، ترفند نرم افزار و سخت افزار ، ترفند اینترنت ، ترفند آفیس</font></p>
<p>1- <a href="http://feeds.feedburner.com/~r/balatarin/~3/408140045/post-121.aspx">جستجوی فایلهای موجود در Rapidshare به وسیله گوگل </a>***</p>
<p>2- <a href="http://chortkeh.blogfa.com/post-819.aspx">برنامه های مخفی در ویندوز Xp برای چت , فشرده سازی و ساخت Setup !</a></p>
<p>3- <a href="http://chortkeh.blogfa.com/post-818.aspx">اصلاح آرایش صفحه کلید فارسی در ویندوز ویستا</a></p>
<p>4- <a href="http://glassyworld.wordpress.com/2008/09/29/&#216;&#167;&#219;&#338;&#217;&#8224;&#216;&#170;&#216;&#177;&#217;&#8224;&#216;&#170;-&#216;&#167;&#218;&#169;&#216;&#179;&#217;&#190;&#217;&#8222;&#217;&#710;&#216;&#177;&#216;&#177;-&#216;&#168;&#216;&#175;&#217;&#710;&#217;&#8224;-&#216;&#170;&#216;&#168;/">اینترنت اکسپلورر بدون تب !!!</a></p>
<p>5- <a href="http://glassyworld.wordpress.com/2008/09/29/&#216;&#175;&#216;&#179;&#216;&#170;&#216;&#177;&#216;&#179;&#219;&#338;-&#216;&#179;&#216;&#177;&#219;&#338;&#216;&#185;-&#216;&#168;&#217;&#8225;-&#216;&#170;&#216;&#168;-&#217;&#8225;&#216;&#167;-&#216;&#175;&#216;&#177;-&#216;&#167;&#219;&#338;&#217;&#8224;&#216;&#170;&#216;&#177;&#217;&#8224;&#216;&#170;-&#216;&#167;&#218;&#169;&#216;&#179;&#217;&#190;&#217;&#8222;&#217;&#710;&#216;&#177;/">دسترسی سریع به تب ها در اینترنت اکسپلورر</a></p>
<p>&#160;</p>
<p><a href="http://lord386.wordpress.com/category/top_10/&#216;&#162;&#217;&#8230;&#217;&#710;&#216;&#178;&#216;&#180;-&#217;&#710;-&#217;&#8230;&#217;&#8218;&#216;&#167;&#217;&#8222;&#217;&#8225;/"><b>آموزش و مقاله</b></a> -&#160; <font color="#8000ff">مقالات علمی ، مقالات آموزشی ، مقالات کامپیوتر ، آموزش فتوشاپ ، مقالات سخت افزار</font></p>
<p>1- <a href="http://feeds.feedburner.com/~r/pezeshk/~3/407691522/internetcinema.html">پرونده‌ای برای سایت‌های سینمایی</a> ***</p>
<p>2- <a href="http://mehrdad.rajabi.ir/1387/07/08/382/">توییت با اس‌ام‌اس</a></p>
<p>3- <a href="http://websaz.wordpress.com/2008/09/30/&#216;&#175;&#216;&#186;&#216;&#175;&#216;&#186;&#217;&#8225;-&#216;&#174;&#216;&#177;&#219;&#338;&#216;&#175;-&#217;&#8222;&#217;&#190;-&#216;&#170;&#216;&#167;&#217;&#190;-&#216;&#8250;-&#219;&#338;&#218;&#169;-&#216;&#177;&#216;&#167;&#217;&#8225;&#217;&#8224;&#217;&#8230;&#216;&#167;&#219;&#338;-&#216;&#174;&#216;&#177;&#219;&#338;&#216;&#175;-&#217;&#710;&#216;&#167;&#217;&#8218;&#216;&#185;/">دغدغه خرید لپ تاپ ؛ یک راهنمای خرید واقعی را تجربه کنید</a></p>
<p>4- <a href="http://ma.gnolia.com/people/ITStart/bookmarks/twishuqe">راهکار های مختلف برای دور زدن فیل*ترینگ</a></p>
<p>5- <a href="http://feeds.feedburner.com/~r/1alireza/~3/406963524/204">داستان گوگل (قسمت چهارم)</a></p>
<p>6- <a href="http://www.1alireza.com/archives/201">داستان گوگل (قسمت سوم)</a></p>
<p>7- <a href="http://www.1alireza.com/archives/195">داستان گوگل (قسمت دوم)</a></p>
<p>8- <a href="http://www.1alireza.com/archives/192">داستان گوگل (قسمت اول)</a></p>
<p>9- <a href="http://bahramisoft.blogfa.com/post-99.aspx">نصب اتوماتيک و بدون دردسر ويندوز XP</a></p>
<p>10- <a href="http://toopaz.net/?p=242">آموزش پرداخت الکترونیکی توسط کارت بانک</a></p>
<p>11- <a href="http://zangoole.com/1387/07/07/batch-backup-script/">با نت پد یک پشتیبان‌گیر حرفه‌ای بسازید!</a></p>
<p>12- <a href="http://www.mohand.es/story/4755">همه چیز درباره ی adsl</a></p>
<p>13- <a href="http://www.shahvar.net/?p=2343">بازیابی پسورد ویندوز ایکس پی با Xp Password Remover Disk</a></p>
<p>14- <a href="http://p30design.net/1387/04/postrank-in-google-reader.html">خوراک‌های خود را در گوگل ریدر طبقه بندی کنید</a></p>
<p>15- <a href="http://feedproxy.google.com/~r/Mashable/~3/qVejAEvQXcU/">How to Connect Your Email Address to Your OpenID Account</a></p>
<p>16- <a href="http://feeds.problogdesign.com/~r/ProBlogDesign/~3/406379474/">25 Ways to Spice Up Blog Post Photos</a></p>
<p>&#160;</p>
<p><a href="http://lord386.wordpress.com/category/top_10/&#218;&#169;&#216;&#170;&#216;&#167;&#216;&#168;&#217;&#8225;&#216;&#167;&#219;&#338;-&#216;&#167;&#217;&#8222;&#218;&#169;&#216;&#170;&#216;&#177;&#217;&#710;&#217;&#8224;&#219;&#338;&#218;&#169;&#219;&#338;/"><b>کتابهای الکترونیکی</b></a> - <font color="#8000ff">کتابهای الکترونیکی انگلیسی و فارسی ، مجلات الکترونیکی</font></p>
<p>1- <a href="http://itline.ir/2008/09/vater-und-sohn-pdf-book/">کتاب قصه های من و بابام</a></p>
<p>2- <a href="http://ebook4us.blogfa.com/post-1607.aspx">Home-Based Business For Dummies</a>&#160; <font color="#008000">(تجارت خانگی)</font></p>
<p>&#160;</p>
<p><a href="http://lord386.wordpress.com/category/top_10/&#216;&#167;&#216;&#168;&#216;&#178;&#216;&#167;&#216;&#177;&#217;&#8225;&#216;&#167;&#219;&#338;-&#217;&#710;&#216;&#168;&#217;&#8222;&#216;&#167;&#218;&#175;/"><b>وبلاگ</b></a> -&#160; <font color="#8000ff">ابزارهای وبلاگ ، نکته های وبلاگی</font></p>
<p>1- <a href="http://feeds.feedburner.com/~r/shahvar/feed/~3/407218226/">تبلیغات در وردپرس - به همین سادگی</a></p>
<p>2- <a href="http://naatamam.blogfa.com/post-1771.aspx">استفاده مجانی از دایرةالمعارف بریتانیکا برای وبلاگ نویسان و سایتها</a></p>
<p>3- <a href="http://weblogchi.wordpress.com/2008/09/29/freshy-icon/">آیکن هایی برای وردپرس شما « WEBLOGCHI</a></p>
<p>4- <a href="http://feeds.feedburner.com/~r/parsish/~3/406515134/">قالب وردپرس Librio فارسی</a></p>
<p>5- <a href="http://glassyworld.wordpress.com/2008/09/30/persian-spelling-for-wlw/">دریافت غلطگیر املایی خودکار فارسی برای لایو رایتر</a> ***</p>
<p>6- <a href="http://glassyworld.wordpress.com/2008/09/29/&#216;&#170;&#216;&#186;&#219;&#338;&#219;&#338;&#216;&#177;-&#216;&#170;&#216;&#185;&#216;&#175;&#216;&#167;&#216;&#175;-&#217;&#8224;&#217;&#8230;&#216;&#167;&#219;&#338;&#216;&#180;-&#217;&#8230;&#216;&#183;&#216;&#167;&#217;&#8222;&#216;&#168;-&#216;&#175;&#216;&#177;-&#217;&#8222;&#216;&#167;&#219;&#338;&#217;&#710;-&#216;&#177;&#216;&#167;&#219;&#338;&#216;&#170;&#216;&#177;/">تغییر تعداد نمایش مطالب در لایو رایتر</a></p>
<p>7- <a href="http://feedproxy.google.com/~r/techiebuzz/~3/o5TgZwv1PJ0/managing-your-wordpress-comments-from-the-desktop.html">Managing Your WordPress Comments From The Desktop?</a></p>
<p>8- <a href="http://feedproxy.google.com/~r/Mashable/~3/TSlEVu78o8Q/">The 7 Weirdest and Wackiest Uses for WordPress</a></p>
<p>9- <a href="http://feedproxy.google.com/~r/Mashable/~3/gzSpGfySuT4/">8 WordPress Plugins for Page Management</a></p>
<p>10- <a href="http://feedproxy.google.com/~r/Mashable/~3/_E2Ea8_XKlw/">The Top 12 RSS Plugins for WordPress</a></p>
<p>11- <a href="http://feedproxy.google.com/~r/Mashable/~3/QDXO3y-dbNY/">30+ Plugins to Make Your WordPress Blog More Social</a></p>
<p>&#160;</p>
<p><a href="http://lord386.wordpress.com/category/top_10/&#216;&#185;&#218;&#169;&#216;&#179;/"><b>عکس</b></a> -&#160; <font color="#8000ff">عکس های جالب</font></p>
<p>1- <a href="http://irpic.wordpress.com/2008/09/29/&#217;&#8222;&#216;&#168;-&#216;&#170;&#216;&#180;&#217;&#8224;&#217;&#8225;/">لب تشنه</a> ***</p>
<p>2- <a href="http://websaz.wordpress.com/2008/10/01/&#216;&#167;&#216;&#179;&#216;&#170;&#216;&#170;&#216;&#167;&#216;&#177;-&#216;&#178;&#217;&#8224;&#216;&#168;&#217;&#710;&#216;&#177;-&#216;&#185;&#216;&#179;&#217;&#8222;/">استتار زنبور عسل</a></p>
<p>3- <a href="http://feeds.feedburner.com/~r/Mer30/~3/408000073/">عکس ماشینهای اسپرت</a></p>
<p>4- <a href="http://feeds.feedburner.com/~r/Mer30/~3/408000061/">عکسهای دیدنی</a></p>
<p>5- <a href="http://babrmazandaran1.blogfa.com/post-183.aspx">گلشیفته فراهانی و لئوناردو دی کاپریو</a></p>
<p>6- <a href="http://links.p30download.com/archives/11218.php">عکس‌هایی از حرفه‌ای‌ترین اتومبیل‌های دودر جهان</a></p>
<p>7- <a href="http://moosa.tamizi.com/?p=133">تصاویری از دبی در سال ۱۹۶۰ !</a></p>
<p>8- <a href="http://glassyworld.wordpress.com/2008/09/29/funny-army-pictures/">تصاویری زیبا از جنگ ها</a></p>
<p>9- <a href="http://ebhamlink2.blogfa.com/page/appleart.aspx">خلق آثار هنری کم نظیر با سیب!</a></p>
<p>10- <a href="http://www.hongkiat.com/blog/100-absolutely-beautiful-nature-wallpapers-for-your-desktop/">100+ Absolutely Beautiful Nature Wallpapers For Your Desktop</a></p>
<p>&#160;</p>
<p><a href="http://lord386.wordpress.com/category/top_10/&#216;&#179;&#217;&#8222;&#216;&#167;&#217;&#8230;&#216;&#170;&#219;&#338;/"><b>سلامتی</b></a> - <font color="#8000ff">اخبار پزشکی سلامت</font></p>
<p>1- <a href="http://iranew.blogfa.com/post-411.aspx">قلب و تنگي نفس</a></p>
<p>&#160;</p>
<p><a href="http://lord386.wordpress.com/category/top_10/&#218;&#175;&#217;&#710;&#217;&#8224;&#216;&#167;&#218;&#175;&#217;&#710;&#217;&#8224;/"><b>گوناگون</b></a> - <font color="#8000ff">مطالب جالب ، دیگر مطالب</font></p>
<p>1- <a href="http://feeds.feedburner.com/~r/luw/~3/408016438/post-200.aspx">هشت اختراع جالب ساعت های زنگ دار</a> ***</p>
<p>2- <a href="http://feeds.feedburner.com/~r/luw/~3/408003005/post-198.aspx">نا گفته های زبان فارسی</a></p>
<p>3- <a href="http://feeds.feedburner.com/~r/Mer30/~3/408000084/">بيوگرافی کامل محسن يگانه از زبان خودش</a></p>
<p>4- <a href="http://feeds.feedburner.com/~r/Narenji/~3/407953284/">معماری متفاوت: برجی که به شکل W خواهد بود</a> ***</p>
<p>5- <a href="http://www.asriran.com/fa/pages/?cid=53360">داستان سرباز هیتلر که در قلب اش روزه گرفت</a> ***</p>
<p>6- <a href="http://feeds.feedburner.com/~r/luw/~3/405985626/">تهران و محله هایش</a></p>
<p>7- <a href="http://feedproxy.google.com/~r/readwriteweb/~3/Jp1WkoUMoSs/top_10_youtube_videos_of_all_time_2008.php">Top 10 YouTube Videos of All Time, 2008 Edition</a></p>
<p>&#160;</p>
<p><font size="3">©</font> نوشته lord386 در وبلاگ <a href="http://lord386.wordpress.com"><font color="#0080ff">لینکهای داغ از سراسر وب</font></a> » <a href="http://feeds.feedburner.com/lord386">مشترک <font color="#ff0000">خوراک</font> شوید</a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[One step closer to becoming an official staff of GE]]></title>
<link>http://endoru.wordpress.com/?p=361</link>
<pubDate>Wed, 01 Oct 2008 13:57:29 +0000</pubDate>
<dc:creator>endoru</dc:creator>
<guid>http://endoru.wordpress.com/2008/10/01/one-step-closer-to-becoming-an-official-staff-of-ge/</guid>
<description><![CDATA[
A step closer to my dream


Me with a peace sign at GE podium

Today marks the day that I am one st]]></description>
<content:encoded><![CDATA[<p style="text-align:center;"><img class="aligncenter size-full wp-image-33" title="Spacer" src="http://endoru.wordpress.com/files/2008/01/spacer.gif" alt="" width="300" height="30" /></p>
<h1 style="text-align:center;">A step closer to my dream</h1>
<p style="text-align:center;"><img class="aligncenter size-full wp-image-33" title="Spacer" src="http://endoru.wordpress.com/files/2008/01/spacer.gif" alt="" width="300" height="30" /></p>
<p style="text-align:center;"><img class="aligncenter size-large wp-image-362" title="GE Pre-offered Reception" src="http://endoru.wordpress.com/files/2008/10/img_6984.jpg?w=720" alt="" width="504" height="672" /></p>
<p style="text-align:center;">Me with a peace sign at GE podium</p>
<p style="text-align:center;"><img class="aligncenter size-full wp-image-33" title="Spacer" src="http://endoru.wordpress.com/files/2008/01/spacer.gif" alt="" width="300" height="30" /></p>
<p style="text-align:left;">Today marks the day that I am one step closer to becoming an official staff of GE. The whole reception today started off with a simple rehearsal and then, continued with the introduction of all the pre-offered. In between, we had a couple of CEOs from different businesses who gave us the welcome messages saying how proud we should be to be able to join the GE family. Had an absolutely enjoyable time with my future colleagues and this makes me really want to start working as soon as possible ! It takes time to explain everything that happened today so I am leaving you with the pictures to explain to you. Enjoy them ! :)</p>
<p style="text-align:center;"><img class="aligncenter size-full wp-image-33" title="Spacer" src="http://endoru.wordpress.com/files/2008/01/spacer.gif" alt="" width="300" height="30" /></p>
<h2 class="UIMediaHeader_Title">GE Pre-offered 2009 Batch Reception Event</h2>
<p style="text-align:left;">URL: <a href="http://www.new.facebook.com/album.php?aid=36528&#38;l=f94d9&#38;id=695687901" target="_blank"><span>http://www.new.facebook.com/album.php?aid=36528&#38;l=f94d9&#38;id=695687901</span></a></p>
<p style="text-align:center;"><img class="aligncenter size-full wp-image-33" title="Spacer" src="http://endoru.wordpress.com/files/2008/01/spacer.gif" alt="" width="300" height="30" /></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[A Great Batch Script]]></title>
<link>http://brokenremote.wordpress.com/?p=95</link>
<pubDate>Sat, 27 Sep 2008 12:29:13 +0000</pubDate>
<dc:creator>Broken Remote</dc:creator>
<guid>http://brokenremote.wordpress.com/2008/09/27/a-great-batch-script/</guid>
<description><![CDATA[Just drop this code into a .bat file, then run it any time you need to restart the explorer.exe proc]]></description>
<content:encoded><![CDATA[<p>Just drop this code into a .bat file, then run it any time you need to restart the explorer.exe process. Tested to work on Windows Vista.</p>
<div style="background-color:#CCC;font-family:Andale Mono, monospace;">
@echo off<br />
taskkill /f /IM explorer.exe<br />
explorer.exe
</div>
]]></content:encoded>
</item>
<item>
<title><![CDATA[TMPcleaner]]></title>
<link>http://begeistret.wordpress.com/?p=51</link>
<pubDate>Wed, 17 Sep 2008 22:35:02 +0000</pubDate>
<dc:creator>jhnzn</dc:creator>
<guid>http://begeistret.wordpress.com/2008/09/18/tmpcleaner/</guid>
<description><![CDATA[Da har jeg programmert et lite program i batch. Har aldri vært så begeistret for batch-scripting, ]]></description>
<content:encoded><![CDATA[<p>Da har jeg programmert et lite program i batch. Har aldri vært så begeistret for batch-scripting, men jeg fant ut at jeg skulle lage et lite nyttig program i batch.</p>
<p>Jeg har døpt programmet TMPcleaner (Kort for Temporary files Cleaner). Det er et program som rydder opp å sletter miderligtidige filer på datamaskinen, som ikke brukes til noe, å som bare tar opp plass å gjøre PCen treg.</p>
<p>Programmet kan lastes ned <a title="TMPcleaner" href="http://rapidshare.de/files/40497281/TMPcleaner_-_Extract_to_install.rar.html">HER</a></p>
<p>Bare pakk ut filene, og åpne "Run TMPcleaner"<br></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[AR RAM Disk]]></title>
<link>http://aaarticles.wordpress.com/?p=129</link>
<pubDate>Sun, 14 Sep 2008 02:11:37 +0000</pubDate>
<dc:creator>kashaan143</dc:creator>
<guid>http://aaarticles.wordpress.com/2008/09/14/ar-ram-disk/</guid>
<description><![CDATA[AR RAM Disk is a driver for Windows NT/2000/XP used to create an additional drive in your memory. Th]]></description>
<content:encoded><![CDATA[<p><span style="font-size:10pt;font-family:Verdana;">AR RAM Disk is a driver for Windows NT/2000/XP used to create an additional drive in your memory. This drive can be used for storing temporary files, this can increase your system speed. </span></p>
<p><span style="font-size:10pt;font-family:Verdana;">http://www.arsoft-online.de/download/ramdisk.zip</span></p>
<p><span style="font-size:10pt;font-family:Verdana;">Read more...</span></p>
<p><span style="font-size:10pt;font-family:Verdana;">Using the RAM Disk Setup the Windows TEMP Directory to the RAM Disk:</span></p>
<p><span style="font-size:10pt;font-family:Verdana;">1. Create a Batch File with the following content:<br />
set TEMP=T:<br />
set TMP=T: </span></p>
<p><span style="font-size:10pt;font-family:Verdana;">2.Put this Batch File into the Startup Folder of Windows. </span></p>
<p><span style="font-size:10pt;font-family:Verdana;">Warning:</span></p>
<p><span style="font-size:10pt;font-family:Verdana;">Use AR Soft RAM Disk at your own risk.<br />
Using large amount of memory for the RAM Disk can cause problems with other drivers or programs.<br />
Notes:<br />
If you reboot your system all contents of the RAM Disk will be lost!<br />
The theoretical maximum capacity of the RAM Disk is 2GB.<br />
If driver fails to allocate the memory, the driver does not start. The driver writes an event record into the Event Log. Please look into the Event Viewer for more details of the error.<br />
Package contains:<br />
RAM Disk Driver for Windows NT or Windows 2000/XP<br />
RAM Disk Control Panel Applet </span></p>
<p class="MsoNormal"><!--[if !supportEmptyParas]--> <!--[endif]--></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Things You Can Batch to Save Time]]></title>
<link>http://listsforlife.wordpress.com/?p=77</link>
<pubDate>Thu, 11 Sep 2008 16:09:17 +0000</pubDate>
<dc:creator>Chris</dc:creator>
<guid>http://listsforlife.wordpress.com/2008/09/11/things-you-can-batch-to-save-time/</guid>
<description><![CDATA[
Washing
Ironing
Answering emails
Cleaning
Phone Calls
Meeting friends (organise one big party - any]]></description>
<content:encoded><![CDATA[<ul>
<li>Washing</li>
<li>Ironing</li>
<li>Answering emails</li>
<li>Cleaning</li>
<li>Phone Calls</li>
<li>Meeting friends (organise one big party - any excuse!)</li>
<li>Washing up</li>
<li>Cooking (prepare a load of meals in advance)</li>
<li>Paying bills</li>
<li>Sorting paperwork</li>
<li>Reading (probably smaller articles)</li>
</ul>
<p><strong><em>What do you batch to save time?</em></strong></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[iTunify]]></title>
<link>http://khannibal.wordpress.com/?p=173</link>
<pubDate>Wed, 10 Sep 2008 22:13:04 +0000</pubDate>
<dc:creator>François</dc:creator>
<guid>http://khannibal.wordpress.com/2008/09/11/itunify/</guid>
<description><![CDATA[Par ici la sortie !

]]></description>
<content:encoded><![CDATA[<p><a href="http://www.cuk.ch/articles/3944">Par ici la sortie !</a><br />
<!--more--></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[My Training Center for CCNA…]]></title>
<link>http://ccnastandsfor.wordpress.com/?p=29</link>
<pubDate>Wed, 10 Sep 2008 20:22:01 +0000</pubDate>
<dc:creator>aeolianwp</dc:creator>
<guid>http://ccnastandsfor.wordpress.com/2008/09/10/my-training-center-for-ccna%e2%80%a6/</guid>
<description><![CDATA[Following is a short description to my CCNA Training Institute, (IIHT) [DADAR, Mumbai].
Following is]]></description>
<content:encoded><![CDATA[<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:small;font-family:Calibri;">Following is a short description to my CCNA Training Institute, (IIHT) [DADAR, Mumbai].</span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:small;font-family:Calibri;">Following is a data from my mail to some aspirant of CCNA Certification. I tried my best to give exact details of IIHT DADAR Institute(Mumbai). </span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:small;font-family:Calibri;">So bare with following details, </span></p>
<blockquote>
<p class="MsoNormal" style="line-height:14.4pt;margin:0;"><span style="color:#333333;"><span style="font-size:small;"><span style="font-family:Calibri;">I have enrolled for IIHT Dadar center [Mumbai], since I have attended not more than 6 lectures institute have conducted, my course has just began.</span></span></span></p>
<p class="MsoNormal" style="line-height:14.4pt;margin:0;"><span style="color:#333333;"><span style="font-size:small;"><span style="font-family:Calibri;"> </span></span></span></p>
<p class="MsoNormal" style="line-height:14.4pt;margin:0;"><span style="color:#333333;"><span style="font-size:small;"><span style="font-family:Calibri;">Faculty and Labs from IIHT Dadar are excellent, faculty have done there CCNPs and other Professional courses in regards with the Course they are conducting [CCNA in case here].</span></span></span></p>
<p class="MsoNormal" style="line-height:14.4pt;margin:0;"><span style="color:#333333;"><span style="font-size:small;"><span style="font-family:Calibri;">Labs at Dadar have some good equipment for hands-on for routers and switches.</span></span></span></p>
<p class="MsoNormal" style="line-height:14.4pt;margin:0;"><span style="color:#333333;"><span style="font-size:small;"><span style="font-family:Calibri;"> </span></span></span></p>
<p class="MsoNormal" style="line-height:14.4pt;margin:0;"><span style="color:#333333;"><span style="font-size:small;"><span style="font-family:Calibri;">but you have to confirm with your course timing as soon as possible you took admission for Course, I have chosen to take a Sunday batch [ mostly of 3 hrs] since I will be looking for job, in weekdays. I have completed my Graduation.</span></span></span></p>
<p class="MsoNormal" style="line-height:14.4pt;margin:0;"><span style="color:#333333;"><span style="font-size:small;"><span style="font-family:Calibri;">Regular batches I think are of 1 hr.</span></span></span></p>
<p class="MsoNormal" style="line-height:14.4pt;margin:0;"><span style="color:#333333;"><span style="font-size:small;"><span style="font-family:Calibri;"> </span></span></span></p>
<p class="MsoNormal" style="line-height:14.4pt;margin:0;"><span style="color:#333333;"><span style="font-size:small;font-family:Calibri;">The Institute will expect some networking knowledge before to your CCNA course [E+ OR N+ ]. My </span><a href="http://bsc.it/" target="_blank"><span style="color:#003399;text-decoration:none;"><span style="font-size:small;font-family:Calibri;">BSc.IT</span></span></a><span style="font-size:small;"><span style="font-family:Calibri;"> background was eligible enough for Course. </span></span></span></p>
<p class="MsoNormal" style="line-height:14.4pt;margin:0;"><span style="color:#333333;"><span style="font-size:small;"><span style="font-family:Calibri;"> </span></span></span></p>
<p class="MsoNormal" style="line-height:14.4pt;margin:0;"><span style="color:#333333;"><span style="font-size:small;"><span style="font-family:Calibri;">Since no eligibility is required for the CCNA course; you should be having some prior knowledge or experience with Networking for your sake.</span></span></span></p>
<p class="MsoNormal" style="line-height:14.4pt;margin:0;"><span style="color:#333333;"><span style="font-size:small;"><span style="font-family:Calibri;"> </span></span></span></p>
<p class="MsoNormal" style="line-height:14.4pt;margin:0;"><span style="font-size:small;"><span style="font-family:Calibri;"><span style="color:#333333;">At IIHT Dadar they are referring Todd Lammle's CCNA book. No direct Study material but for personal reference.</span><span style="font-size:10pt;color:#333333;font-family:&#34;"></span></span></span></p>
</blockquote>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:small;font-family:Calibri;"> </span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:small;font-family:Calibri;">If you got some interest in Following This Institute for your Dream Certifications [many available certifications include from REDHAT, CompTia, SUN SOLARIS, and ORACLE]. And many more updates, </span><a href="http://www.iiht.com/"><span style="font-size:small;font-family:Calibri;">www.iiht.com</span></a><span style="font-size:small;font-family:Calibri;">; for IIHTDADAR go </span><a href="http://www.iihtdadar.com/"><span style="font-size:small;font-family:Calibri;">www.iihtdadar.com</span></a><span style="font-size:small;font-family:Calibri;">.</span></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Creating an Automated Install of WindowsXP]]></title>
<link>http://aaarticles.wordpress.com/?p=34</link>
<pubDate>Wed, 10 Sep 2008 04:45:17 +0000</pubDate>
<dc:creator>kashaan143</dc:creator>
<guid>http://aaarticles.wordpress.com/2008/09/10/creating-an-automated-install-of-windowsxp/</guid>
<description><![CDATA[On the WindowsXP CP, in the SUPPORT\TOOLS directory,
there is a file called DEPLOY.CAB.
Extract the ]]></description>
<content:encoded><![CDATA[<p>On the WindowsXP CP, in the SUPPORT\TOOLS directory,<br />
there is a file called DEPLOY.CAB.<br />
Extract the programs DEPLOY.CHM (help file) and SETUPMGR.EXE (main program)<br />
Run SETUPMGR and answer the prompts.<br />
This will create both a unattend.bat and unattend.txt file you can use for automated installs.<br />
Note: The batch file might need some minor modification for file locations but it is fairly basic.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[[Linux] Videos auf der Konsole schneiden]]></title>
<link>http://commitsuicide.wordpress.com/2008/09/03/linux-videos-auf-der-konsole-schneiden/</link>
<pubDate>Wed, 03 Sep 2008 09:07:11 +0000</pubDate>
<dc:creator>Chris</dc:creator>
<guid>http://commitsuicide.wordpress.com/2008/09/03/linux-videos-auf-der-konsole-schneiden/</guid>
<description><![CDATA[Gestern habe ich den &#8220;Digitales Grundrauschen&#8221;-Podcast Nr. 3 geh&#xF6;rt und in diesem s]]></description>
<content:encoded><![CDATA[<p>Gestern habe ich den <a href="http://digitalesgrundrauschen.de/" target="_blank">"Digitales Grundrauschen"-Podcast Nr. 3</a> geh&#xF6;rt und in diesem sollte als "Geek-Tipp" Videobeschneidung mit Applescript erkl&#xE4;rt werden...</p>
<p><!--more--><br />
Ausgangsposition war, dass der Referierende den Podcast "<a href="http://www.prosieben.de/spielfilm_serie/afterworld/" target="_blank">Afterworld</a>" h&#xF6;rt. Dieser hat aber immer einen Vorspann, der beim Konsum von mehreren Folgen schnell nerven kann. Also war die Grundidee, dass man den Vorspann und den Abspann mittels eines Batch-Scripts aus den Dateien abschneidet. Nur leider haben die Jungs vom Digitalen Grundrauschen es mittels Applescript nicht geschafft, die beschnittenen Dateien zu speichern...</p>
<p>Da ich aber eh nicht auf Mac OSX arbeite, hat sich mir die Frage gestellt, ob und wie das auf der Bash, der Linux-Shell geht...</p>
<p>Schnell war die L&#xF6;sung gefunden: <strong>Mplayer</strong>, bzw. <strong>Mencoder</strong>!<br />
Beide Tools befinden sich in den Standard-Ubuntu-Repositories und k&#xF6;nnen schnell installiert werden:<br />
<code>sudo apt-get install mplayer mencoder</code></p>
<p>Der Schnitt geht schnell und einfach:<br />
<code><br />
mencoder input.avi -ovc copy -oac mp3lame -ss 12 -endpos 5 -o output.avi<br />
</code><br />
<strong>Erkl&#xE4;rung der Parameter:</strong><br />
<strong>-ovc copy</strong>: den Original Video Codec der Input-Datei &#xFC;bernehmen<br />
<strong>-oac mp3lame</strong>: den Original Audio Codec der Input-Datei als MP3-codierten Stream &#xFC;bernehmen<br />
<strong>-ss 12</strong>: Seek Start beginnt ab der Position 12 Sekunden der Input-Datei<br />
<strong>-endpos 5</strong>: Die Kodierung endet 5 Sekunden vor dem Ende der Input-Datei<br />
<strong>-o output.avi</strong>: Ausgabe (Output) erfolg nach Datei "output.avi"</p>
<p>Mit diesen Angaben l&#xE4;sst sich schnell eine Batch-Datei schreiben, die &#xFC;ber alle Filme in einem Ordner geht und diese zurechtstutzt... T&#xF6;fte Angelegenheit! Ein Grund mehr, warum ich Linux so toll finde!</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[PAX 08: PAX inspired Rock Band DLC announced]]></title>
<link>http://rockvemil.wordpress.com/?p=9</link>
<pubDate>Sun, 31 Aug 2008 10:36:16 +0000</pubDate>
<dc:creator>rockvemil</dc:creator>
<guid>http://rockvemil.wordpress.com/2008/08/31/pax-08-pax-inspired-rock-band-dlc-announced/</guid>
<description><![CDATA[Admittedly, we&#8217;re a bit late on informing you about the latest batch of upcoming Rock Band dow]]></description>
<content:encoded><![CDATA[<p>Admittedly, we're a bit late on informing you about the latest batch of upcoming Rock Band downloadable content, but we've been busy touring Microsoft's campus and doing other PAX things. Please forgive us. But no matter the date, ...<br>www.xbox360fanboy.com</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[WRT54G/Tomato 1.21 Reconnect-Batchfile]]></title>
<link>http://jultech.wordpress.com/?p=20</link>
<pubDate>Sat, 30 Aug 2008 13:59:36 +0000</pubDate>
<dc:creator>Julian</dc:creator>
<guid>http://jultech.wordpress.com/2008/08/30/wrt54g-tomato-reconnect-batchfile/</guid>
<description><![CDATA[Some of you pirating people are downloading stuff from Rapidshare. Rapidshare, among other providers]]></description>
<content:encoded><![CDATA[<p>Some of you pirating people are downloading stuff from Rapidshare. Rapidshare, among other providers of free online storage and downloads, employ a policy that lets the user download a certain amount of data and then forces him to wait for a couple of hours before being able to again download something.</p>
<p>People (who are on dynamic ip connections) usually circumvent this by restarting (also 'resetting') their router. Some are clever enough to utilize tools for that task that log into your router and reset the connection.</p>
<p>People using Tomato however have been unable to use some of the Software written for that task, because as of Tomato 1.14 (<a href="http://www.polarcloud.com/tomato_114" target="_blank">changelog</a>), in which the author fixed a cross site scripting vulnerability, just calling a URL on the Web-Interface won't do it anymore.</p>
<p>I have written a php-script started by a batchfile that will let you reconnect your Tomato-running router with one click and no other tools than the ones provided.</p>
<p><!--more--></p>
<p>The thing that Jon, the author of the Tomato and previously Tofu Firmware did was the following: He introduced a POST-variable into every form of the Web-Interface that would be transmitted upon clicking a button. As the content of this variable is created randomly after the first bootup of your router, a perpetrator using javascript to access your router's WebIf would have no way of executing anything, as he doesn't know that particular, 19 character long code.</p>
<p>You only do get to see this code when you log into your router's WebIf - for which you need your router's password - and view the source code. Since you probably want to save yourself the trouble of everytime hitting a shitload of buttons to reconnect your router, i wrote a script that retrieves that aforementioned POST-variable by logging into your router's WebIf and afterwards submitting the commands for disconnection of the WAN-port and consecutive reconnection of the latter.</p>
<p>A short explanation on the files contained in the package:</p>
<ul>
<li><em>routerreconnect.php</em><br />
the script that i wrote and does all the work - <strong>edit this for your webif-password and router ip</strong></li>
<li><em>routerreconnect.bat</em><br />
the batch-file that calls the script</li>
<li><em>exec</em> - a folder containing files required for the script to work
<ul>
<li><em>php.exe</em>, <em>php.ini</em>, <em>php5ts.dll</em><br />
a very rudimentary distribution of php5(.2.6) - the ini file is the recommended version with curl-support edited into it - <span style="color:#c0c0c0;">PHP License 3.0.1</span></li>
<li><em>php_curl.dll</em><br />
the curl php module required to send the commands to the router - <span style="color:#c0c0c0;">PHP License 3.0.1</span></li>
<li><span style="color:#c0c0c0;"><span style="color:#000000;"><em>ssleay32.dll</em>, <em>libeay32.dll - </em></span>Apache-style licence </span><span style="color:#c0c0c0;"><span style="color:#000000;"><br />
openssl files that are required for the curl extension to run (we're not accessing ssl sites, but go on and try to disable that function in the module!)</span></span></li>
</ul>
</li>
</ul>
<p>I have tested this combination on computers that run neither php, nor openssl and it should work just fine on yours as well. This script has been tested with Tomato 1.19 and 1.21 (the latest one at the time of this posting) and worked well with both of them. As the WebIf doesn't return any data after triggering its reconnection-function, it's hard to debug if something goes wrong, hence i didn't include any real status messages.</p>
<p>Anyway, here's the download: <a href="http://rapidshare.com/files/139085642/router_reconnect_for_tomato_1.21.zip" target="_blank">router_reconnect_for_tomato_1.21.zip</a> (2,92MiB from Rapidshare)<br />
Mirrors: <a href="http://www.megaupload.com/?d=BNOMFHO2" target="_blank">Megaupload</a> <a href="http://www.mediafire.com/?sharekey=83aef54057555f05ab1eab3e9fa335cabd2684d59277c153" target="_blank">Mediafire</a></p>
<p>I'm not guaranteeing anything, but since the script shouldn't break anything either, just try it, alright?</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Mass (Batch) Photos Resizing in Photoshop]]></title>
<link>http://wienmandu.wordpress.com/?p=1581</link>
<pubDate>Thu, 28 Aug 2008 10:09:23 +0000</pubDate>
<dc:creator>wienmandu</dc:creator>
<guid>http://wienmandu.wordpress.com/2008/08/28/mass-batch-photos-resizing-in-photoshop/</guid>
<description><![CDATA[Have you ever come across a problem like one that I had last week, when I had to resize a total of 2]]></description>
<content:encoded><![CDATA[<p style="text-align:justify;">Have you ever come across a problem like one that I had last week, when I had to resize a total of 200 photos as a batch at once together? These were those photos that I had shot while Pushkar Shah's visit in Vienna. I had to post them to NESAS's Blog. I had resized some 10-15 photos one by one. In order to reduce the dimensions and the memory-size of those photos, I had to do the same tiring process repeatedly and precautiously. Then I googled out and found that it was very interesting and easy too. Now, my dream to shorten and automatise the process without being there for several hours for a tremendous number of photos has come true and I would be perhaps in Shopping Mall or lying on the bed and listening to the music and the Photoshop will this for me without a pause and with precision. Let's see how it works -</p>
<p style="text-align:justify;">First of all, copy the original photos and put into a new Folder. In case of mistake, you won't lose original photos. If you have Horizontal and Vertical photos together, copy them to two separate folders for further process.</p>
<p style="text-align:justify;"><strong>Process</strong></p>
<p style="text-align:justify;">1. The aforementioned process of backing up the original photos and starting to work on the photos in New Folder.</p>
<p>2. Open the Folder then open any photo of them in Photoshop. Then go to Menu and click</p>
<p><em>Window</em> then <em>Actions</em> to make the Action palette visible.</p>
<p>3. At the bottom of the palette, you'll see a small icon for <em>New Page</em> click on that to create a new action. Give it a name and click <em>OK</em>.</p>
<p>4.Then at the bottom of this palette, click the small circular button for <em>Begin Recording</em>. This has a VCR-like functionality that will record all of your actions after you click on <em>Begin Recording Icon</em> and store them so that they can be repeated on other images.</p>
<p>5. On the Menu click on <em>Image</em> then <em>Image Size</em> or Strg/Ctrl + Alt + I is the shortcut for that. Here, specify the new image dimensions; you can change the select pop-ups for either the <em>Pixel Dimension</em> group or <em>Document Size</em> to change the units. Either one of those will resize it correctly. Click on <em>OK</em> when you're done.</p>
<p>6. On the Menu click on <em>File</em> then click either <em>Save As</em> to save in the same resolution or <em>Save for Web</em> in order to change the resolution further and <em>Save</em> it to whatever location (you can specify a new folder too) with the right format, compression, and output settings.</p>
<p>7. Now go back to the <em>Actions Palette</em> and click the small square button or icon for <em>Stop Recording</em> to stop and save the recording. Then close the currently opened image.</p>
<p>8. You are now ready to automate the process, for that go to <em>File</em> then <em>Automate</em> then <em>Batch</em>. Set these settings as follow:</p>
<p>Action: the action you just created<br />
Source: Folder Choose...: select the folder where your images to process are<br />
Destination: Save and Close<br />
Override Action "Save As" Command: No<br />
Click <em>OK</em> and let Photoshop process all your photos. When it finishes, all your images should be resized in a new folder (if you set had that).</p>
<p style="text-align:justify;"><span><span style="color:#ddaa88;">References<br />
</span></span><a title="AmyWilliansDesign" href="http://www.amywilliamsdesign.com/blog/2008/06/08/how-to-resize-images/">AmyWilliamsDesign.com</a><br />
<a title="VBulletin" href="http://www.vbulletin.com/forum/showthread.php?t=177759#5">VBulletin.com</a></p>
<p><span style="color:#ddaa88;"><span>Related<br />
<a title="EarningwithGoogle" href="http://wienmandu.wordpress.com/2008/08/26/earning-with-google-adsense/">Earning with Google AdSense</a><br />
</span></span><a title="ANepaliCyclingAmbassador" href="http://wienmandu.wordpress.com/2008/08/10/pushkar-shah-a-nepali-cycling-ambassador/">Pushkar Shah : A Nepali Cycling-Ambassador</a><br />
<a title="Pushkar Shah" href="http://nesas-austria.blogspot.com/2008/08/world-tour-on-two-wheels-pushkar-shah.html">World Tour on two-wheels : Pushkar Shah</a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Pro coder custom edition]]></title>
<link>http://procoderce.wordpress.com/?p=3</link>
<pubDate>Wed, 27 Aug 2008 01:24:04 +0000</pubDate>
<dc:creator>bladedog26</dc:creator>
<guid>http://procoderce.wordpress.com/2008/08/27/pro-coder-custom-edition/</guid>
<description><![CDATA[Hello everybody, I just got finished making my first program that I&#8217;m going to sell!
This prog]]></description>
<content:encoded><![CDATA[<p>Hello everybody, I just got finished making my first program that I'm going to sell!</p>
<p>This program, is called pro coder custom edition for a reason, It fits your style, and the feel of how you code.</p>
<p>Features:</p>
<p>1. Holds commands</p>
<p>2. Lets you test the script before you save it! (batch, html, vbs (Visual basic script, visual basic script is a bit glitchy with test).)</p>
<p>3. Full load</p>
<p>4. Full save</p>
<p>5. Rename the buttons! :D</p>
<p>6. Change the background color, text color, and the text background color!</p>
<p>This program will be available for a low price as 5.00$</p>
<p>Here's a picture of the program.</p>
<p>http://flickr.com/photos/29945931@N02/2801513045/</p>
<p>I will need your IP, for security reasons. http://www.mediafire.com/download.php?toacabaiaa7 to download the IP checker, once done, send an email to blade1317@ymail.com with the IP it told you. This to ensure you or nobody else can scam the product, and legal investigations would have to go about.  Be sure to include the paypal name you will use (The one I'll see) in the email, with your IP. That way you'll be ensured your product. :)</p>
<p>Once you send me the email &#38; payment (Paypal) I will then email you the product.</p>
<p>Pay: <a title="Pro coder custom edition" href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&#38;business=blade1317%40ymail%2ecom&#38;item_name=Pro%20coder%20custom%20edition&#38;amount=5%2e00&#38;shipping=0%2e00&#38;no_shipping=1&#38;cn=Send%20me%20your%20email%20address&#38;tax=0%2e00&#38;currency_code=USD&#38;lc=US&#38;bn=PP%2dBuyNowBF&#38;charset=UTF%2d8" target="_blank">Buy now</a></p>
<p><img src="https://www.paypal.com/en_US/i/scr/pixel.gif" border="0" alt="" width="1" height="1" /></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Script Linux]]></title>
<link>http://paison.wordpress.com/?p=23</link>
<pubDate>Mon, 25 Aug 2008 16:13:07 +0000</pubDate>
<dc:creator>paison</dc:creator>
<guid>http://paison.wordpress.com/2008/08/25/script-linux/</guid>
<description><![CDATA[Ho scritto questo blog, principalmente per avere un posto dove salvare i miei script, in modo da non]]></description>
<content:encoded><![CDATA[<p>Ho scritto questo blog, principalmente per avere un posto dove salvare i miei script, in modo da non perderli in caso di rottura HD o formattazione forzata..</p>
<p>A destra, alcuni script .. ;)</p>
<p>Ciao ciao</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[[Onizuki Aruchu] Maid Bride - COMPLETE!]]></title>
<link>http://yqii.wordpress.com/?p=225</link>
<pubDate>Sun, 24 Aug 2008 16:15:12 +0000</pubDate>
<dc:creator>yqii</dc:creator>
<guid>http://yqii.wordpress.com/2008/08/24/onizuki-aruchu-maid-bride-complete/</guid>
<description><![CDATA[Last chapter of Maid Bride, sweet all the way through.
Maid Bride 04
RS | MF
Maid Bride batch (1-4)
]]></description>
<content:encoded><![CDATA[<p>Last chapter of Maid Bride, sweet all the way through.</p>
<p><strong>Maid Bride 04</strong></p>
<p><a href="http://rapidshare.com/files/139776080/_Onizuki_Aruchu__Maid_Bride_04__ENG_.rar" target="_blank">RS</a> &#124; <a href="http://www.mediafire.com/?3ptorgrrdu6" target="_blank">MF</a></p>
<p><strong>Maid Bride batch (1-4)</strong></p>
<p><a href="http://rapidshare.com/files/139776081/_Onizuki_Aruchu__Maid_Bride_1-4__ENG_.rar" target="_blank">RS</a> &#124; <a href="http://www.mediafire.com/download.php?aiglzodukmp" target="_blank">MF</a></p>
<p><img class="alignnone size-full wp-image-226" src="http://yqii.wordpress.com/files/2008/08/0ex0804_081.jpg" alt="" width="100" height="144" /></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Una de programación BAT; Pasando parametros.]]></title>
<link>http://lveaf.wordpress.com/?p=146</link>
<pubDate>Sun, 24 Aug 2008 14:11:04 +0000</pubDate>
<dc:creator>lag_0</dc:creator>
<guid>http://lveaf.wordpress.com/2008/08/24/una-de-programacion-bat-pasando-parametros/</guid>
<description><![CDATA[Quiero hacer un sencillo y simple apunte sobre la programación batch:
¿Como pasar parametros a un ]]></description>
<content:encoded><![CDATA[<p>Quiero hacer un sencillo y simple apunte sobre la programación batch:</p>
<p style="text-align:justify;"><strong>¿Como pasar parametros a un código batch?</strong><br />
El asunto es simple; Los parámetros, se quedan almacenados en las variables %0 (este, siempre será el nombre del fichero .bat que estamos ejecutando), %1, %2 y así consecutivamente por tanto es bien fácil leerlos; Un ejemplo de utilización sencillo sería un .bat que al pasar un parámetro lanzase ping sobre la IP a la que apuntamos, la cosa sería así:</p>
<p>El fichero test.bat sería así:</p>
<blockquote><p><span style="color:#003366;">ping.exe %1 <span style="color:#333399;">&#60;- Lanzamos ping contra el parametro 1.<br />
</span>@echo off <span style="color:#333399;">&#60;- Evitamos que se vea el comando que vamos a lanzar.<br />
</span>pause <span style="color:#333399;">&#60;- Pausamos la ventana para que no se cierre y se pueda leer</span>.</span></p></blockquote>
<p style="text-align:justify;">Y lo lanzaríamos con "<span style="color:#000080;">test.bat 127.0.0.1</span>".<br />
Fácil y bonito pero si no lo sabemos no podemos utilizarlo siendo un recurso con muchas posivildades para hacer output de información como por ejemplo un ping.<br />
Claro que este ejemplo es solo una introducción al mundo del batch pues en realidad se pueden hacer maravillas con ellos.... Otro día mas y mejor sobre el mundo .bat.</p>
]]></content:encoded>
</item>

</channel>
</rss>
