<?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>notepad2 &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://en.wordpress.com/tag/notepad2/</link>
	<description>Feed of posts on WordPress.com tagged "notepad2"</description>
	<pubDate>Sun, 29 Nov 2009 22:38:51 +0000</pubDate>

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

<item>
<title><![CDATA[Replace notepad]]></title>
<link>http://freewarebits.wordpress.com/2009/11/11/replace-notepad/</link>
<pubDate>Wed, 11 Nov 2009 14:16:53 +0000</pubDate>
<dc:creator>Mike</dc:creator>
<guid>http://freewarebits.wordpress.com/2009/11/11/replace-notepad/</guid>
<description><![CDATA[One of the most useful accessories bundled with Windows is Notepad, the built-in, no-frills text edi]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><!-- 		@page { margin: 2cm } 		P { margin-bottom: 0.21cm } 		H3 { margin-bottom: 0.21cm } 		A:link { so-language: zxx } -->One of the most useful accessories bundled with Windows is <a href="http://en.wikipedia.org/wiki/Notepad_%28Windows%29" target="_blank">Notepad</a>, the built-in, no-frills text editor. While intended for use with *.txt files, Notepad can actually open many different file types, including HTML, CSS, and *.bat files. People use it to capture all sorts of text, develop Web sites, write programs, manage their tasks, strip formatting from other sources, and more.</p>
<p>It&#8217;s versatility and simplicity make it an ideal candidate to improve upon, and therefore its no surprise that there are hundreds, if not thousands, of Notepad alternatives available.</p>
<h3>Notepad2</h3>
<p><img class="alignnone size-full wp-image-167" style="border:1px solid black;" title="notepad2" src="http://freewarebits.wordpress.com/files/2009/11/notepad2.jpg" alt="notepad2" width="598" height="340" /></p>
<p>The Notepad replacement I&#8217;ve used for the last few years is <a href="http://www.flos-freeware.ch/notepad2.html" target="_blank">Notepad2</a>. It retains the simplicity of Notepad, but adds some nice additional features. From the official site:</p>
<ul>
<li>Syntax highlighting: HTML, XML, PHP, ASP (JS, VBS), CSS, JavaScript, VBScript, C/C++, C#, Resource Script, Makefiles, Java, Visual Basic, Pascal, Assembly, SQL, Perl, Python, Configuration Files, Apache Config Files, PowerShell, Batch Files, Diff Files</li>
<li>Drag &#38; drop text editing inside and outside Notepad2</li>
<li>Basic regular expression search and replace</li>
<li>Useful word, line and block editing shortcuts</li>
<li>Rectangular selection (Alt+Mouse)</li>
<li>Brace matching, auto indent, long line marker, zoom functions</li>
<li>Support for Unicode, UTF-8, Unix and Mac text files</li>
<li>Open shell links</li>
<li>Mostly adjustable</li>
</ul>
<p>The syntax highlighting automatically applies coloring to the text Notepad2 identifies as belonging to any of those languages (e.g. HTML tags are colored blue). Rectangular selection allows you to copy, cut or paste a block of text that spans multiple rows, but not necessarily the full row. This is very useful for stripping out bullets in unordered lists, for example. Another feature I appreciate that&#8217;s not part of the official feature list is the display of line numbers. This lets you quickly know which line you are currently working on, and it also quickly identifies whether a long section of text is multiple lines, or one long word-wrapped line.</p>
<h3>The Replacement</h3>
<p>If you want to fully replace Notepad with Notepad 2 (i.e. delete Notepad and rename Notepad2 to Notepad), things can get a little tricky. Since Notepad is considered an essential system file, if you attempt to replace it, you will either get an error message, or Windows will actually overwrite your replacement file with the original. There are different ways to circumvent the issue with each Service Pack of Windows XP, and I&#8217;m guessing different ways again for Vista and Windows 7. Since I currently run Windows XP, I had to use a batch file to get it to work.</p>
<ol>
<li>Download <a href="http://www.flos-freeware.ch/notepad2.html" target="_blank">Notepad2</a> and extract anywhere.</li>
<li>Open up Notepad and paste in the following text.
<pre>@echo off
echo *IMPORTANT*
echo This will kill all open instances of Notepad.
echo To cancel, end this batch file now (ctrl+c), or hit any key to continue.
pause
echo Killing all instances of notepad running...
TASKKILL /F /IM notepad.exe /T
echo Backing up...
call :backup %systemroot%\servicepackfiles\i386
call :backup %systemroot%
call :backup %systemroot%\System32
call :backup %systemroot%\System32\dllcache
echo Installing...
copy notepad2.exe %systemroot%\servicepackfiles\i386\notepad.exe /y
copy notepad2.exe %systemroot%\notepad.exe /y
copy notepad2.exe %systemroot%\System32\notepad.exe /y
copy notepad2.exe %systemroot%\System32\dllcache\notepad.exe /y
echo Done.
pause
goto :end
:backup
call set npath=%1
set count=0
for %%i in (%npath%\notepad.original*.exe) do (
set nname=%%i
set /a count=count+1
)
echo backing up to %npath%\notepad.original%count%.exe
copy %npath%\notepad.exe %npath%\notepad.original%count%.exe /y
:end</pre>
</li>
<li>Save the file as <em>something</em><strong>.bat</strong> (not <em>something</em><strong>.txt</strong>) in the same directory where you extracted Notepad2.</li>
<li>Double-click on the *.bat file and follow the prompts.</li>
<li>If you get a Windows File Protection Message, click <strong>Cancel</strong>.</li>
</ol>
<p>With any luck, when you now click on Notepad from your Start menu, Notepad2 should load. Just a note, I had to search around the Internet and try a few different *.bat suggestions before I got one to work. I don&#8217;t remember where I found the one above, but it works for me. I also know that a batch file designed to replace Notepad on XP SP2 will not work on SP3. Anyway, I hope it works, as it&#8217;s well worth the replacement.</p>
<h3>Download Links</h3>
<ul>
<li><a href="http://www.flos-freeware.ch/notepad2.html" target="_blank">Notepad2</a></li>
</ul>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[11 Tools Every ASP.NET Programmer Should Install]]></title>
<link>http://blog.wolffmyren.com/2009/04/10/11-tools-every-aspnet-programmer-should-install/</link>
<pubDate>Fri, 10 Apr 2009 21:18:44 +0000</pubDate>
<dc:creator>willwm</dc:creator>
<guid>http://blog.wolffmyren.com/2009/04/10/11-tools-every-aspnet-programmer-should-install/</guid>
<description><![CDATA[I found a great list of &#8220;6 Free Tools that every Windows Programmer should Install&#8221; via ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>I found a great list of <a href="http://ianhickman.blogspot.com/2009/04/6-free-tools-that-every-windows.html">&#8220;6 Free Tools that every Windows Programmer should Install&#8221;</a> via <a href="http://twitter.com/elijahmanor">a contact of mine on Twitter</a>, which made me want to create my own list, similar to the tools listed in the link above, with a few additions and changes:</p>
<ol>
<li><a href="http://getfirebug.com/">Firebug</a>
<p>If you have Firefox, but you haven&#8217;t tried this yet, install it now. You&#8217;ll thank me later. Firebug is currently my most essential tool (besides Visual Studio, of course) to web development since it effortlessly debugs JavaScript and shows you the ins and outs of the DOM on any page you&#8217;re inspecting. Firebug is available as an extension for Firefox, or as a bookmarklet for any other browser.</p>
<p>It&#8217;s also worth noting that Safari and Chrome (well, anything rendered with Webkit, it seems) have an excellent set of development tools built-in that are very similar to the functionality of Firebug in Firefox, and even IE8 is catching up to the game with its Developer Tools window/pane.</p>
</li>
<li><a href="http://ccollomb.free.fr/unlocker/">Unlocker</a>
<p>I agree with Ian, this program is excellent. Gives you some useful information for a change (and something you can do with it) when you get the message &#8220;Cannot delete &#60;X&#62;: It is being used by another person or program.&#8221;</p>
</li>
<li><a href="http://tortoisesvn.tigris.org/">TortoiseSVN</a>
<p>If you&#8217;ve been using Subversion for source control, I&#8217;m sure you&#8217;ve heard of this client. If not, get it immediately. It rocks, and integrates exceptionally well with Windows Explorer. (Not to mention Visual Studio, via <a href="http://ankhsvn.open.collab.net/">AnkhSVN</a> or <a href="http://www.visualsvn.com/">VisualSVN</a>)</p>
</li>
<li><a href="http://www.my-debugbar.com/wiki/IETester/HomePage">IETester</a>
<p>Since Internet Explorer is the scourge of the Interwebs that will never go away, it helps to be able to test your site in multiple versions of IE, and since only one version can be installed at a time (and since IE8 Compatibility Mode doesn&#8217;t really help at all), IETester is a good solution that lets you test IE5.5, IE6, IE7, and IE8 rendering engines in the same tabbed browser. Very cool.</p>
</li>
<li><a href="http://www.vmware.com/products/player/">VMWare Player</a>
<p>&#8230;But, as my coworker mentioned, Internet Explorer is pretty invasive and modifies more on your system than just the rendering DLLs, so it&#8217;s a good idea to keep a spare VM running each flavor of IE as well. VMWare Player is the free version of VMWare Workstation, which will run pre-existing virtual machines, but can&#8217;t create new ones. Since that functionality is missing from VMWare Player, you can use this site to create your own virtual machines from scratch: <a href="http://www.easyvmx.com/">EasyVMX! Virtual Machine Creator</a>.</p>
</li>
<li><a href="http://www.red-gate.com/products/reflector/">.NET Reflector</a>
<p>RedGate&#8217;s description says it best:<br />
<em>&#8220;.NET Reflector enables you to easily view, navigate, and search through, the class hierarchies of .NET assemblies, even if you don&#8217;t have the code for them. With it, you can decompile and analyze .NET assemblies in C#, Visual Basic, and IL.&#8221;<br />
</em></p>
</li>
<li><a href="http://technet.microsoft.com/en-us/sysinternals/0e18b180-9b7a-4c49-8120-c47c5a693683.aspx">Sysinternals Suite</a> (includes <a href="http://technet.microsoft.com/en-us/sysinternals/bb896653.aspx">Process Explorer</a>)
<p>Ian Hickman&#8217;s post (<a href="http://ianhickman.blogspot.com/2009/04/6-free-tools-that-every-windows.html">6 Free Tools that every Windows Programmer should Install</a>) suggests Process Explorer alone, which is a superior Task Manager replacement, but I&#8217;ll extend it to suggest the whole Sysinternals Suite, since it comes with so many other great utilities and includes Process Explorer along with them. One of my favorite tools besides PE is AutoRuns, which is a msconfig.exe replacement that offers a much better look at your startup apps and services.</p>
</li>
<li><a href="http://winmerge.org/">WinMerge<br />
</a>
<p>TortoiseSVN comes with its own diff tool, but I tend to end up using WinMerge instead because it does a great job with comparing local files or differing versions of a file in source control, and integrates seamlessly with TortoiseSVN.</p>
</li>
<li><a href="http://www.launchy.net/">Launchy<br />
</a>
<p>I&#8217;m definitely a keyboard junkie, so anything I can do to keep my hands on the keyboard is a plus. Launchy is by far my favorite application launcher for that reason. All I have to do is hit Alt+Space (you can reassign the hotkey if you like), and it brings up a prompt that allows me to launch anything on my Start Menu, and do a number of other tasks as well (launch websites, perform quick calculations, etc.). Definitely saves me a ton of time.<a href="http://www.launchy.net/"><br />
</a></p>
</li>
<li><a href="http://www.charlesproxy.com/">Charles</a> / <a href="http://www.fiddler2.com/fiddler2/">Fiddler</a>
<p>Of the two apps listed above, I prefer Charles, which is a paid application, but I&#8217;ve listed Fiddler as a free alternative. Both apps are proxies that log traffic between your system and the server you&#8217;re debugging (even localhost) and both provide valuable debugging information that is particularly helpful when trying to debug web services. From the Charles website:<br />
<em>&#8220;Charles is an <a href="http://www.charlesproxy.com/http-proxy.html">HTTP proxy</a> / <a href="http://www.charlesproxy.com/http-monitor.html">HTTP monitor</a> / <a href="http://www.charlesproxy.com/reverse-proxy.html">Reverse Proxy</a> that enables a developer to view all of the HTTP traffic between their machine and the Internet. This includes requests, responses and the HTTP headers (which contain the cookies and caching information).&#8221;<br />
</em></p>
</li>
<li><a href="http://www.emeditor.com/">EmEditor</a> / <a href="http://notepad-plus.sourceforge.net/uk/site.htm">Notepad++</a> / <a href="http://www.flos-freeware.ch/notepad2.html">Notepad2</a>
<p>All three of the apps listed above are excellent full-featured text editors, but I prefer the feature set of EmEditor, which is a paid application. The killer feature that EmEditor provides which I haven&#8217;t yet found in either of the other editors is the Find *and Replace* in files. Notepad++ has a Find in Files option, but I haven&#8217;t found a Replace in Files function without opening up every single document and performing a replace in all open documents (info on that approach here: <a href="http://www.makeuseof.com/tag/how-to-find-and-replace-words-in-multiple-files/">How To “Find And Replace” Words In Multiple Files</a>).</p>
<p>Notepad2 doesn&#8217;t offer the same tabbed document interface that both EmEditor and Notepad++ offer, but it is an incredibly lightweight, and more importantly, self-contained executable that&#8217;s a perfect drop-in replacement for Windows Notepad (info on how to do this here: <a class="top" href="http://lifehacker.com/378524/replace-notepad-with-notepad2">Replace Notepad with Notepad2</a><span class="top">).</span></p>
<p>Any of these apps offer syntax highlighting and are a great alternative to firing up Visual Studio when you need to make a quick edit (or on one of the *many* occasions when <a href="http://blog.wolffmyren.com/2008/01/30/visual-studio-2008-is-a-steaming-pile-of-crap/">Visual Studio slows waaaaay down</a> or locks up your system).</p>
</li>
</ol>
<p>Honorable mention: <a href="http://www.phraseexpress.com/">PhraseExpress</a><br />
This program rocks. I&#8217;ve only started using it recently, and not nearly to its fullest potential, but the <a href="http://www.phraseexpress.com/clipboard-manager.htm">clipboard manager functionality</a> alone is worth the download:</p>
<p style="text-align:center;"><a href="http://ianhickman.blogspot.com/2009/04/6-free-tools-that-every-windows.html"><img src="http://willwm.files.wordpress.com/2009/04/pex5_clipboardcache_en.gif" alt="" /></a></p>
<p>Also, I neglected to mention <a href="http://www.autohotkey.com/">AutoHotkey</a> since I haven&#8217;t used it as much as I probably could, but I can say that I&#8217;ve had a lot of luck with the AutoHotkey script <a href="http://www.autohotkey.com/forum/topic5727.html">iTunesAnywhere</a>, which helps since I don&#8217;t have a keyboard with multimedia keys and for whatever godforsaken reason, iTunes *still* doesn&#8217;t natively support global hotkeys like Winamp does. (I&#8217;d switch back to Winamp, but I drank the Apple kool-aid and picked up an iPhone in January.)</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Notepad2]]></title>
<link>http://ahmedmrl.wordpress.com/2008/12/13/notepad2/</link>
<pubDate>Sat, 13 Dec 2008 06:13:34 +0000</pubDate>
<dc:creator>Ahmed</dc:creator>
<guid>http://ahmedmrl.wordpress.com/2008/12/13/notepad2/</guid>
<description><![CDATA[If you are a Windows user, by choice, by fate or by any other way, then you must be aware of the not]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>If you are a Windows user, by choice, by fate or by any other way, then you must be aware of the notepad application -  a very handy tool for any computer user. But honestly speaking, notepad has a very limited set of features and functionalities and is not that useful when it comes to advanced text editing. Users generally tend to switch to wordpad or ultraedit for more advanced text editing. But this comes at a cost of losing their traditional notepad and the ease with which it could be accessed (Win + R, notepad).</p>
<p>For me, <a href="http://www.flos-freeware.ch/notepad2.html">Notepad2</a> offered a perfect solution/replacement for notepad. Its a freeware and can be downloaded <a href="http://www.flos-freeware.ch/zip/notepad2.zip">easily</a> and in a few simple steps (listed below) it can replace the traditional notepad on your Windows operating system. Notepad2 comes with a rich set of features:</p>
<ul>
<li>Customizable syntax highlighting: HTML, XML, CSS, JavaScript, VBScript, ASP, PHP, CSS, Perl/CGI, C/C++, C#, Java, VB, Pascal, Assembler, SQL, Python, NSIS, INI, REG, INF, BAT, DIFF.</li>
<li>Drag &#38; drop text editing inside and outside Notepad2.</li>
<li>Basic regular expression search and replace.</li>
<li>Useful word, line and block editing shortcuts.</li>
<li>Rectangular selection (Alt+Mouse).</li>
<li>Brace matching, auto indent, long line marker, zoom functions.</li>
<li>Support for Unicode, UTF-8, Unix and Mac text files.</li>
<li>Open shell links.</li>
<li>Mostly adjustable.</li>
<li>Auto indentation.</li>
<li>Bracket matching.</li>
<li>Encoding conversion between ASCII, UTF-8 and UTF-16 formats.</li>
<li>Multiple undo/redo; rectangular block selection.</li>
<li>Newline conversion, between DOS (CR/LF), Unix (LF) and Mac (CR) formats.</li>
</ul>
<p>Other variations and extensions of notepad2 also exist that add further functionalities.</p>
<p>Talking about replacing notepad with notepad2, the following <a href="http://www.mattberther.com/2006/11/19/replacing-notepad-in-windows-vista/">steps</a> worked for me on Windows Vista:</p>
<ul>
<li><a href="http://www.flos-freeware.ch/zip/notepad2.zip">Download</a> and extract Notepad2.</li>
<li>Rename Notepad2.exe to notepad.exe.</li>
<li>Find %windir%\notepad.exe and %windir%\system32\notepad.exe and set the owner to &#8216;Administrators&#8217;.
<ul>
<li>Right click on notepad.exe</li>
<li>Select Properties</li>
<li>Select Security tab</li>
<li>Click on Advanced</li>
<li>Select Owner tab</li>
<li>Click Edit</li>
<li>Select the Administrators group in the Change owner to list</li>
<li>Close all dialogs with OK</li>
</ul>
</li>
<li>Find %windir%\notepad.exe and %windir%\system32\notepad.exe and grant &#8216;Administrators&#8217; full control.
<ul>
<li>Right click on notepad.exe</li>
<li>Select Properties</li>
<li>Select Security tab</li>
<li>Click on Edit</li>
<li>Select the Administrators group in the Group or user names list</li>
<li>Activate the Full control Checkbox in the Permissions for Administrators list</li>
<li>Close all dialogs with OK</li>
</ul>
</li>
<li>Optionally, if you want to preserve the original notepad, rename notepad.exe to notepad-original.exe (or any other name) in %windir% and %windir%\system32.</li>
<li>Copy paste the renamed notepad2.exe to %windir% and %windir%\system32.</li>
</ul>
<p>For Windows XP, try the following steps:</p>
<ul>
<li><a href="http://www.flos-freeware.ch/zip/notepad2.zip">Download</a> and extract Notepad2.</li>
<li>Rename Notepad2.exe to notepad.exe.</li>
<li>Change Explorer view options to show system files (Tools-&#62;Folder Options-&#62;View uncheck Hide protected operating system files).</li>
<li>Optionally, if you want to preserve the original notepad, create a backup of the original notepad.</li>
<li>Copy paste the renamed notepad2.exe to %windir%\system32\dllcache, %windir%\system32 and %windir%  in the specified order.</li>
<li>Recheck Hide protected operating system files in the Folder Options dialog box.</li>
</ul>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Essential Freeware Programs for Your Every Day Needs]]></title>
<link>http://vihuynh.wordpress.com/2008/10/26/essential-freeware-programs-for-your-every-day-needs/</link>
<pubDate>Sun, 26 Oct 2008 10:56:15 +0000</pubDate>
<dc:creator>duongqua</dc:creator>
<guid>http://vihuynh.wordpress.com/2008/10/26/essential-freeware-programs-for-your-every-day-needs/</guid>
<description><![CDATA[Essential freeware &#8211; these programs don’t fit a particular category &#8211; but are essential ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><strong>Essential</strong> freeware &#8211; these programs don’t fit a particular category &#8211; but are essential for every day needs.</p>
<h2>7-Zip</h2>
<table class="style1" border="0">
<tbody>
<tr>
<td rowspan="2"><img src="http://mintywhite.com/images/techtips/0804/20freeware/7zip.png" alt="freeware" /></td>
<td style="text-align:justify;">File archive designed originally for the Microsoft Windows operating system. You can use 7-Zip on any computers, including computers in commercial organizations.</td>
</tr>
<tr>
<td><strong><a href="http://www.7-zip.org/" target="_blank">Download Here </a></strong> <img src="http://mintywhite.com/images/techtips/0804/20freeware/1w.png" alt="freeware" /></td>
</tr>
</tbody>
</table>
<h2><!--more-->Ccleaner</h2>
<table class="style1" border="0">
<tbody>
<tr>
<td rowspan="2"><img src="http://mintywhite.com/images/techtips/0804/20freeware/ccleaner.png" alt="freeware" /></td>
<td style="text-align:justify;">System optimization and privacy tool. It removes unused files from your system &#8211; allowing Windows to run faster and freeing up valuable hard disk space.</td>
</tr>
<tr>
<td><strong><a href="http://ccleaner.com/" target="_blank">Download Here </a></strong> <img src="http://mintywhite.com/images/techtips/0804/20freeware/1w.png" alt="freeware" /></td>
</tr>
</tbody>
</table>
<h2>CDBurnerXP</h2>
<table class="style1" border="0">
<tbody>
<tr>
<td rowspan="2"><img src="http://mintywhite.com/images/techtips/0804/20freeware/cdburnerxp.png" alt="freeware" /></td>
<td style="text-align:justify;">Burns CDs and DVDs, including Blu-Ray and HD-DVDs. It also includes the feature to burn and create ISOs, as well as a multilanguage interface.</td>
</tr>
<tr>
<td><strong><a href="http://www.cdburnerxp.se/" target="_blank">Download Here </a></strong> <img src="http://mintywhite.com/images/techtips/0804/20freeware/1w.png" alt="freeware" /></td>
</tr>
</tbody>
</table>
<h2>EasyCleaner</h2>
<table class="style1" border="0">
<tbody>
<tr>
<td rowspan="2"><img src="http://mintywhite.com/images/techtips/0804/20freeware/easycleaner.png" alt="freeware" /></td>
<td style="text-align:justify;">Searches the Windows registry for entries that are pointing nowhere. EasyCleaner also lets you delete all kinds of unnecessary files such as temporary and unused backup files.</td>
</tr>
<tr>
<td><strong><a href="http://personal.inet.fi/business/toniarts/ecleane.htm" target="_blank">Download Here </a></strong> <img src="http://mintywhite.com/images/techtips/0804/20freeware/1w.png" alt="freeware" /></td>
</tr>
</tbody>
</table>
<h2>FreeCommander</h2>
<table class="style1" border="0">
<tbody>
<tr>
<td rowspan="2"><img src="http://mintywhite.com/images/techtips/0804/20freeware/freecommander.png" alt="freeware" /></td>
<td style="text-align:justify;">Easy to use alternative to the standard windows file              manager. The program helps you with daily work in Windows.</td>
</tr>
<tr>
<td><strong><a href="http://www.freecommander.com/" target="_blank">Download Here </a> </strong> <img src="http://mintywhite.com/images/techtips/0804/20freeware/1w.png" alt="freeware" /></td>
</tr>
</tbody>
</table>
<h2>ImgBurn</h2>
<table class="style1" border="0">
<tbody>
<tr>
<td rowspan="2"><img src="http://mintywhite.com/images/techtips/0804/20freeware/imgburn.png" alt="freeware" /></td>
<td style="text-align:justify;">Small program for burning CD / DVD / HD DVD / Blu-ray in              Windows</td>
</tr>
<tr>
<td><strong><a href="http://www.imgburn.com/" target="_blank">Download Here </a></strong> <img src="http://mintywhite.com/images/techtips/0804/20freeware/1w.png" alt="freeware" /></td>
</tr>
</tbody>
</table>
<h2>IrfanView</h2>
<table class="style1" border="0">
<tbody>
<tr>
<td rowspan="2"><img src="http://mintywhite.com/images/techtips/0804/20freeware/irfanview.png" alt="freeware" /></td>
<td style="text-align:justify;">Popular, fast and small, compact graphic viewer for Windows      9x/ME/NT/2000/XP/2003/Vista</td>
</tr>
<tr>
<td><strong><a href="http://www.irfanview.com/" target="_blank">Download Here </a></strong> <img src="http://mintywhite.com/images/techtips/0804/20freeware/1w.png" alt="freeware" /></td>
</tr>
</tbody>
</table>
<h2>jZip</h2>
<table class="style1" border="0">
<tbody>
<tr>
<td rowspan="2"><img src="http://mintywhite.com/images/techtips/0804/20freeware/jzip.png" alt="freeware" /></td>
<td style="text-align:justify;">Based on proven and reliable 7-Zip archiving technology. jZip      sports an elegant, easy to use yet powerful user interface.</td>
</tr>
<tr>
<td><strong><a href="http://www.jzip.com/" target="_blank">Download Here </a></strong> <img src="http://mintywhite.com/images/techtips/0804/20freeware/1w.png" alt="freeware" /></td>
</tr>
</tbody>
</table>
<h2>Notepad2</h2>
<table class="style1" border="0">
<tbody>
<tr>
<td rowspan="2"><img src="http://mintywhite.com/images/techtips/0804/20freeware/notepad2.png" alt="freeware" /></td>
<td style="text-align:justify;">Fast and light-weight Notepad-like text editor with syntax highlighting. Notepad2 does not need to be installed on your computer.</td>
</tr>
<tr>
<td><strong><a href="http://www.flos-freeware.ch/notepad2.html" target="_blank"> Download Here </a></strong> <img src="http://mintywhite.com/images/techtips/0804/20freeware/1w.png" alt="freeware" /></td>
</tr>
</tbody>
</table>
<h2>Notepad++</h2>
<table class="style1" border="0">
<tbody>
<tr>
<td rowspan="2"><img src="http://mintywhite.com/images/techtips/0804/20freeware/notepad.png" alt="freeware" /></td>
<td style="text-align:justify;">Source code editor (and Notepad replacement), which supports      several programming languages.</td>
</tr>
<tr>
<td><strong><a href="http://notepad-plus.sourceforge.net/uk/site.htm" target="_blank"> Download Here </a></strong> <img src="http://mintywhite.com/images/techtips/0804/20freeware/1w.png" alt="freeware" /></td>
</tr>
</tbody>
</table>
<h2>Process Explorer</h2>
<table class="style1" border="0">
<tbody>
<tr>
<td rowspan="2"><img src="http://mintywhite.com/images/techtips/0804/20freeware/processexplorer.png" alt="freeware" /></td>
<td style="text-align:justify;">Process Explorer shows you information about which      handles and DLLs processes have opened or loaded in Windows.</td>
</tr>
<tr>
<td><strong> <a href="http://technet.microsoft.com/pl-pl/sysinternals/bb896653%28en-us%29.aspx" target="_blank">Download Here</a> </strong> <img src="http://mintywhite.com/images/techtips/0804/20freeware/1w.png" alt="freeware" /></td>
</tr>
</tbody>
</table>
<h2>XnView</h2>
<table class="style1" border="0">
<tbody>
<tr>
<td rowspan="2"><img src="http://mintywhite.com/images/techtips/0804/20freeware/xnview.png" alt="freeware" /></td>
<td style="text-align:justify;">Image viewer to view, convert, organize and edit graphic and      video files. XnView supports more than 400 graphics formats.</td>
</tr>
<tr>
<td><strong><a href="http://pagesperso-orange.fr/pierre.g/xnview/endownload.html" target="_blank">Download Here </a></strong> <img src="http://mintywhite.com/images/techtips/0804/20freeware/1w.png" alt="freeware" /><img src="http://mintywhite.com/images/techtips/0804/20freeware/1a.png" alt="freeware" /><img src="http://mintywhite.com/images/techtips/0804/20freeware/1l.png" alt="freeware" /><img src="http://mintywhite.com/images/techtips/0804/20freeware/1f.png" alt="freeware" /></td>
</tr>
</tbody>
</table>
<p>http://mintywhite.com/tech/freeware/essential-freeware-programs-for-your-every-day-needs/</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Notepad2.exe]]></title>
<link>http://z0rlu.wordpress.com/2008/09/15/notepad2-exe/</link>
<pubDate>Mon, 15 Sep 2008 17:01:00 +0000</pubDate>
<dc:creator>z0rlu</dc:creator>
<guid>http://z0rlu.wordpress.com/2008/09/15/notepad2-exe/</guid>
<description><![CDATA[notepad in üst sürümü php asp vs dosyalar için biçilmiş kaftan. çünkü karekter sorunu vs olmuyor. li]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://z0rlu.wordpress.com/files/2008/09/notepad2.jpg"><img src="http://z0rlu.wordpress.com/files/2008/09/notepad2.jpg?w=300" border="0" /></a><br />notepad in üst sürümü php asp vs dosyalar için biçilmiş kaftan. çünkü karekter sorunu vs olmuyor. </p>
<p>link 1: <a class='feed-link' href='http://rapidshare.com/files/145521218/notepad2.zip.html' target='_blank'>TIKLA iNDiR</a></p>
<p>link 2: <a class='feed-link' href='http://www.upload.gen.tr/d.php/s3/amh4fkue/notepad2.zip.html' target='_blank'>TIKLA iNDiR</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[این همه Notepad! تا حالا کجا بودن!؟]]></title>
<link>http://farasun.wordpress.com/2008/09/07/notepad-repplacements/</link>
<pubDate>Sun, 07 Sep 2008 15:28:20 +0000</pubDate>
<dc:creator>ایمان</dc:creator>
<guid>http://farasun.wordpress.com/2008/09/07/notepad-repplacements/</guid>
<description><![CDATA[یکی از نرم افزارهای حیاتی که هر فردی به آن نیاز دارد، یک &#8220;ویرایشگر متن&#8221; (= Text Editor) ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:justify;">یکی از نرم افزارهای حیاتی که هر فردی به آن نیاز دارد، یک &#8220;ویرایشگر متن&#8221; (= Text Editor) است. همان طور که می دانید در این زمینه انتخاب های زیادی وجود دارد که هرکس بر اساس سلیقه و نیاز خود یک ویرایشگر متن مناسب را انتخاب می کند. سیستم عامل ویندوز به صورت پیش فرض یک ویرایشگر متن ساده به نام Notepad دارد که خیلی ها از آن استفاده می کنند. Notepad از زمان پیدایش ویندوز همراه آن عرضه شده و در این سال ها کمتر دستخوش تغییر شده و هیچ قابلیت جدیدی به آن اضافه نشده است. کمبود امکانات این برنامه شرکت ها و برنامه نویسان را مجبور کرد تا محصولات مشابهی با قابلیت های گوناگون برای این نیاز اساسی کاربران تولید کنند.</p>
<p style="text-align:justify;"><span style="color:#ff0000;">توجه : در این مطلب قصد دارم تا لیستی از برنامه های جایگزین برای Notepad ویندوز تهیه کنم. توجه داشته باشید که فقط نرم افزارهای رایگان و آزاد در این صفحه معرفی خواهند شد. این مطلب به مرور و به کمک شما به روز خواهد شد.</span></p>
<h2 style="text-align:justify;">ویرایشگرهای متن معمولی</h2>
<p style="text-align:justify;"><span style="color:#808080;"><em>این دسته شامل برنامه هایی است که ویژگی های معمول یک ویرایشگر متن را دارند و مناسب کاربران معمولی هستند.</em></span></p>
<p style="text-align:justify;"><span style="color:#ff9900;"><strong>Notepad2</strong></span> : بهترین و شایسته ترین جایگزین برای Notepad ویندوز همین نرم افزار Notepad2 است. توصیه من به شما هم همین برنامه است. حجم پایین، دارای توابع مختلف برای کار با متون ساده، باز کردن فایل های حجیم با سرعت بالا، تنظیمات متنوع و قابلیت روشنایی نحوی (که البته این ویژگی برای طراحان وب و برنامه نویسان مناسب است)، از جمله مزایای این ویرایشگر متن قدرتمند است. کاربران معمولی، طراحان وب و برنامه نویسان افرادی هستند که این ویرایشگر متن نیاز آن ها را برطرف خواهد کرد.</p>
<p style="text-align:justify;"><a title="More Info" href="http://www.flos-freeware.ch/notepad2.html" target="_blank"><span style="color:#3366ff;">توضیحات بیشتر</span></a> &#124; <a title="Download" href="http://www.flos-freeware.ch/zip/notepad2.zip" target="_blank"><span style="color:#0000ff;">دریافت</span></a></p>
<p style="text-align:justify;"><span style="color:#ff9900;"><strong>Win32pad</strong></span> : برنامه ای بسیار کم حجم با قابلیت های بسیار خوب جهت ویرایش متون ساده. این برنامه قابلیت هایی را که Notepad ویندوز فاقد آن هاست به شما ارائه می کند. یکی از مهمترین ویِژگی های این برنامه باز کردن فایل های حجیم با سرعت بالا است.</p>
<p style="text-align:justify;"><a title="More Info" href="http://www.gena01.com/win32pad/" target="_blank"><span style="color:#3366ff;">توضیحات بیشتر</span></a> &#124; <a title="Download" href="http://www.gena01.com/win32pad/download.shtml" target="_blank"><span style="color:#0000ff;">دریافت</span></a></p>
<p style="text-align:justify;"><span style="color:#ff9900;"><strong>NoteTab Light </strong></span>: ویرایشگر متن قدرتمند با پشتیبانی از فایل های RTF و رابط کاربری مناسب که به شما اجازه می دهد فایل های متنی مختلف را در تب های جداگانه باز نمایید. این برنامه به شما کمک می کتد تا فایل های HTML را آسان تر ویرایش کنید.</p>
<p style="text-align:justify;"><a title="More Info" href="http://www.notetab.com/ntl.php" target="_blank"><span style="color:#3366ff;">توضیحات بیشتر</span></a> &#124; <a title="Download" href="http://www.fookes.com/ftp/free/ntfree.zip" target="_blank"><span style="color:#0000ff;">دریافت</span></a></p>
<p style="text-align:justify;"><span style="color:#ff9900;"><strong>MoonEdit <span style="color:#333333;">: </span></strong></span>ویرایشگر متنی ساده که در سیستم عامل های ویندوز و لینوکس قابل اجراست. البته من این ویرایشگر متن قدیمی را به هیچ عنوان به شما توصیه نمی کنم.</p>
<p style="text-align:justify;"><a title="More Info" href="http://moonedit.com/indexen.htm" target="_blank"><span style="color:#3366ff;">توضیحات بیشتر</span></a> &#124; <a title="Download" href="http://moonedit.com/mesetup.exe" target="_blank"><span style="color:#0000ff;">دریافت</span></a></p>
<p style="text-align:justify;"><span style="color:#ff9900;"><strong>TED Notepad </strong></span><span style="color:#ff9900;"><strong><span style="color:#333333;">: </span></strong></span>این برنامه قدرت بسیار زیادی در کار با متون ساده دارد. وجود توابع بسیار زیاد برای کار با متون و قدرت فوق العاده در پردازش رشته ها، TED Notepad را از برنامه های مشابه دیگر جدا می کند. این برنامه قابل حمل است، یعنی شما می توانید آن را بر روی کول دیسک خود ذخیره کنید و در همه جا از آن استفاده کنید. برای استفاده از این ویرایشگر متن لازم نیست آن را نصب کنید.</p>
<p style="text-align:justify;"><a title="More Info" href="http://jsimlo.sk/notepad" target="_blank"><span style="color:#3366ff;">توضیحات بیشتر</span></a> &#124; <a title="Download" href="http://jsimlo.sk/notepad/files.php/tnp531le_uni.exe" target="_blank"><span style="color:#0000ff;">دریافت</span></a></p>
<p style="text-align:justify;"><span style="color:#ff9900;"><strong>Elfima Notepad </strong></span><span style="color:#ff9900;"><strong><span style="color:#333333;">: </span></strong></span>پس از اجرای این برنامه، فرق خاصی میان آن و Notepad ویندوز نمی بینید. اما این برنامه کوچک قادر است متون شما را به فرمت های PDF، SVG, XML و XHTML تبدیل نماید. برای این کار فقط کافیست راهنمای ساده اش را مطالعه کنید.</p>
<p style="text-align:justify;"><a title="More Info" href="http://www.elfima.com" target="_blank"><span style="color:#3366ff;">توضیحات بیشتر</span></a> &#124; <a title="Download" href="http://www.elfima.com/download/setup-enp-full.exe" target="_blank"><span style="color:#0000ff;">دریافت</span></a></p>
<p style="text-align:justify;"><span style="color:#ff9900;"><strong>Metapad </strong></span><span style="color:#ff9900;"><strong><span style="color:#333333;">: </span></strong></span>برنامه ای مناسب جهت جایگزینی Notepad ویندوز با قابلیت های مناسب و تنظیمات بسیار.</p>
<p style="text-align:justify;"><a title="More Info" href="http://www.liquidninja.com/metapad" target="_blank"><span style="color:#3366ff;">توضیحات بیشتر</span></a> &#124; <a title="Download" href="http://www.liquidninja.com/metapad/download.html" target="_blank"><span style="color:#0000ff;">دریافت</span></a></p>
<p style="text-align:justify;"><span style="color:#ff9900;"><strong>Notepad.NET </strong></span><span style="color:#ff9900;"><strong><span style="color:#333333;">: </span></strong></span>برنامه ای ساده و زیبا برای کار با متون ساده. رابط کاربری این ویرایشگر متن شبیه به Office2007 طراحی شده و کاربر در آن احساس خستگی نخواهد کرد. اما Notepad.NET هنوز با یک ویرایشگر متن ایده آل بسیار فاصله دارد. سورس کد این پروژه به زبان ویژوال بیسیک.نت در دسترس است.</p>
<p style="text-align:justify;"><a title="More Info" href="http://sourceforge.net/projects/notepaddotnet/" target="_blank"><span style="color:#3366ff;">توضیحات بیشتر</span></a> &#124; <a title="Download" href="http://sourceforge.net/project/showfiles.php?group_id=203740&#38;package_id=242950&#38;release_id=576279" target="_blank"><span style="color:#0000ff;">دریافت</span></a></p>
<h2 style="text-align:justify;">ویرایشگرهای متن با قابلیت رمزگذاری اطلاعات</h2>
<p style="text-align:justify;"><span style="color:#808080;"><em>در این قسمت با برنامه هایی آشنا می شوید که علاوه بر ویرایش متن، امنیت اطلاعات شما را نیز تامین می کنند.</em></span></p>
<p style="text-align:justify;"><span style="color:#ff9900;"><strong>MAXA Text2Exe </strong></span><span style="color:#ff9900;"><strong><span style="color:#333333;">: </span></strong></span>با ماکسا می توانید رمزهای عبور، سریال نامبرها و اطلاعات شخصی خود را رمز گذاری کنید تا کسی نتواند به آن ها دسترسی پیدا کند. ماکسا قادر است فایل های متنی شما را به فایل های اجرایی رمز گذاری شده تبدیل کند.</p>
<p style="text-align:justify;"><a title="More Info" href="http://www.maxa-tools.com/text2exe.php?lang=en" target="_blank"><span style="color:#3366ff;">توضیحات بیشتر</span></a> &#124; <a title="Download" href="http://www.maxa-tools.com/text2exe.exe" target="_blank"><span style="color:#0000ff;">دریافت</span></a></p>
<p style="text-align:justify;"><span style="color:#ff9900;"><strong>fSekrit </strong></span><span style="color:#ff9900;"><strong><span style="color:#333333;">: </span></strong><span style="color:#333333;">برنامه ایست برای حفاظت از اطلاعات متنی شما. فایل های اجرایی تولید می کند که هیچ کس جز شما نمی تواند متن درون آن ها را تشخیص دهد. الگوریتم رمزگذاری این برنامه بسیار پیچیده است.</span></span></p>
<p style="text-align:justify;"><a title="More Info" href="http://www.donationcoder.com/Software/Other/fSekrit/" target="_blank"><span style="color:#3366ff;">توضیحات بیشتر</span></a> &#124; <a title="Download" href="http://www.donationcoder.com/Software/Other/fSekrit/" target="_blank"><span style="color:#0000ff;">دریافت</span></a></p>
<h2 style="text-align:justify;">ویرایشگر های متن با قابلیت مدیریت اطلاعات</h2>
<p style="text-align:justify;"><span style="color:#808080;"><em>در این بخش برنامه هایی معرفی می شوند که علاوه بر امکانات معمول ویرایشگرهای متن، قابلیت مدیریت بر اطلاعات را نیز به ما می دهند.</em></span></p>
<p style="text-align:justify;"><span style="color:#ff9900;"><strong>Evernote </strong></span><span style="color:#ff9900;"><strong><span style="color:#333333;">: </span></strong><span style="color:#333333;">محلی برای مدیریت تمامی اطلاعات و متون شماست که ویژگی های منحصر به فردی را ارائه می کند. شما می توانید تمامی اطلاعات خودتان را از جمله : آدرس های اینترنی، شماره تلفن، لیست کارهای روزمره و &#8230; را در این نرم افزار ذخیره کنید.</span></span></p>
<p style="text-align:justify;"><a title="More Info" href="http://www.evernote.com/" target="_blank"><span style="color:#3366ff;">توضیحات بیشتر</span></a> &#124; <a title="Download" href="http://www.evernote.com/about/download/" target="_blank"><span style="color:#0000ff;">دریافت</span></a></p>
<p style="text-align:justify;"><span style="color:#ff9900;"><strong>NotesHolder lite </strong></span><span style="color:#ff9900;"><strong><span style="color:#333333;">: </span></strong><span style="color:#333333;">این برنامه با جا گرفتن در دسکتاپ شما، قابلیت های زیادی برای مدیریت یادداشت هایتان به شما می دهد. ویژگی های همچون جستجو و یادآور نیز در این برنامه موجود است.</span></span></p>
<p style="text-align:justify;"><a title="More Info" href="http://notes.aklabs.com/" target="_blank"><span style="color:#3366ff;">توضیحات بیشتر</span></a> &#124; <a title="Download" href="http://www.aklabs.com/downloads/notesholderl.zip" target="_blank"><span style="color:#0000ff;">دریافت</span></a></p>
<p style="text-align:justify;"><span style="color:#ff9900;"><strong>Keynote </strong></span><span style="color:#ff9900;"><strong><span style="color:#333333;">: </span></strong><span style="color:#333333;">یک برنامه قدرتمند و مناسب جهت مدیریت یاداشت ها و متون شماست. در این برنامه قادرید تا یادداشت های خود را به صورت درختی (=Tree Like) دسته بندی کنید و از ویرایشگر متن قدرتمن آن نیز استفاده کنید.</span></span></p>
<p style="text-align:justify;"><a title="More Info" href="http://www.tranglos.com/free/keynote_download.html" target="_blank"><span style="color:#3366ff;">توضیحات بیشتر</span></a> &#124; <a title="Download" href="http://www.tranglos.com/free/keynote.html" target="_blank"><span style="color:#0000ff;">دریافت</span></a></p>
<h2 style="text-align:justify;">ویرایشگرهای متن مخصوص طراحان وب و برنامه نویسان</h2>
<p style="text-align:justify;"><span style="color:#808080;"><em>در این قسمت برنامه هایی که ویژگی Syntax Highlighting دارند و برای برنامه نویسان و طراحان وب مناسب اند معرفی می کنیم.</em></span></p>
<p style="text-align:justify;"><span style="color:#ff9900;"><strong>Notepad++ </strong></span><span style="color:#ff9900;"><strong><span style="color:#333333;">: </span></strong><span style="color:#333333;">فکر نمی کنم نیازی به توضیح در مورد این برنامه باشد. قدرتمند ترین ویرایشگر متن حال حاضر با قابلیت های بسیار کاربردی به صورت اوپن سروس در اختیار شماست. پلاگین های گوناگون، تنظیمات پیشرفته، توابع مختلف کار با متون و امکانات پیشرفته از جمله ویژگی های Notepad++ است. پشتیبانی از زبان های برنامه نویسی مختلف و امکاناتی که برای برنامه نویسان مهیا کرده، آن را به اولین انتخاب افراد متخصص تبدیل کرده است.<br />
</span></span></p>
<p style="text-align:justify;"><a title="More Info" href="notepad-plus.sourceforge.net/ " target="_blank"><span style="color:#3366ff;">توضیحات بیشتر</span></a> &#124; <a title="Download" href="http://notepad-plus.sourceforge.net/uk/download.php" target="_blank"><span style="color:#0000ff;">دریافت</span></a></p>
<p style="text-align:justify;"><span style="color:#ff9900;"><strong>PsPad </strong></span><span style="color:#ff9900;"><strong><span style="color:#333333;">: </span></strong><span style="color:#333333;">ویرایشگر متنی واقعاً حرفه ای که قابلیت های بسیار زیادی را به کاربرش می دهد. این برنامه را نمی توان فقط یک ویرایشگر متن ساده دانست، ویژگی های حرفه ای، تنظیمات بسیار، قالب بندی مناسب متن و &#8230; آن را از محصولات مشابه جدا می کند.</span></span></p>
<p style="text-align:justify;"><a title="More Info" href="http://www.pspad.com/" target="_blank"><span style="color:#3366ff;">توضیحات بیشتر</span> </a>&#124; <a title="Download" href="http://www.pspad.com/en/download.php" target="_blank"><span style="color:#0000ff;">دریافت</span></a></p>
<p style="text-align:justify;"><span style="color:#ff9900;"><strong>Programmer&#8217;s Notepad </strong></span><span style="color:#ff9900;"><strong><span style="color:#333333;">: </span></strong><span style="color:#333333;">نام این برنامه مشخص کننده ی کارکرد آن است. ویرایشگر متنی که مخصوص نیازهای یک برنامه نویس تولید شده است. به جز امکانات ویرایش متن، امکاناتی برای مدیریت سورس کدها نیز به شما می دهد.</span></span></p>
<p style="text-align:justify;"><a title="More Info" href="http://www.pnotepad.org/" target="_blank"><span style="color:#3366ff;">توضیحات بیشتر</span></a> &#124; <a title="Download" href="http://pnotepad.googlecode.com/files/pn208718.exe" target="_blank"><span style="color:#0000ff;">دریافت</span></a></p>
<h2 style="text-align:justify;">ویرایشگرهای متن برای افرادی که متفاوت می اندیشند!</h2>
<p style="text-align:justify;"><span style="color:#808080;"><em>در این دسته برنامه هایی قرار می گیرند که ایده جالبی برای ویرایش متون به کار گرفته باشند.</em></span></p>
<p style="text-align:justify;"><span style="color:#ff9900;"><strong>q10 </strong></span><span style="color:#ff9900;"><strong><span style="color:#333333;">: </span></strong><span style="color:#333333;">ویرایشگر متنی تمام صفحه ایست که حس نوشتن را در شما زنده می کند. در این برنامه احساس خستگی نخواهید کرد و با هر بار فشردن کلید صدای فشردن دکمه ماشین تایپ های قدیمی را می شنوید که حداقل از صدای ناشی از فشردن کلیدهای صفحه کلید جالب تر است.</span></span></p>
<p style="text-align:justify;"><a title="More Info" href="http://farasun.wordpress.com/2008/04/15/q10-and-dark-room/" target="_blank"><span style="color:#3366ff;">توضیحات بیشتر</span></a> &#124; <a title="Download" href="http://www.baara.com/q10/" target="_blank"><span style="color:#0000ff;">دریافت</span></a></p>
<p style="text-align:justify;"><a title="Download" href="http://pnotepad.googlecode.com/files/pn208718.exe" target="_blank"></a></p>
<p style="text-align:justify;"><span style="color:#ff9900;"><strong>DarkRoom </strong></span><span style="color:#ff9900;"><strong><span style="color:#333333;">: </span></strong><span style="color:#333333;">تقریباً با q10 یکی است اما انعطاف پذیری q10 را ندارد. برای استفاده از این برنامه حتماً باید دات نت فریم ورک 2 روی سیستم شما نصب باشد.</span></span></p>
<p style="text-align:justify;"><a title="More Info" href="http://farasun.wordpress.com/2008/04/15/q10-and-dark-room/" target="_blank"><span style="color:#3366ff;">توضیحات بیشتر</span></a> &#124; <a title="Download" href="http://they.misled.us/dark-room" target="_blank"><span style="color:#0000ff;">دریافت</span></a></p>
<p style="text-align:justify;"><span style="color:#ff9900;"><strong>Darkpad </strong></span><span style="color:#ff9900;"><strong><span style="color:#333333;">: </span></strong><span style="color:#333333;">دارک پد به شما کمک می کند تا فقط روی متن تان تمرکز کنید و دسکتاپ خود را فراموش کنید. این برنامه توسط من با ایده ی q10 ساخته شده است با این تفاوت که قابلیت راست به چپ نویسی نیز دارد (که q10 ندارد). در این برنامه هیچ نوار ابزار یا نوار منوی مزاحی وجود ندارد و شما تمام دستورات ویرایش را با صفحه کلید صادر خواهید کرد. به علاوه این برنامه هیچ نیازی به نصب ندارد و کاملاً قابل حمل (=Portable) است تا شما بتوانید آن را روی کول دیسک خود همیشه همراه خود داشته باشید.</span></span></p>
<p style="text-align:justify;"><a title="More Info" href="http://farasun.wordpress.com/2008/08/01/darkpad-intro/" target="_blank"><span style="color:#3366ff;">توضیحات بیشتر</span></a> &#124; <a title="Download from Box.net" href="http://www.box.net/shared/cut3l3e7jk" target="_blank"><span style="color:#0000ff;">دریافت</span></a></p>
<p style="text-align:justify;">
<p style="text-align:justify;"><span style="color:#ffffff;">farasun.wordpress.com</span></p>
<p><a href="http://feeds.feedburner.com/Farasun"><img class="size-full wp-image-163" title="feed" src="http://farasun.wordpress.com/files/2008/07/feed.jpg" alt="Subcribe to Farasun feed" width="16" height="16" /><strong>مشترک فراسان شويد</strong></a></p>
<p><span style="color:#ffffff;">farasun.wordpress.com</span></p>
<p>مطالب مرتبط :</p>
<ul>
<li><a title="مشاهده مطلب &#34;آزادانه روی صف�ه مانیوتر تایپ کنید!&#34;" href="http://farasun.wordpress.com/2008/08/01/darkpad-intro/" target="_blank">آزادانه روی صفحه مانیتور تایپ کنید!</a></li>
<li><a title="مشاهده مطلب &#34;هر چه در ذهنتان می گذرد روی صف�ه بیاورید!&#34;" href="http://farasun.wordpress.com/2008/04/15/q10-and-dark-room/" target="_blank">هرچه در ذهنتان می گذرد روی صفحه بیاورید!</a></li>
<li><a title="مشاهده مطلب &#34;Paint.net جایگزینی مناسب برای Paint ویندوز&#34;" href="http://farasun.wordpress.com/2007/08/01/pain-dot-net-intro/">Paint.NET جایگزینی مناسب برای Paint ویندوز</a></li>
</ul>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[The Notepad Situation]]></title>
<link>http://scottjacksonx.wordpress.com/2008/07/15/notepad-alternatives/</link>
<pubDate>Tue, 15 Jul 2008 08:54:52 +0000</pubDate>
<dc:creator>Scott Jackson</dc:creator>
<guid>http://scottjacksonx.wordpress.com/2008/07/15/notepad-alternatives/</guid>
<description><![CDATA[Are you tired of the multitude of features in Microsoft Word and other advanced word processing appl]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Are you tired of the multitude of features in Microsoft Word and other advanced word processing applications?</p>
<p><img class="alignnone size-medium wp-image-35" src="http://scottjacksonx.wordpress.com/files/2008/07/no-features2.png?w=300" alt="Booo! Features suck!" width="300" height="300" /></p>
<p>Then have I got the perfect application for you!</p>
<p>Introducing&#8230;</p>
<p><a href="http://en.wikipedia.org/wiki/Notepad" target="_blank">Notepad</a>!</p>
<p><img class="alignnone size-full wp-image-29" src="http://scottjacksonx.wordpress.com/files/2008/07/notepad.png" alt="That sweet, sexy Notepad" width="560" height="510" /></p>
<p>How can you say no to that sexy UI? It&#8217;s practically screaming &#8220;use me as your primary word processor!&#8221; at you.</p>
<p>In all seriousness, Notepad is an OK application. I won&#8217;t lie, I do use it for a few things. At the same time though, I have to wonder, <strong>why does Microsoft ship Windows with such a basic and arguably outdated application?</strong> By also shipping Windows with <a href="http://en.wikipedia.org/wiki/WordPad" target="_blank">WordPad</a>, isn&#8217;t Microsoft basically admitting that Notepad isn&#8217;t a first-class application? Even though I do use Notepad for some things, that doesn&#8217;t mean I wouldn&#8217;t like a better application. The good news is that there are alternatives out there that can provide a user with more, richer functions:</p>
<ul>
<li><a href="http://www.flos-freeware.ch/notepad2.html" target="_blank">Notepad2</a></li>
<li><a href="http://notepad-plus.sourceforge.net/uk/site.htm" target="_blank">Notepad++</a></li>
<li><a href="http://www.liquidninja.com/metapad/" target="_blank">MetaPad</a></li>
</ul>
<p>I personally use <a href="http://portableapps.com/apps/development/notepadpp_portable" target="_blank">Notepad++ Portable</a>, and I keep a spare copy of it on my USB flash drive in case I need it. It&#8217;s great, for a number of reasons &#8211; it uses a tabbed interface, and it has a neat feature that allows you to open two or more &#8220;views&#8221; and have them side-by-side in the same window. Each &#8220;view&#8221; is a set of tabs on its own. This is good not only for easily comparing two documents, but also for logically organising two open projects at the same time. Possibly the best feature about Notepad++ is the language settings.</p>
<p><img class="alignnone size-full wp-image-30" src="http://scottjacksonx.wordpress.com/files/2008/07/notepad1.png" alt="Look at all those languages!" width="728" height="1040" /></p>
<p>Selecting a language adds syntax highlighting to the text file, like so:</p>
<p><img class="alignnone size-full wp-image-31" src="http://scottjacksonx.wordpress.com/files/2008/07/primes.png" alt="A small 'prime numbers' program written in Python" width="840" height="510" /></p>
<p>The only thing I wish it did is (as you clearly <em>can&#8217;t</em> see from the above screenshot) highlight the doc string of a function (that would be the &#8220;Returns all prime numbers up to num&#8221; bit inside the triple quotes). But that&#8217;s being really picky, and hey, if I was really motivated enough, I could just add it in myself &#8211; after all, <strong>nearly all of the Notepad replacement apps out there are open-source</strong>.</p>
<p><strong>The idea of Notepad (that is, a small, simple text editor) is still just as important to users as it was when <a href="http://en.wikipedia.org/wiki/Windows_1.0" target="_blank">Windows 1.0</a> was released in 1985. My problem is that the technology of Notepad sorely needs to be updated</strong>. There are so many great alternatives out there to replace Notepad &#8211; I don&#8217;t know why Microsoft doesn&#8217;t just ship Windows with one of them.</p>
<p>As for Microsoft Paint? <a href="http://www.getpaint.net/" target="_blank">&#8216;Nuff said</a>.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Il miglior editor di testo per windows]]></title>
<link>http://espertointernet.wordpress.com/2008/05/02/il-miglior-editor-di-testo-per-windows/</link>
<pubDate>Fri, 02 May 2008 06:24:49 +0000</pubDate>
<dc:creator>marco costanzo</dc:creator>
<guid>http://espertointernet.wordpress.com/2008/05/02/il-miglior-editor-di-testo-per-windows/</guid>
<description><![CDATA[Si chiama Notepad2 ed è un clone migliorato del Blocco Note di Windows. In soli 247 Kbyte ogni progr]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Si chiama Notepad2 ed è un clone migliorato del Blocco Note di Windows.</p>
<p>In soli 247 Kbyte ogni programmatore che ha bisogno di fare velocemente delle modifiche al codice che sta scrivendo, può usufruire di questo straordinario strumento libero e gratuito.</p>
<p>Il sito internet di riferimento è questo</p>
<p><a title="Editor di testo" href="http://www.flos-freeware.ch/notepad2.html">http://www.flos-freeware.ch/notepad2.html</a></p>
<blockquote><p>Notepad2, a fast and light-weight Notepad-like text editor with syntax highlighting. This program can be run out of the box without installation, and does not touch your system&#8217;s registry.</p>
<h2>Downloads</h2>
<ul>
<li><a href="http://www.flos-freeware.ch/zip/notepad2.zip">Download Notepad2 2.1.19 Binary Files</a> [247 KB]</li>
</ul>
<li><a href="http://www.flos-freeware.ch/zip/np2src.zip">Download Notepad2 2.1.19 Source Code</a> [170 KB]</li>
</blockquote>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Cansado do notepad? Notepad++ ou Notepad2 são opções.]]></title>
<link>http://bitnervoso.wordpress.com/2008/03/23/cansado-do-notepad-notepad-ou-notepad2-sao-opcoes/</link>
<pubDate>Sun, 23 Mar 2008 14:52:30 +0000</pubDate>
<dc:creator>Murilo Bernardes</dc:creator>
<guid>http://bitnervoso.wordpress.com/2008/03/23/cansado-do-notepad-notepad-ou-notepad2-sao-opcoes/</guid>
<description><![CDATA[Se você, como eu, costuma usar MUITO o notepad (ou bloco de notas), então essa novidade é para você.]]></description>
<content:encoded><![CDATA[Se você, como eu, costuma usar MUITO o notepad (ou bloco de notas), então essa novidade é para você.]]></content:encoded>
</item>
<item>
<title><![CDATA[Popüler Programlama Araçları]]></title>
<link>http://positivist.wordpress.com/2007/07/16/populer-programlama-araclari/</link>
<pubDate>Mon, 16 Jul 2007 20:56:26 +0000</pubDate>
<dc:creator>positivist</dc:creator>
<guid>http://positivist.wordpress.com/2007/07/16/populer-programlama-araclari/</guid>
<description><![CDATA[Web tasarım alanında 2-3 yıldır süren çabalarım ve çalışmalarım sonucu tanıştığım, kullandığım, kull]]></description>
<content:encoded><![CDATA[Web tasarım alanında 2-3 yıldır süren çabalarım ve çalışmalarım sonucu tanıştığım, kullandığım, kull]]></content:encoded>
</item>

</channel>
</rss>
