Closure Compiler as Simple HTTP Server
Moved to https://github.com/glensc/closure-compiler-httpserver
Mon Mar 22 15:25:10 EET 2010 |
diff --git a/min/lib/Minify/HTML/Helper.php b/min/lib/Minify/HTML/Helper.php | |
index 807fdc9..f199ac4 100644 | |
--- a/min/lib/Minify/HTML/Helper.php | |
+++ b/min/lib/Minify/HTML/Helper.php | |
@@ -69,7 +69,7 @@ class Minify_HTML_Helper { | |
if ($debug) { | |
$path .= "&debug"; | |
} elseif ($farExpires && $this->_lastModified) { | |
- $path .= "&" . $this->_lastModified; | |
+ $path .= "&" . ($this->_lastModified + $this->_filePathChecksum); |
Closure Compiler as Simple HTTP Server
Moved to https://github.com/glensc/closure-compiler-httpserver
eventum.bzr |
/vendor/ | |
/bin/ | |
/composer.phar | |
*~ | |
*.sw[op] |
<?php | |
/** | |
* Overly simple XML parser. | |
* | |
* Does not parse CDATA nor nested tags well | |
* | |
* @author Elan Ruusamäe <glen@delfi.ee> | |
*/ | |
class XmlParserException extends RuntimeException { |
copy noedit.vim
to $VIMRUNTIME/plugin/noedit.vim
or just include in your ~/.vimrc
file
#!/bin/sh | |
# https://git-scm.com/docs/githooks | |
# | |
# This is hook that updates composer | |
# if branch change included change in composer.json | |
# | |
# additionally, if vendor dir is under (separate!) git repo, | |
# the result can be speed up by switching and keeping git branch up to date | |
# there as well. |
#!/usr/bin/python | |
# Script for Subversion integration with Slack | |
# | |
# Uses slackweb module: | |
# https://github.com/satoshi03/slack-python-webhook | |
# 1. Save this file in /usr/bin as slack-svn-hook | |
# 2. Make it executable: | |
# chmod +x /usr/bin/slack-svn-hook | |
# 3. Put this line at the end of file of your_svn_repo/hooks/post-commit: |