Web Building Tutorials
Learn HTML, CSS, HTML, JavaScript
Reference: http://www.w3schools.com/
Subversion plugin for Eclipse
Subclipse versions are tied to specific versions of the Subversion client API. So you must have a matching version of the Subversion client API (JavaHL) for your version of Subclipse
- Windows Install New Software
- Add
- Name: Subversion
- Location: http://subclipse.tigris.org/servlets/ProjectProcess?pageID=p4wYuA
Reference: http://subclipse.tigris.org/servlets/ProjectProcess?pageID=p4wYuA
Assembla Projects OnLine
Assembla provides tools and services for accelerating software development, with three lines of business:
Tools: Workspaces on Assembla.com, this web site, used by thousands of teams.
Reference: http://www.assembla.com/
FishEye Source Code Repository
Explore your source, FishEye opens your source code repository to help you understand your code and keep tabs on the people who write it.
View user activity, track code changes, search and navigate through the guts of your repository — all from the comfort of your browser.
You’ll never look at Subversion, CVS, Perforce or Git the same way again!
Reference: http://www.atlassian.com/software/fisheye/
Cobertura Unit Test Report
What is Cobertura?
Cobertura is a free Java tool that calculates the percentage of code accessed by tests. It can be used to identify which parts of your Java program are lacking test coverage. It is based on jcoverage.
Features
- Can be executed from ant or from the command line.
- Instruments Java bytecode after it has been compiled.
- Can generate reports in HTML or XML.
- Shows the percentage of lines and branches covered for each class, each package, and for the overall project.
- Shows the McCabe cyclomatic code complexity of each class, and the average cyclomatic code complexity for each package, and for the overall product.
- Can sort HTML results by class name, percent of lines covered, percent of branches covered, etc. And can sort in ascending or decending order.
Reference: http://cobertura.sourceforge.net/
Bamboo Continuous Integration
Continuous integration (CI) brings faster feedback to your development process, preventing bugs from piling up and reducing the risk of project delays. Bamboo enables development teams of any size to adopt CI in minutes, easily integrate it with their work day and scale their build farm using elastic resources in the Amazon EC2 cloud.
Reference: http://www.atlassian.com/software/bamboo/
Zend Subversion
svn export http://framework.zend.com/svn/framework/standard/trunk
svn checkout http://framework.zend.com/svn/framework/standard/trunk
Zend Framework Tutorials
These particular videos require a little more background knowledge from the viewer, in terms of overall php development experience.
Reference from killerphp.com
http://www.killerphp.com/zend-framework/videos/
Reference from Akrabat.com
http://akrabat.com/zend-framework-tutorial/
http://akrabat.com/wp-content/uploads/getting-started-with-the-zend-framework_122.pdf
VIM replace tab for spaces
vi ~/.vimrc
To get vim to interpret tab as an “indent” command instead of an insert-a-tab command, do this:
set softtabstop=2
To set the mod-N indentation used when you hit the tab key in vim (what Emacs calls c-basic-offset), do this:
set shiftwidth=2
To cause the TAB file-character to be displayed as mod-N in vi and vim (what Emacs calls tab-width), do this:
set tabstop=4
To cause TAB characters to not be used in the file for compression, and for only spaces to be used (what emacs calls indent-tabs-mode), do this:
set expandtab
In vi (and vim), you can do this stuff on a per-file basis using “modelines,” magic comments at the top of the file, similarly to how it works in Emacs:
/* ex: set tabstop=8 expandtab: */
