- node.js
- Installation paths: use one of these techniques to install node and npm without having to sudo.
- Node.js HOWTO: Install Node+NPM as user (not root) under Unix OSes
- Felix's Node.js Guide
- Creating a REST API using Node.js, Express, and MongoDB
- Node Cellar Sample Application with Backbone.js, Twitter Bootstrap, Node.js, Express, and MongoDB
- JavaScript Event Loop
- Node.js for PHP programmers
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# PHPMD | |
pear channel-discover pear.phpmd.org | |
pear channel-discover pear.pdepend.org | |
pear install --alldeps phpmd/PHP_PMD | |
# PHPCS | |
pear install PHP_CodeSniffer | |
# PHPCPD | |
pear install phpunit/phpcpd |
Attention: if you attempt to fork this gist, github will think that you are a spammer and you will have to confirm that you are human with them. Apparantly there are too many links in this list. Also I update it rather frequently (see revisions on the left), so it's probably wise to not fork it anyway.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Given /^(?:|I )am on (?:|the )homepage$/ | |
When /^(?:|I )go to (?:|the )homepage$/ | |
Given /^(?:|I )am on "(?P<page>[^"]+)"$/ | |
When /^(?:|I )go to "(?P<page>[^"]+)"$/ | |
When /^(?:|I )reload the page$/ | |
When /^(?:|I )move backward one page$/ | |
When /^(?:|I )move forward one page$/ | |
When /^(?:|I )press "(?P<button>(?:[^"]|\\")*)"$/ | |
When /^(?:|I )follow "(?P<link>(?:[^"]|\\")*)"$/ | |
When /^(?:|I )fill in "(?P<field>(?:[^"]|\\")*)" with "(?P<value>(?:[^"]|\\")*)"$/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# generic files to ignore | |
*~ | |
*.lock | |
*.DS_Store | |
*.swp | |
*.out | |
# IDE files to ignore | |
nbproject/ | |
.idea/ |
A list of amazingly awesome PHP libraries that you should consider using (and some other shiny extras).
- Composer/Packagist - A package and dependency manager.
- Composer Installers - A multi framework Composer library installer.
- Symfony2 - A framework comprised of individual components.
- Zend Framework 2 - Another framework comprised of individual components.
- Laravel 4 - A simple PHP framework.
- Lithium - Another framework of components.