For smart Primates & ROBOTS (oh and ALIENS ).

Showing posts with label Free Software. Show all posts
Showing posts with label Free Software. Show all posts

Tuesday, March 24, 2015

Image Cropper

Image Cropper
How to use?
1- Click to "open" button & select image file.
2- Drag & select the portion of image.
3- Click on "select" button.
4- click on "save" button.
 
Image Cropper

Download here




























Share:

Monday, March 23, 2015

Text to speech

Text to speech



Text to speech












Download here:
Download











Share:

Friday, March 20, 2015

Image Combiner


Combine all images from selected folder into one image.
This is a Free desktop software to combine multiple images into one single image.
There are no limit to combine , so you can combine unlimited images.
You need to select the folder where all images are existing.
This tool automatically get the highest width of image.














Download Image Combiner




Share:

Tuesday, March 17, 2015

Get Internet Explorer Browser Urls lists


Get Internet Explorer Browser Urls lists


Get Internet Explorer Browser Urls lists









Download here






Share:

Get Internet Explorer Browser Urls list

Get Internet Explorer Browser Urls list


Get Internet Explorer Browser Urls lists









Download here









Share:

Saturday, March 14, 2015

Multiple word find replace in file

Problem:
Suppose you have many more files which having 5 words as below:

Alien
Time
Options
Customs
Robot

each one you want to replace with certain word, then what you will do?
For this you need to manually open each file and find replace operation many time.

You can make your task by this free Extended Find And Replace Utility Software .
By this you do Multiple(5 Times) Find And Replace Operations.

Multiple word find replace in file




















It is Also Create BackUp Of Old Files With Current Date.
So You can Use That For Further Use.
No Worries, It Will Not Stop When it Find The Hidden and ReadOnly Files
It Will Replace Those Too.
Enjoy :)

Thanks For Using It.
Download Multiple word find replace in file free software here



































Share:

Thursday, March 12, 2015

PDF Water Marker

If you have a PDF with one page or more than one page and want to insert an image as a water mark in that PDF file then you can use this my software. Your are free to use this product.

PDF Water Marker














Before run this application you need to install .Net Framework 4.5

Download PDF Water Marker Here
Share:

Adding text in PDF File at specific position Freeware Software

Suppose you have a PDF file; which have one or more than one page and you want to insert text at the specific position. then in this situation you need to use PDF editor and goto each page and put the text at the position where you want. but if the pdf file is having 100 or more pages then it will difficult to edit it. in this condition you can use this my software.

If will make these task very easy, you need to input pdf file, text which you want to see and enter the X and Y position and click Apply button.


Adding text in PDF File at specific position Freeware Software

















It will insert the text at the position which you have supplied in all the pages. To execute this software you need to Microsoft Framework 4.0 or later.

Download Adding text in PDF File at specific position Software





Share:

Web page screen capture as image









Web page screen capture as image















Download Web Page Screen Capture as Image









Share:

Tuesday, February 24, 2015

YOU TUBE VIDEO UPLOADER

YouTube Video Uploader.
Coming soon.....


Share:

Thursday, February 19, 2015

Increase Voice of audio and video

Coming next
Share:

Tuesday, February 17, 2015

Video Cutter

Problem:

How to cut any part from video?

Solution:

Download this my Video Cutter windows 64 bit application.

Video Cutter











To run this you need to download Microsoft dot-net framework 4.5
Download Video Cutter
Share:

Tuesday, February 03, 2015

Get urls from firefox browser and save in file

Problem:

If you want to see all the URLs lists from any person computer system,then how to achieve it?

Solution:









You need to download this software here,keep in mind that it will only look all urls list from Firefox browser and save it in text file.
http://sourceforge.net/projects/unique-softwares/files/GetFireFoxUrls.7z/download




Share:

Friday, January 02, 2015

KeyLogger

Problem:

Some time you want to tack the person keyboard that what keys are stroking on that keyboard?




Solution:

I have developed a application, so by this application you can achieve your target.
You can track user keyboard keys by this Key Logger Application. This will store all the key stroke of your keyboard and save in the text file, So you can see all the activities of user; what user is typing.



 

 

 

