Xifra de Vigenère





ranking Sort Sort   |   date Sort Sort   |   member Sort Sort
Syndication

8
Date Submitted Sat. Oct. 28th, 2006 3:00 PM
Revision 1
Scripter SCoon
Tags Java | Password
Comments 0 comments
8
Date Submitted Sun. Oct. 29th, 2006 10:32 AM
Revision 1
Scripter SCoon
Tags Format | Java | Number | String
Comments 0 comments
Configurable number formatter.
8
Date Submitted Mon. Oct. 30th, 2006 4:42 AM
Revision 1
Scripter SCoon
Tags FreeMind | Java | Mindmaps | Ruby | Web | XML
Comments 0 comments
This code illustrates using ruby REXML package. It converts J2EE web application deployment descriptor web.xml into Freemind mindmap document.
8
Date Submitted Thu. Mar. 2nd, 2006 2:28 AM
Revision 1
Beginner depsypher
Tags Java
Comments 0 comments
Read a eight bytes in little endian order from the given InputStream and create a long out of them.
8
Date Submitted Tue. Feb. 14th, 2006 2:59 PM
Revision 1
Coder mattrmiller
Tags File | Filter | Java | JFileChooser
Comments 0 comments
Set's a filter for what files to accept when using JFileChooser.
8
Date Submitted Thu. Feb. 23rd, 2006 1:10 PM
Revision 1
Coder mattrmiller
Tags Bits | Bytes | Constants | Java
Comments 0 comments
I needed these for a recent project, bits and bytes constants.
8
Date Submitted Fri. Feb. 24th, 2006 8:18 PM
Revision 2
Coder mattrmiller
Tags Java | JPasswordField | Password | String
Comments 2 comments
Convert a password returned by JPasswordField::getPassword() into a String.
9
Date Submitted Wed. Dec. 27th, 2006 9:40 AM
Revision 1
Scripter bertheymans
Tags Java | List | Set | uniqueness
Comments 2 comments
This is a very convenient way to remove all doubles from a List in Java. The only prerequisite is that the elements in the list have proper equals and hashCode methods.

It work by using the constructor of a Set that takes a Collection as an argument.

I poured the snippet in a little program so can run it straight away.
9
Date Submitted Thu. Mar. 16th, 2006 6:44 PM
Revision 1
Helper Snyke
Tags debugging | Java | log4j | logging | Output
Comments 0 comments
Log4J is a really nice Library that aims to facilitate outputting debugging information, but also relevant data, in Java applications. It is highly configurable, using both Categories and Class-Based rules, so that developers can narrow down the problems very well when debugging applications.
9
Date Submitted Mon. Apr. 3rd, 2006 10:41 AM
Revision 1
Helper jpinkham
Tags debug | Java | toString
Comments 1 comments
Do you find yourself implementing toString on your objects all the time, and wondering why (the debugger seems to do a pretty good job of it all by itself)...well, here's a bit of introspection applied to the problem. This is for all those quick debug sessions where you just want to do System.out.println(myComplexObject).

Instead, just do System.out.println(DebugPrint.toString(myComplexObject));