Author: Nathan

Pen, Brush and Ruler

Category: Tools 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 […]

Stopwatch

Category: Date and time Collection: Leopard Icons Size: 128×128 pixels Format: PNG Author: Uknown 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 […]

How to redirect www requests to non-www URL

If you would like to redirect all the requests to the www version of an URL to the non-www version – for example http://www.geekpedia.com to http://geekpedia.com – you can do that by placing the following mod_rewrite rule in your .htaccess file: RewriteCond %{HTTP_HOST} ^www.geekpedia.com$ [NC]RewriteRule ^(.*)$ http://geekpedia.com/$1 [R=301,L] The redirect code 301 means Moved Permanently […]

A complete list of what each IntelliSense icon from Visual Studio .NET means

Here’s what the icons in Intellisense from Microsoft Visual Studio .NET represent: Assembly Delegate Event Interface Namespace Structure Public class Protected class Private class Public constant Protected constant Private constant Public enumeration Protected enumeration Private enumeration Constant inside enumeration Public method Protected method Private method Public property Protected property Private property Public variable Protected variable […]

Back To Top