This SQL query will search for a specific keyword in all the stored procedures available.
Convert ASCII values from hex to characters
This C# code takes in a list of ASCII values (hexadecimal) and shows the actual characters behind, thus converting hex values to strings.
Delete All Temporary Internet Files Of IE
Delete all the temporary files from Internet Explorer’s cache folder using basic methods available in the System.IO namespace.
PDF Document
Category: Document Collection: Unknown Size: 128×128 pixels Format: PNG Author: Unknown License*: Unknown Category: Document Collection: Unknown Size: 64×64 pixels Format: PNG Author: Unknown License*: Unknown Category: Document Collection: Unknown Size: 48×48 pixels Format: PNG Author: Unknown License*: Unknown Category: Document Collection: Unknown Size: 32×32 pixels Format: PNG Author: Unknown License*: Unknown Category: Document Collection: […]
Pronounceable Random Password Generator
This piece of code generates a random password of the specified length, but mixes the two sets of letters so that a pronouncable password is being generated.
Validate String For Positive Integer Values
A very simple way to validate a string for positive integer values using C# and regular expressions.
Hammer and Blueprint
Category: Blueprints Collection: Leopard Icons Size: 128×128 pixels Format: PNG Author: Unknown License*: Unknown * No explicit rights are being given by Geekpedia.com to use this icon for personal or commercial use. To gain rights of usage for this icon you should ask the author for permission. If you are the author of this icon […]
What is the difference between Windows Authentication and SQL Authentication?
If you are new to the Microsoft SQL Server environment, you probably encountered the possibility to choose between Windows Authentication and SQL Authentication. SQL Authentication SQL Authentication is the typical authentication used for various database systems, composed of a username and a password. Obviously, an instance of SQL Server can have multiple such user accounts […]
How do I get the visitor’s IP address?
There are two possible ways, either using: or using Furthermore there is information that the below line retrieves the actual IP address and not the Proxy: However this hasn’t been tested yet.
Display Time That Passed Since a Date
Calculate the time that has passed since a specified Unix formatted date and time, and show it in a human readable format, all in a PHP function.