only My site
Showing posts with label Tools. Show all posts
Showing posts with label Tools. Show all posts

Friday, September 28, 2012

Windows Grep

Windows Grep is a tool for searching files for text strings that you specify. Although Windows and many other programs have file searching capabilities built-in, none can match the power and versatility of Windows Grep. 

Windows Grep is designed for searching plain-ASCII text files, such as program source, HTML, RTF and batch files, but it can also search binary files such as word processor documents, databases, spreadsheets and executables.
Windows Grep runs on Windows 98, 2000, XP, Vista and Windows 7

Download the Exe from http://www.wingrep.com/

Monday, June 25, 2012

Text Search and Format Tool - gVim

Vi pronounced vee-eye was written by William Joy in around 1976 at The University of California, Berkeley. Vi was created by hacking various other editors around at the time and writing new code.

We can download the tool http://gvim.en.softonic.com/ and read the tutorial from https://supportweb.cs.bham.ac.uk/documentation/tutorials/docsystem/build/tutorials/gvim/gvim.html

Thursday, July 17, 2008

InfranView - Image tool


InfranView is a great freeware program that you can download at http://www.irfanview.com and have a really fun time playing with and distorting your own images, as well as using it for normal, everyday editing.

Wednesday, July 16, 2008

Display HTML without Execute

<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">

<title>Example</title>

<script language="JavaScript" type="text/javascript">

<!--

function showTags()

{

str=document.getElementById("txtCode").value;

str=str.replace(/[&]/g,'&amp;');

str=str.replace(/[<]/g,'&lt;');

str=str.replace(/[>]/g,'&gt;');

str=str.replace(/[\n]/g,'<br>');



//document.getElementById('show').innerHTML=str;

document.getElementById('txtCodeop').value = str;

}

//-->

</script>

</head>

<body onload="showTags()">

<div id="show"></div>

<TextArea id="txtCode" name="txtCode"></textArea>

<input type=button id=btnSubmit name=btnSubmit onclick="Javascript:showTags();">

<TextArea id="txtCodeop" name="txtCodeop"></textArea>

</body>

</html>

Tuesday, June 10, 2008

Paint.Net


I tried this Free tool, its pretty good to do photo editing works.
To Download http://www.getpaint.net/

Monday, March 17, 2008

Data Tier Generator - .Net free tools

Data Tier Generator
Microsoft .NET project that generates SQL Server 2000 scripts for stored procedures and C# classes used to access those stored procedures. The stored proecedures generated are as follows: Insert, Update, Delete, Select, SelectByPK, SelectByFK
http://sourceforge.net/project/showfiles.php?group_id=41502

MyGeneration Code Generator
MyGeneration is an extremely flexible template based code generator written in Microsoft.NET. MyGeneration is great at generating code for ORM architectures. The meta-data from your database is made available to the templates through the MyMeta API.
http://sourceforge.net/project/showfiles.php?group_id=198893