- Welcome to Geeksww.com
categories
Database Management Systems
- MS SQL Server
- MySQL
- Oracle Berkeley DB
Libraries
- Apache Portable Runtime
- Apache Portable Runtime Utility
- Flex
- Freetds
- Libiconv
- Libmcrypt
- Libmhash
- Libpng
- Libxml
- Libxslt
- m4
- Neon (webdav)
- OpenSSL
- zLib
Miscellaneous
- Bison
- Byacc
- UML
- Varnish Cache
Operating Systems
- Linux
- MacOS X
- MS Windows
Servers
- Apache Web Server
- Internet Information Services
- Node.js
- vsftpd FTP Server
Tools
- Development
- Security
Web Development
- AJAX
- Dart
- Javascript
- PHP
- Python
tags cloud
Prev | 1 2 3 4 5 6 7 8 9 10 11 | Next
Simple Coding Style for PHP - Part 1/2
Submitted by Webmaster on Thursday January 15, 2009
Many programmers use different kinds of coding styles to write code I have my own version that (i think) is simple and easy-to-use...(Read more)
Category:
Web Development > PHP > Tips and Tricks
Tags:
Simple Coding Style for PHP - Part 2/2
Submitted by Webmaster on Thursday January 15, 2009
Some more guidelines..(Read more)
Category:
Web Development > PHP > Tips and Tricks
Tags:
Decoding XML String Values (PHP version)
Submitted by Webmaster on Thursday January 15, 2009
I have already explained how to encode values in an XML string (using Javascript) here. So, if you have encoded the values in your XML strings using my javascript function then you can use the PHP function(explained below) to decode the values in those XML string on the server side (i.e. backend PHP side.)..(Read more)
Category:
Web Development > PHP > Tips and Tricks
Tags:
Installing & Configuring JSDoc On Windows
Submitted by Webmaster on Thursday January 15, 2009
This short tutorial will teach you how to install JSDoc on Windows. JSDOC is a Javascript documentation generator tool. You add formatted comments inside your javascript code, JSDOC takes all the commented javascript code as input and generates javadoc style documentation using those comments. For more details on how to use JSDOC visit http://jsdoc.sourceforge.net/...(Read more)
Category:
Operating Systems > MS Windows > Installation
Tags:
How to execute a function at regular intervals using Javascript
Submitted by Webmaster on Thursday January 15, 2009
How to execute a function at regular intervals using Javascript..(Read more)
Category:
Web Development > Javascript > Tips and Tricks
Tags:
Go to Top of the Page Using Javascript
Submitted by Webmaster on Thursday January 15, 2009
Use the code below:..(Read more)
Category:
Web Development > Javascript > Tips and Tricks
Tags:
Sleep/Pause for specified number of seconds
Submitted by Webmaster on Thursday January 15, 2009
Function takes number of milliseconds to sleep as argument. So, if you want to pause execution of code for 2 seconds you'll pass 2000 (2 x 1000) as argument to this function...(Read more)
Category:
Web Development > Javascript > Tips and Tricks
Tags:
Removing Whitespaces from Beginning of a String (Left Trim), using Javascript
Submitted by Webmaster on Thursday January 15, 2009
A very simple function:..(Read more)
Category:
Web Development > Javascript > Tips and Tricks
Tags:
Removing Ending Whitespaces from a String (Right Trim), using Javascript
Submitted by Webmaster on Thursday January 15, 2009
A very simple function:..(Read more)
Category:
Web Development > Javascript > Tips and Tricks
Tags:
Trim whitespaces from both ends of a string, using Javascript
Submitted by Webmaster on Thursday January 15, 2009
The code uses the two functions discussed in other tutorials...(Read more)
Category:
Web Development > Javascript > Tips and Tricks