This Blog is about new technologies, Linux, Sysadmin, Devops, Programming, AWS, Cloud platforms, HP, Hardware, Tech news, Networking, How tos, Configurations, Apache, PHP, Java, Kubernetes, Docker, Openstack, MySQL,
Saturday, December 3, 2011
Rules, copyright and FOSS
Wednesday, October 5, 2011
Sahana FOSS development model
The original idea for a cooperative consisting of three types of organizations that build community:the Educational Computer Science Department,social service organizations (Gov), andthe computing and IT corporations.
Incentives for Different organizations have different but compatible.
First, academic departments are interested in finding ways Foss and Foss teach students about the skills their students are eager to achieve.
Second, Social Service Organizations To acquire or develop software that serves its mission are interested in getting help. Such as Organizations can not afford to buy or develop proprietary software, Sahana seems to be attractive to them.
Third, productive volunteer opportunities for corporations to provide their employees with and are interested in Recruit talented students. In addition to this set of different incentives, all three kinds of organizations Sharing human and the incentive to engage in socially beneficial activities.
When outline the general role model for students. Students work closely with faculty and computing Professionals design, build and maintain the Foss. During the academic year and are on the job
many of them in social service may be held within Agencies like Red Cross or Habitat for Humanity. Sahana can be developed in cross-functional capabilities Independent of location as well as teams on a local or neighborhood scale. For example, teams of developers can be Contribute to the Sahana project,
computing, IT and corporations to provide support through financial and technical resources to drive Development as well as marketing and advertising resources as Sahana - to promote FOSS movement. The portability of The fact that the participants easily academics (including a small community like Hanthana, can make the model stems from ) Students, social service organizations, and corporate sponsors in their places. As word spreads and community
And get involved. Stability of the community or communities derives from the fact that all participants .
Volunteer Almost every human development, including such organizations need to manage projects Sahana disaster relief community and will benefit from the development of inter-operable standards. Thus At volunteers. Similarly, assuming adequate corporate financial support, this model Rely solely on volunteer effort to save some of the problems are associated.
Thursday, August 11, 2011
Friday, December 17, 2010
| ||
| ||
| ||
| ||
| ||
|
darshana
Every Action has a Reaction !
Thursday, December 9, 2010
Chrome OS Cr-48 Caps Lock Key Not Missing After All
Friday, 10 Dec 2010, 9:05am (6 hours, 3 minutes ago)When the news broke that Google would be replacing the Caps Lock key for its new Chrome OS-based Cr-48 notebook with a Search function, many folks, including us here, were left scratching our heads at the move. Sure, it changed the seldom used (unless you were an internet troll) key to something that's used more often, but there may be occasions (admittedly few) that would require the use of the key. Thankfully it seems like the option is there to switch it back from being the Search key. We do wonder however, if getting used to a Search key may be a better idea in the long run after all.
pcmag.com - But wait, the ability to type in "ALL CAPS" is not entirely missing from the Cr-48 or Google Chrome OS. We found it during the laptops' built in tutorial. Here's how Google snarkily explains it:
If you really need Caps Locks so you can post an INSIGHTFUL COMMENT ON YOUTUBE, click the wrench, click Settings, and then go to the System section for change the Modifier Key from a Search key to a Caps Lock key."
Full article here.
darshana
Every Action has a Reaction !
Thursday, November 18, 2010
Below are some examples of how to specify the foreign key when creating the ORDERS table:
MySQL:
CREATE TABLE ORDERS
(Order_ID integer,
Order_Date date,
Customer_SID integer,
Amount double,
Primary Key (Order_ID),
Foreign Key (Customer_SID) references CUSTOMER(SID));
Oracle:
CREATE TABLE ORDERS
(Order_ID integer primary key,
Order_Date date,
Customer_SID integer references CUSTOMER(SID),
Amount double);
SQL Server:
CREATE TABLE ORDERS
(Order_ID integer primary key,
Order_Date datetime,
Customer_SID integer references CUSTOMER(SID),
Amount double);
Monday, September 27, 2010
Find Linux installed date...
Name : basesystem Relocations: (not relocatable)
Version : 8.0 Vendor: Red Hat, Inc.
Release : 5.1.1 Build Date: Wed 12 Jul 2006 12:38:04 PM IST
Install Date: Mon 03 May 2010 03:05:35 PM IST Build Host: ls20-bc2-14.build.redhat.com
Group : System Environment/Base Source RPM: basesystem-8.0-5.1.1.src.rpm
Size : 0 License: public domain
Signature : DSA/SHA1, Thu 18 Jan 2007 09:03:57 PM IST, Key ID 5326810137017186
Packager : Red Hat, Inc. <http://bugzilla.redhat.com/bugzilla>
Summary : The skeleton package which defines a simple Red Hat Linux system.
Description :
Basesystem defines the components of a basic Red Hat Linux system (for
example, the package installation order to use during bootstrapping).
Basesystem should be the first package installed on a system, and it
should never be removed.