parameters

Francesco Montefoschi's Blog: PHPADD: abandoned docblocks detect...

PHPDeveloper.org  Tue, 12/14/2010 - 13:34

Francesco Montefoschi has a recent post to his blog looking at a tool you could use to ensure the quality of your code comments - PHPADD, the abandoned docblock detector.


 

Zend Developer Zone: Create APIs with FRAPI

PHPDeveloper.org  Wed, 10/20/2010 - 08:13

New on the Zend Developer Zone is a tutorial from Trevor Morse about creating an API with the help of FRAPI, a tool built to make creating API interfaces simple and easy by providing a framework to build on top of rather than rolling your own.


 

Tech Tip: Dereference Variable Names Inside Bash Functions

Linux Journal - The Original Magazine of the Linux Community  Fri, 01/15/2010 - 11:09

We often read (including in the book Advanced Bash-Scripting Guide by Mendel Cooper) that if we pass variable names as parameters to functions, they will be treated as string literals and cannot be dereferenced (ie the value is not available).

But this is not so, variable names can be passed as parameters to functions and they can be dereferenced to obtain the value of the variable with the given name.

read more


 

Monitoring Notebook Battery with IBAM

Linux Today  Tue, 12/08/2009 - 15:34

Linux Pro Magazine: "While KDE, Gnome, and Xfce come with dedicated graphical utilities for monitoring notebook battery, you might still want to use IBAM to keep an eye on the battery parameters directly from the command line."


 

Jani Hartikainen's Blog: A simple way to make your code better: ...

PHPDeveloper.org  Thu, 11/12/2009 - 11:19

Jani Hartikainen offers a simple suggestion for making your code better - stop adding more parameters.


 

Creating and Using Templates with Cacti 0.8

Linux Today  Wed, 09/16/2009 - 15:34

Packt: "Whenever we want to add a new device or create a new graph, we have to input these parameters. Inputting these parameters manually is flexible, but not very user friendly, and there is always a chance of error.

Using templates, we can easily overcome this problem."


 

The Kernel Newbie Corner: Everything You Wanted to Know About Mo...

Linux Today  Wed, 07/15/2009 - 12:02

Linux.com: "This week, we're going to discuss the ins and outs of adding parameters to your loadable modules and, as we did last week, we're going to work off the appropriate section in the book Linux Device Drivers (3rd ed.) (LDD3), that you can find online here."


 

Timothy Boronczyk's Blog: Currying in PHP

PHPDeveloper.org  Fri, 07/10/2009 - 12:33

Timothy Boronczyk has posted about an interesting concept you could use in your applications - currying (made possible in PHP 5.3.x and above):