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
NUTSCAN_SCAN_SNMP(3)						    NUT Manual						      NUTSCAN_SCAN_SNMP(3)

NAME
nutscan_scan_snmp - Scan network for SNMP devices. SYNOPSIS
#include <nut-scan.h> nutscan_device_t * nutscan_scan_snmp(const char * start_ip,const char * stop_ip,long timeout, nutscan_snmp_t * sec); DESCRIPTION
The nutscan_scan_snmp() function try to detect NUT compatible SNMP devices. It tries SNMP queries on every IP ranging from start_ip to stop_ip. Those IP may be either IPv4 or IPv6 addresses or host names. You MUST call nutscan_init(3) before using this function. This function waits up to timeout microseconds before considering an IP address does not respond to SNMP queries. A valid nutscan_snmp_t structure must be passed to this function. The nutscan_snmp_t structure contains the following members which must be filled as described below: char * 'community'; char * 'secLevel'; char * 'secName'; char * 'authPassword'; char * 'privPassword'; char * 'authProtocol'; char * 'privProtocol'; If community is not NULL, SNMP v1 request are sent using this community. If community is NULL and secLevel is NULL, SNMP v1 is selected and community is set to "public". In the other cases, SNMP v3 is used. secLevel may be one of SNMP_SEC_LEVEL_NOAUTH, SNMP_SEC_LEVEL_AUTHNOPRIV or SNMP_SEC_LEVEL_AUTHPRIV. secName is the security name and must be non NULL. If secLevel is set to SNMP_SEC_LEVEL_AUTHNOPRIV, authPassword must be non NULL. If secLevel is set to SNMP_SEC_LEVEL_AUTHPRIV, authPassword and privPassword must be non NULL. If authProtocol is NULL, MD5 protocol is used. Else you can set authProtocol to either "MD5" or "SHA". If privProtocol is NULL, DES protocol is used. Else you can set privProtocol to either "AES" or "DES". peername and handle are used internally and do not need any initialization. RETURN VALUE
The nutscan_scan_snmp() function returns a pointer to a nutscan_device_t structure containing all found devices or NULL if an error occurs or no device is found. SEE ALSO
nutscan_init(3), nutscan_scan_usb(3), nutscan_scan_xml_http(3), nutscan_scan_nut(3), nutscan_scan_avahi(3), nutscan_scan_ipmi(3), nutscan_display_ups_conf(3), nutscan_display_parsable(3), nutscan_new_device(3), nutscan_free_device(3), nutscan_add_option_to_device(3), nutscan_add_device_to_device(3), nutscan_cidr_to_ip(3) Network UPS Tools 05/22/2012 NUTSCAN_SCAN_SNMP(3)