“Thousands of candles can be lit from a single candle, and the life of the candle will not be shortened. Happiness never decreases by being shared." - Gautama Buddha
Showing posts with label Software - Technical resources. Show all posts
Showing posts with label Software - Technical resources. Show all posts
Thursday, November 18, 2010
Friday, July 17, 2009
Monday, April 13, 2009
Software Engineering Resuorces
Huge list of links for software engineering, software process improvement, SPIN, ISO 9001, etc.
Saturday, April 4, 2009
Manual installation of Php 5.2
I was trying to install Php 5.2. But I faced several problems while doing so. My OS is Windows XP. Php website is http://php.net/. I downloaded the windows installer. But it was quitting abruptly. Then I had to switch to manual installation. A comprehensive document is already provided on this linkhttp://www.php.net/manual/en/install.windows.manual.php. But I extracted the main points from the manual so that installation will be easier for me, if needed again. The steps also include configuring IIS.
Following are the steps:
- Download the zip file (windows binaries) from http://www.php.net/downloads.php
- Extract the zip file to C:\php
- By default there are 2 .ini files - php.ini-dist and php.ini-recommended. Use php.ini-recommended and rename it to php.ini. Set the necessary settings required for the application to be built in php.ini. Copy php.ini from C:\php to C:\Winnt.
- Copy php5isapi.dll from C:\php to C:\Winnt\system32
- Go to Control Panel -> Administrative Tools -> Internet Services Manager
- In ISM, select 'Default Website' Properties. Go to ISAPI Filter tab. 'Add' new filter. Filter Name -> php and Executable -> C:\php\php5isapi.dll
- In ISM, Select 'Home Directory' tab. Press 'Configuration' button. Add ext -> php and executable -> C:\php\php5isapi.dll
- Restart IIS service
- Test php installation.
Friday, February 27, 2009
Project planning - risk management links
Software Program Managers Network: http://www.spmn.com/
Info of risks on Software Engineering Institue: http://www.sei.cmu.edu/risk/risk.faq.html
Risks Digest: http://catless.ncl.ac.uk/Risks
Earned Value Analysis: http://www.acq.osd.mil/pm/
Labels:
Books,
Management,
Software - Technical resources
Sunday, February 22, 2009
Good technical links for project planning
Info about outsourcing : http://www.outsourcing.com/
Info about COCOMO ( Constructive Cost Model) : http://en.wikipedia.org/wiki/COCOMO
Info about project planning : http://www.qsm.com/
Info about decision tree : http://www.mindtools.com/dectree.html
Saturday, February 7, 2009
Academic Earth
http://academicearth.org/
This website provides thousands of video lectures from the world's top scholars
Labels:
Books,
Education,
Management,
Software - Technical resources
Tuesday, November 4, 2008
Saturday, May 24, 2008
Coverity and open source code
Flaws found in open source codes
Tom Espiner - 2008/05/21 08:56:01
http://www.builderau.com.au/news/soa/Flaws-found-in-open-source-codes/0,339028227,339289125,00.htm
A project funded by the US Department of Homeland Security has praised improvements in open source security, while outlining some common errors.
Coverity, a commercial code analysis company spun out of Stanford University, has been running its Scan project with Department of Homeland Security funding since 2006.
On Tuesday, Coverity released its Open Source Report, which gives results of bugs in more than 250 open-source projects. Coverity declined to give details of individual projects' faults, but instead gave a list of frequent coding errors.
Coverity did single out some projects for particular praise due to the cleanliness of the code, including Amanda, NTP, OpenPAM, OpenVPN, Perl, PHP, Python and Samba.
The most common type of code defect, accounting for 28 percent of all the defects found, was the NULL pointer dereference, as the use of pointers in C/C++ is error-prone, according to Coverity.
"This type of error often occurs when one code path initialises a pointer before its use, but another code path bypasses the initialisation process," stated the report. "Pointers are a notoriously challenging programming concept that many languages elide altogether (eg Java). Senior developers know that new programmers frequently have trouble understanding pointers."
Because pointers are often used to pass data structures by reference between pieces of program logic, they may be the most commonly manipulated data objects due to repeated copying, aliasing and accessing. Therefore, it is not surprising that the most frequently used artefacts will incur the most errors in manipulation, said Coverity.
The second most common type of code defect are resource leaks. While some resource leaks are pointer-related, others may be the result of misusing an application programming interface (API), said Coverity.
Other common code defects include unintentional ignored expressions, use before test and buffer overflow vulnerabilities.
Copyright © 2008 CNET Networks, Inc. All rights reserved.
Tom Espiner - 2008/05/21 08:56:01
http://www.builderau.com.au/news/soa/Flaws-found-in-open-source-codes/0,339028227,339289125,00.htm
A project funded by the US Department of Homeland Security has praised improvements in open source security, while outlining some common errors.
Coverity, a commercial code analysis company spun out of Stanford University, has been running its Scan project with Department of Homeland Security funding since 2006.
On Tuesday, Coverity released its Open Source Report, which gives results of bugs in more than 250 open-source projects. Coverity declined to give details of individual projects' faults, but instead gave a list of frequent coding errors.
Coverity did single out some projects for particular praise due to the cleanliness of the code, including Amanda, NTP, OpenPAM, OpenVPN, Perl, PHP, Python and Samba.
The most common type of code defect, accounting for 28 percent of all the defects found, was the NULL pointer dereference, as the use of pointers in C/C++ is error-prone, according to Coverity.
"This type of error often occurs when one code path initialises a pointer before its use, but another code path bypasses the initialisation process," stated the report. "Pointers are a notoriously challenging programming concept that many languages elide altogether (eg Java). Senior developers know that new programmers frequently have trouble understanding pointers."
Because pointers are often used to pass data structures by reference between pieces of program logic, they may be the most commonly manipulated data objects due to repeated copying, aliasing and accessing. Therefore, it is not surprising that the most frequently used artefacts will incur the most errors in manipulation, said Coverity.
The second most common type of code defect are resource leaks. While some resource leaks are pointer-related, others may be the result of misusing an application programming interface (API), said Coverity.
Other common code defects include unintentional ignored expressions, use before test and buffer overflow vulnerabilities.
Copyright © 2008 CNET Networks, Inc. All rights reserved.
Tuesday, May 20, 2008
Quality Assurance
Another good link provided by Roger Pressman in his book 'Software Engineering'
http://www.asq.org/
http://www.asq.org/
Thursday, March 27, 2008
Software Engg links
The following links were mentioned in the book 'Software Engg' by Roger Pressman as additional reference material
http://www.sei.cmu.edu/ - gives info about Software Engg Institute and CMM levels
http://www.stsc.hill.af.mil/ - gives info about software technology support centre
http://www.sei.cmu.edu/ - gives info about Software Engg Institute and CMM levels
http://www.stsc.hill.af.mil/ - gives info about software technology support centre
Saturday, January 26, 2008
MSDN code gallery
I found this link on one of the 'daily developer news' email from www.codeproject.com
http://code.msdn.microsoft.com/
http://code.msdn.microsoft.com/
Saturday, January 12, 2008
Thursday, January 10, 2008
Software coding resources
Vijay Mukhi's Technology Cornucopia
http://vijaymukhi.com/
Codeguru
http://www.codeguru.com/
MSDN
http://msdn.microsoft.com/library/
http://vijaymukhi.com/
Codeguru
http://www.codeguru.com/
MSDN
http://msdn.microsoft.com/library/
Subscribe to:
Posts (Atom)