I hereby claim:
- I am czerasz on github.
- I am czerasz (https://keybase.io/czerasz) on keybase.
- I have a public key whose fingerprint is ED80 21A8 8730 9246 A278 881E D87F 15DA 25AB 9B5D
To claim this, I am signing this object:
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <style type="text/css"> | |
| body, html { | |
| margin: 0; padding: 0; | |
| height: 100%; | |
| overflow: hidden; |
I hereby claim:
To claim this, I am signing this object:
| <script> | |
| var gaProperty = 'UA-65367173-1'; | |
| var gaDisableCookieName = 'ga-disable-' + gaProperty; | |
| // Disable Google Analytics if the user opted for this - this information is saved in the cookie | |
| if ( document.cookie.indexOf(gaDisableCookieName + '=true') === -1 ) { | |
| (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ | |
| (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), | |
| m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) | |
| })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); |
| #!/usr/bin/env node | |
| /* | |
| * jQuery File Upload Plugin Node.js Example 2.1.0 | |
| * https://github.com/blueimp/jQuery-File-Upload | |
| * | |
| * Copyright 2012, Sebastian Tschan | |
| * https://blueimp.net | |
| * | |
| * Licensed under the MIT license: | |
| * http://www.opensource.org/licenses/MIT |
| backend jsonp_varnish { | |
| .host = "localhost"; | |
| .port = "80"; | |
| } | |
| #------------- begin jsonp functionality -------------# | |
| # How the jsonp_template_backend dispatches to the ESI generating code: | |
| sub jsonp_throw_error_recv { | |
| if (req.url == "/JSONP-ESI-TEMPLATE") { | |
| error 760; |
| #!/bin/env ruby | |
| # encoding: utf-8 |
| # https://www.varnish-software.com/static/book/Getting_started.html#varnishlog | |
| # View requests which are comming from the user to varnish | |
| varnishlog -c -i RxURL | |
| # View requests which are going from varnish to the backend | |
| varnishlog -b -i TxURL | |
| # BAN many objects at once - remember to implement the ban functionality in the /etc/varnish/default.vcl | |
| curl -X BAN -H 'Host: some.host.net' 'http://localhost:80/url/.*' |
| // Compile with | |
| // gcc -o /etc/bin/autossh autossh.c | |
| #include <stdio.h> | |
| int main(int argc, char *argv[]) { | |
| while(1) { | |
| sleep(60); | |
| printf(".\n"); | |
| } | |
| } |
| # if running bash | |
| if [ -n "$BASH_VERSION" ]; then | |
| # include .bashrc if it exists | |
| if [ -f "$HOME/.bashrc" ]; then | |
| . "$HOME/.bashrc" | |
| fi | |
| fi | |
| # Set PATH so it includes user's private bin if it exists | |
| if [ -d "$HOME/bin" ] ; then |
| gem list | cut -d" " -f1 >> gemslist.txt | |
| #remove from this gems You want to leave | |
| more gemslist.txt | xargs gem uninstall -aIx |