- Official homepage
- Official Project Repository
- Git wiki - features an extensive FAQ page, a collection of talks about git, information about third-party tools and resources and lots of other stuff.
- the git book
- git for Computer Scientists
- the building blocks
- irc channel #git on freenode
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
| <?php | |
| function command_exists($cmd) { | |
| return shell_exec('command -v '.$cmd.' >/dev/null && echo 1 || echo 0'); | |
| } |
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
| <?php | |
| ## ./ip-white-list-cron.php | |
| $whitelist_json = __DIR__.'/whitelist.json'; | |
| $cache_mtime = filemtime($whitelist_json); | |
| $write_error = 'Write Error. This needs to be properly setup to be able to write to '.$whitelist_json.PHP_EOL; | |
| if ( $cache_mtime === false ) { | |
| if ( touch($whitelist_json) === false) { |
newly added
- http://www.codealpha.net/295/scanerrlog-reports-apache-log-errors/
- http://www.awstats.org/#DEMO
- http://strictcoder.blogspot.com/2012/02/linux-count-unique-error-log-entries.html
- http://www.cantoni.org/2011/08/17/using-splunk-apache-logs
- http://www.retrospective.centeractive.com/log-analyzer
- http://www.logscape.com/
- https://www.graylog.org/
- https://www.elastic.co/products/logstash
- http://kafka.apache.org/
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
| // Optimized Google Universal Analytics | |
| // optional requirement 1: | |
| // if using ga_track_pre_url feature; | |
| // the DOM element must exist before document.getElementById('ga_track_pre_url').value | |
| // like going just before the closing </body> tag | |
| // optimized http://mathiasbynens.be/notes/async-analytics-snippet#universal-analytics | |
| (function(G,o,O,g,l){G.GoogleAnalyticsObject=O;G[O]||(G[O]=function(){(G[O].q=G[O].q||[]).push(arguments)});G[O].l=+new Date;g=o.createElement('script'),l=o.scripts[0];g.src='//www.google-analytics.com/analytics.js';l.parentNode.insertBefore(g,l)}(this,document,'ga')); |
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
| colorscheme molokai | |
| " Allow cursor keys in insert mode | |
| set esckeys | |
| " Allow backspace in insert mode | |
| set backspace=indent,eol,start | |
| " Use UTF-8 without BOM | |
| set encoding=utf-8 nobomb | |
| " Don't add empty newlines at the end of files | |
| set binary | |
| set noeol |
NewerOlder