- 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 hidden or 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
(function() { | |
var inititialize = false; | |
var superPattern = /xyz/.test(function() { | |
var xyz; | |
}) ? /\b_super\b/ : /.*/; | |
Object.extend = function(proporties) { | |
proporties = proporties || {}; | |
var _super = this.prototype; | |
inititialize = true; |
This file contains hidden or 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
<div class="ec-table"> | |
<div class="ec-table__list-head"> | |
<div class="ec-table__row"> | |
<div class="ec-table__cell ec-table__cell--tiers"></div> | |
<div class="ec-table__cell"></div> | |
<div class="ec-table__cell"></div> | |
<div class="ec-table__cell"></div> | |
</div> | |
</div> | |
<!-- with nested table --> |
This file contains hidden or 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
<div class="ec-table ec-table--nested ec-table--small"> | |
<div class="ec-table__list ec-table__list--head"> | |
<div class="ec-table__row"> | |
<div class="ec-table__cell ec-table__cell--tiers"></div> | |
<div class="ec-table__cell"></div> | |
<div class="ec-table__cell"></div> | |
<div class="ec-table__cell"></div> | |
</div> | |
</div> | |
<div class="ec-table__list ec-table__list--body"> |
This file contains hidden or 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
<snippet> | |
<content><![CDATA[ | |
<!-- begin $1 --> | |
<div class="$1"> | |
$2 | |
</div> | |
<!-- end $1 --> | |
]]></content> | |
<!-- Optional: Set a tabTrigger to define how to trigger the snippet --> | |
<tabTrigger>di</tabTrigger> |
This file contains hidden or 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
server { | |
listen 80; | |
server_name www.domain.com; | |
root /sites/mysite/; | |
access_log /path/to/nginx/access.log; | |
error_log /path/to/nginx/error.log; | |
location /media/ { | |
alias /path/to/project/media/; |
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.