#HTML presentation tools
There are many HTML presentation tools and they are all created for slightly different reasons. Here's an overview. Please let me know if I forgot any.
##CSSS
CSS-based SlideShow System
Awesome PHP has been relocated permanently to its own Github repository. No further updates will made to this gist.
Please open an issue for any new suggestions.
web: node server.js |
#!/bin/sh | |
ps -ef|grep selenium|grep -v grep|awk '{print $2}'|xargs kill -9 |
Locate the section for your github remote in the .git/config
file. It looks like this:
[remote "origin"]
fetch = +refs/heads/*:refs/remotes/origin/*
url = [email protected]:joyent/node.git
Now add the line fetch = +refs/pull/*/head:refs/remotes/origin/pr/*
to this section. Obviously, change the github url to match your project's URL. It ends up looking like this:
// Original method | |
var object = { | |
method: function (x, y) { | |
return x+y; | |
} | |
} | |
// Add operations before or after! | |
object.method = (function (original) { | |
return function (x, y) { |
alias phpdebug='PHP_IDE_CONFIG="serverName=website.dev" XDEBUG_CONFIG="idekey=PHPSTORM" php -d xdebug.remote_host=10.0.2.2 -d xdebug.remote_connect_back=0' |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
#--------- | |
scheme:php:/var/log/apache/ | |
colorscheme:php | |
cs_re:white,red:PHP (Stack trace:|Fatal error:).* | |
mcsre_s:,,bold:PHP Fatal error: (.*) | |
cs_re:white,red:PHP [ 0-9]+\. | |
cs_re:white,yellow:PHP Warning: .* | |
mcsre_s:,,bold:PHP Warning: (.*) | |
cs_re:yellow:PHP Notice: .* | |
mcsre_s:,,bold:PHP Notice: (.*) |