|
|
|
Tuesday, 21 February 2012 11:13 |
A very good and informative article indeed . It helps me a lot to enhance my knowledge, I really like the way the writer presented his views.
elettronica Read more: |
|
|
|
|
Monday, 20 September 2010 11:54 |
sprintf and snprintf where things I used to really missing from C.
Here is a straight forward snprintf implementation.
public static String snprintf( int size, String format, Object ... args ) {
StringWriter writer = new StringWriter( size );
PrintWriter out = new PrintWriter( writer );
out.printf( format, args );
out.close();
return writer.toString();
}
 Read more: |
|
Written by
|
|
Monday, 05 October 2009 07:00 |
 | About Nisus Writer Pro
Fast, easy to use, yet with all the power you need. Write your “to do” lists, lesson plans, thesis, or the book you always wanted to write, all with simplicity and style. Your documents will look great, and you won’t need to be a rocket scientist to get started.
Nisus Writer Pro brings features such as Comments, Mail Merge, Table of Contents, Indexing, Bookmarks, Widow and Orphan control, Cross References, Line Numbering, and Text Wrap around images.
Familiar Nisus Writer Classic features are also on board, like attribute sensitive Find and Replace, an upgraded Nisus Macro Language, and Glossaries. Many more features. |
Read more: |
|
|
|
|
|