EBCDIC to ASCII





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

« Previous 1 2 3 4 5 Next »
7
Date Submitted Mon. Aug. 27th, 2007 5:24 PM
Revision 1
Beginner 1jump2
Tags alphabet | alphabetical | ASCII | ASP | chr
Comments 2 comments
Just a quick way to write out an alphabetical list. Useful for menu systems.
10
Date Submitted Thu. Aug. 3rd, 2006 11:54 AM
Revision 1
Helper bobbyrward
Tags boost | CPlusPlus | preprocessor | shared_ptr
Comments 0 comments
template function to create a boost::shared_ptr in the form

boost::shared_ptr classPtr = new_ptr(Arg1, Arg2);

You can also make new_ptr_access a friend of className and make the constructor and destructor private.

This keeps the end user from:

Creating an instance manually on the heap
Creating an instance manually on the stack
Deleting a shared_ptr manually using "delete get()"
6
Date Submitted Thu. Aug. 3rd, 2006 12:10 PM
Revision 1
Helper bobbyrward
Tags boost | CPlusPlus | Format | printf
Comments 0 comments
boost::format gives you the ablility to safely use printf like formatting as well as positional format specifiers ala .NET.
8
Date Submitted Wed. Aug. 9th, 2006 6:12 AM
Revision 1
Helper bobbyrward
Tags C | conversion | CPlusPlus | hexadecimal
Comments 3 comments
Converts a string representation of a number with any base(binary, octal, decimal, hexadecimal, up to base 36) to a long int.
7
Date Submitted Thu. Jan. 11th, 2007 8:47 AM
Revision 1
Scripter Casper42
Tags ASPX | C | CSharp
Comments 3 comments
This little number will allow the contents of other pages to be included or embedded into the rendered HTML of an aspx page. Using the WebClient class from the .NET framework, you can conditionally load pages, even manipulate the HTML before it is rendered and in this example, fill in forms and execute javascript actions.

The following example shows how to auto-login to an Exchange Server - this was something requested for inclusion into our portal, but I left out the logic that pulls/decrypts the real password - for obvious reasons.

Enjoy!
~Jeremy
10
Date Submitted Tue. Aug. 8th, 2006 1:19 AM
Revision 1
Beginner ciorga
Tags CPlusPlus | float | int | toString
Comments 1 comments
Transform any basic type to string. Very handy for log messages

Usage:

int i(12);
float j(3.14);
cout
-7
Date Submitted Wed. Mar. 1st, 2006 3:36 PM
Revision 1
Syntax Master dannyboy
Tags BATCH | C | CMD
Comments 2 comments
Add additional IP to compute
9
Date Submitted Mon. Oct. 9th, 2006 8:29 AM
Revision 1
Beginner dean
Tags C | Convert | unicode | utf8
Comments 2 comments
Convert Unicode To UTF8
-7
Date Submitted Wed. Oct. 11th, 2006 12:21 AM
Revision 1
Beginner dean
Tags 64 | Bits | C | openssl | windows
Comments 2 comments
It’s difficult to find OpenSSL for windows, especially for 64 bit Windows.

after doing some googling, I decideded to providing a simple installation of OpenSSL for windows by myself. It’s easy to use . No need to compile anything....

read more....
5
Date Submitted Sat. Sep. 8th, 2007 11:41 PM
Revision 1
Helper eldaniel
Tags CPlusPlus
Comments 0 comments
View swatch time in c++
« Previous 1 2 3 4 5 Next »