How to download it?

How to run this application?

It is simple , just double click on it and it will open and hide. it will run in background process. so no one see it.

Requirement of system:

To run this application you need to install Microsoft dot.net framework 3.5
Share:

Sunday, December 28, 2014

key logger

Problem:

Some time you want to tack the person keyboard that what keys are stroking on that keyboard?




Solution:

I have developed a application, so by this application you can achieve your target.
You can track user keyboard keys by this Key Logger Application. This will store all the key stroke of your keyboard and save in the text file, So you can see all the activities of user; what user is typing.
key logger









How to download it?

Download it from here.
http://agalaxycode.blogspot.in/2015/01/keylogger.html

How to run this application?

It is simple , just double click on it and it will open and hide. it will run in background process. so no one see it.

Requirement of system:

To run this application you need to install Microsoft dot.net framework 3.5
Share:

Friday, October 17, 2014

Extract Corrupt Zip File By Java

Extract Corrupt Zip File By Java


I received an zip file from customer. I have tried to extract with WinZip, but unable to extract zip file because that zip file was corrupt.

So I have tried to extract with Java Zip API and got the success. The code is listed below:

I am sure that the zip file having 5% to 10% part corrupt will be unzip with this code, but if it is having more corrupt then the code will not work.


import java.io.*;
import java.util.zip.*;

class ExtractCorruptZip {
public void extractZipFiles(String fileName) {
try {
String zipDir = "c:\\zip\\";
//String zipDir = "/home/usr/amit/zip/";
byte[] by = new byte[2048];
ZipInputStream ziStream = null;
ZipEntry zipEntry;
ziStream = new ZipInputStream(new FileInputStream(fileName));

zipEntry = ziStream.getNextEntry();
int count=1;
while (zipEntry != null) {
String entry = zipDir + zipEntry.getName();
entry = entry.replace('/', File.separatorChar).replace('\\', File.separatorChar);
int n;
FileOutputStream fOTStream;
File newFile = new File(entry);
if (zipEntry.isDirectory()) {
if (!newFile.mkdirs()) {
break;
}
zipEntry = ziStream.getNextEntry();
continue;
}
fOTStream = new FileOutputStream(entry);
while ((n = ziStream.read(by, 0, 2048)) > -1) {
fOTStream.write(by, 0, n);
}
System.out.println("Working....."+(++count));
fOTStream.close();
ziStream.closeEntry();
zipEntry = ziStream.getNextEntry();
}
ziStream.close();
System.out.println("DONE!!!!!");
} catch(IOException ioe) {
ioe.printStackTrace();
}
}

public static void main(String[] ss) {
try {
String fileName = "w1.zip";
ExtractCorruptZip extractCorruptZip = new ExtractCorruptZip();
extractCorruptZip.extractZipFiles(fileName);
} catch (Exception ex) {
ex.printStackTrace();
}
}
}




Share:

Thursday, September 25, 2014

Multiple Find Replace in MS Word using C#

Multiple Find Replace in MS Word using C#

Suppose you have a Ms word file with 100s or more pages and each page have a word more than 10 or multiple times which you want to replace. In this situation you will open the doc file and open find replace box. but this is time taking task.

replace words in msword










I have developed the .Net framework 4.5 windows application. by using this application you choose the file and put the find and replace word and press "Replace Now!" button.

To run this application you need to install .Net framework 4.5 from Microsoft site

Download here
https://sourceforge.net/projects/unique-softwares/files/in-ms-word-using-c.html







Share:

Saturday, September 20, 2014

Image Optimizer

Jpg Image Optimizer



Optimize your images,just select source and target folder and click on "Start Optimize"


Jpg Image Optimizer















Download it here

Share:

Thursday, September 11, 2014

Video Watermark

Video Watermark


Add Subtitle ( Watermark in video ) in your video by this software.
Currently this support .AVI, .FLV and .MOV format.
I have created it in "Dot Net Framework 4 Client Profile", So  needed to download  .Net Framework 4 Client Profile from Microsoft site.

Watermark in video


In my next version I will add some more video format.

Download








Share:

Ads Inside Post

Powered by Blogger.

Archive