Showing posts with label java. Show all posts
Showing posts with label java. Show all posts

Monday, May 27, 2019

Replacing non-ascii characters with their ascii equivalent or removing them

Let say you have this:

var name = "ÄBÖ";

and you want to convert it to

name = "ABO";

The following snippet will do it in Java. IT also will remove the characters that don't have any alternative in ASCII characters such as ß.

String subjectString = "öäü";
subjectString = Normalizer.normalize(subjectString, Normalizer.Form.NFD);
String resultString = subjectString.replaceAll("[^\\x00-\\x7F]", "");

Friday, November 23, 2012

Numeric Password Dictionary File

Today I wondered how big will be a dictionary file containing all numeric passwords of 8-digit numbers (with padding zeros).

So I created one using a simple Java program and amazingly it is a 900mb file.

You can download it here: http://goo.gl/yRmz6


Saturday, October 22, 2011

I am not alone anymore!

A new developer joined the MyPasswords project. He has already added some cool features to the project that you will see in the new version.
Dan is a brilliant programmer and we can prove that MyPasswords is the best password manager for Linux and also other OSs.



Monday, April 25, 2011

Save (write) JPEG Images Without DPI Change in Java

If you try to write a BufferedImage on disk using ImageIO.write you will see that the result image will have a DPI of 96 regardless of the source image's DPI!
In order to keep the source DPI or set your own DPI you need to write your image using JPEGImageEncoder class.

Friday, April 22, 2011

NetBeans 7.0 Released!

The final version of NetBeans 7.0 release on (22 April 2011). But still no JavaFX support!
Download NetBeans 7.0

 

Tuesday, February 22, 2011

Change Look & feel of MyPasswords to Nimbus

If you prefer the Java's new default look and feel, you can change your MyPasswords look and feel from system look and feel to Nimbus.

  1. Go to your installation directory (if you use installer version) or go to the directory in which you have extracted the archive file of portable version of MyPasswords
  2. Open the file settings.properties in Notepad or Gedit.
  3. Change systemLookAndFeel=true to systemLookAndFeel=false
Done.

Friday, February 18, 2011

MyPasswords 1.0 defeats KeePassX

I can't believe but I heard about an article in LinuxFormat yesterday which reviewed 8 password manager software for Linux. MyPasswords is the 7th candidate and the final winner following by KeePassX.

I'm really exited and try to make it even better in the future. 

Sunday, February 13, 2011

MyPasswords 2.3

The version 2.3 of MyPasswords released.

New features:
  • file encryptor
  • more secure database encryption
  • brows window

Thursday, March 11, 2010

MyPasswords on soft82.com

Soft82 100% Clean Award For MyPasswords
MyPasswords has been tested by soft82.com team against viruses, spyware, adware, trojan, backdoors and was found to be 100% clean. Our editors will recheck this software periodically to assure that it remains clean.

Sunday, February 28, 2010

Inactivity Detector

MyPassqwords 0.9 released.

New feature: User inactivity detector
If the user doesn't perform any database interaction for a while, (5 minutes) the screen will lock and he/she needs to re-enter the password.

Wednesday, February 24, 2010

Monday, February 22, 2010

Saturday, February 13, 2010

MyPasswords

An open source password manager for Linux, Windows and Mac OS.
It uses derby as database.

Download: https://sourceforge.net/projects/mypasswords7/

Friday, December 18, 2009

NetBeans IDE 6.8

I've just installed NetBeans 6.8.
I went through Feature Highlights and as a Java programmer I guess I will like it. As a PHP 5 programmer, I must say I will defiantly like it since it supports PHP 5.3 new features. :)