cd ~/Library/Application\ Support/Sublime\ Text\ 2/Packages
git clone git://github.com/jashkenas/coffee-script-tmbundle CoffeeScript
git clone https://github.com/miksago/jade-tmbundle.git Jade
git clone https://github.com/LearnBoost/stylus.git Stylus
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
print print_r(array_keys($fields), 1); |
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
print print_r(array_keys($fields), 1); |
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
<style> | |
.fb-comments, .fb-comments iframe[style], .fb-like-box, .fb-like-box iframe[style] {width: 100% !important;} | |
.fb-comments span, .fb-comments iframe span[style], .fb-like-box span, .fb-like-box iframe span[style] {width: 100% !important;} | |
</style> |
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
server { | |
server_name www.example.com example.com; | |
access_log /srv/www/www.example.com/logs/access.log; | |
error_log /srv/www/www.example.com/logs/error.log; | |
root /srv/www/www.example.com/public_html; | |
rewrite ^/([^/])/(.)(/?)$ /$1/index.php?q=$2&$args; | |
error_page 500 502 503 504 /50x.html; | |
location = /50x.html { |
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
server { | |
server_name www.example.com example.com; | |
access_log /srv/www/www.example.com/logs/access.log; | |
error_log /srv/www/www.example.com/logs/error.log; | |
root /srv/www/www.example.com/public_html; | |
rewrite ^/([^/])/(.)(/?)$ /$1/index.php?q=$2&$args; | |
error_page 500 502 503 504 /50x.html; | |
location = /50x.html { |
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
server { | |
server_name www.example.com example.com; | |
access_log /srv/www/www.example.com/logs/access.log; | |
error_log /srv/www/www.example.com/logs/error.log; | |
root /srv/www/www.example.com/public_html; | |
rewrite ^/([^/])/(.)(/?)$ /$1/index.php?q=$2&$args; | |
error_page 500 502 503 504 /50x.html; | |
location = /50x.html { |
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
doctype | |
//if lt IE 7 | |
html.no-js.lt-ie9.lt-ie8.lt-ie7 | |
//if IE 7 | |
html.no-js.lt-ie9.lt-ie8 | |
//if IE 8 | |
html.no-js.lt-ie9 | |
//[if gt IE 8]><! | |
html.no-js | |
//<![endif] |
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
// module dependencies | |
var http = require('http'), | |
url = require('url'); | |
/** | |
* UrlReq - Wraps the http.request function making it nice for unit testing APIs. | |
* | |
* @param {string} reqUrl The required url in any form | |
* @param {object} options An options object (this is optional) |
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
{ | |
"name": "curso-backend", | |
"version": "0.0.1", | |
"dependencies": { | |
"express": "~3.4.0" | |
} | |
} |
OlderNewer