What's Here?
- Members: 306,724
- Replies: 840,894
- Topics: 140,491
- Snippets: 4,465
- Tutorials: 1,165
- Total Online: 2,640
- Members: 132
- Guests: 2,508
|
|
 |
|
|
Submitted: October 11, 2009
Views: 13
This code takes a positive integer as input from the user and outputs the sum of all prime numbers less than or equal to the integer entered.
|
|
|
 |
|
|
Submitted: November 18, 2009
Views: 14
sorts an array in O(n log n) time in best and average cases. n^2 of the array is sorted in the opposite order. ie. Ascending vs Descending order.
|
|
|
 |
|
|
Submitted: November 10, 2009
Views: 5
Decrypt a string that has been encrypted using Caesar's Cipher. This is NOT the same as the encrypt snippet, this decrypts a string encrypted using that (reverses it back to the original message).
|
|
|
 |
|
|
Submitted: November 13, 2009
Views: 34
The following functions were created for various ways to limit text entry into a textbox. By calling the appropriate function, the keypress is handled accordingly. Hopefully, these functions will benefit or help to expand upon this area of the textbox.
|
|
|
 |
|
|
Submitted: November 18, 2009
Views: 14
this code create folder named on date if missing so we can use this code to store daily updates like save application log file in daily new created folder
|
|
|
 |
|
|
Submitted: November 19, 2009
Views: 35
get all column names
when u select particular table then display all columns of that table
|
|
|
 |
|
|
Submitted: November 11, 2009
Views: 146
This takes in user input and the computer guesses it in the fewest number of tries as possible. When the number to find is between 0 and 50, the maximum number of tries is 6.
|
|
|
 |
|
|
Submitted: November 12, 2009
Views: 166
This is a snippet demonstrating how to get all the computer names on the network
|
|
|
 |
|
|
Submitted: November 12, 2009
Views: 129
This is a snippet that demonstrates getting the name of all shared folders on the local system using WMI
|
|
|
 |
|
|
Submitted: November 11, 2009
Views: 271
This script takes a number below 3999 and converts it into Roman numerals. Values above 3999 would required "barred" numerals.
|
|
|
 |
|
|
Submitted: November 11, 2005
Views: 233144
Ever wonder how you could get partially transparent backgrounds for div boxes with only HTML/CSS? Well here's how.
|
|
|
 |
|
|
Submitted: April 13, 2007
Views: 127438
Div layer with a scroll bar
|
|
|
 |
|
|
Submitted: January 4, 2006
Views: 114239
Reads and puts value in a textbox in its original text format.
|
|
|
 |
|
|
Submitted: March 2, 2005
Views: 100381
Implements the Linked List Data Structure.
|
|
|
 |
|
|
Submitted: February 25, 2005
Views: 76943
Two functions, used to convert c++ strings from upper case to lowercase and vice versa. Each takes a string argument, and returns the converted string. Please note that parameters should be validated before passing them to the functions.
|
|
|
|