Vancouver Joomla!Day provides case study in community-building techniques


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements UNIX and Linux RSS News Vancouver Joomla!Day provides case study in community-building techniques
# 1  
Old 06-16-2008
Vancouver Joomla!Day provides case study in community-building techniques

Mon, 16 Jun 2008 18:00:00 GMT
As free software projects balloon in size, many struggle to create and maintain a sense of community. One of the projects that has been most successful in its community-building efforts is the content management system Joomla! In the last couple of years, its Joomla!Days have been held around the world. A particular case in point is this past weekend's Vancouver Joomla!Day, whose organization and use of social networking to expand the scope of the event make it a case study in modern community-building.


Source...
Login or Register to Ask a Question

Previous Thread | Next Thread

2 More Discussions You Might Find Interesting

1. Programming

UNIX- -Case study - Library management.

Hi.. I am a new joinee to this foram.I need to submit a case study in UNIX .Please help me to submit the case study by giving your valuable ideas.It will be very helpful for me. Topic: Unix File Management A university wants to computerize its Library operations because of... (2 Replies)
Discussion started by: viji_jeya
2 Replies

2. Shell Programming and Scripting

Case Study help

Create a Data file with below fields and “|” as delimitor (ac_bal.dat): A/c No, A/c name ,A/c balance. 1| Mani |1000.00 2| Vikram|1500.00 Create another file say (ac_bal.ctl) which file structure as Files name, record count ,total balances Ac_bal.dat|2|3500.00 Please... (1 Reply)
Discussion started by: Manikanth_V
1 Replies
Login or Register to Ask a Question
SNMP2_GETNEXT(3)							 1							  SNMP2_GETNEXT(3)

snmp2_getnext - Fetch theSNMPobject which follows the given object id

SYNOPSIS
string snmp2_getnext (string $host, string $community, string $object_id, [string $timeout = 1000000], [string $retries = 5]) DESCRIPTION
The snmp2_get_next(3) function is used to read the value of the SNMP object that follows the specified $object_id. PARAMETERS
o $host - The hostname of the SNMP agent (server). o $community - The read community. o $object_id - The SNMP object id which precedes the wanted one. o $timeout - The number of microseconds until the first timeout. o $retries - The number of times to retry if timeouts occur. RETURN VALUES
Returns SNMP object value on success or FALSE on error. In case of an error, an E_WARNING message is shown. EXAMPLES
Example #1 Using snmp2_get_next(3) <?php $nameOfSecondInterface = snmp2_get_next('localhost', 'public', 'IF-MIB::ifName.1'; ?> SEE ALSO
snmp2_get(3), snmp2_walk(3). PHP Documentation Group SNMP2_GETNEXT(3)