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:
| foreach ($form->getMessages() as $fieldName => $errorMessages) { | |
| foreach ($errorMessages as $messageKey => $message) { | |
| echo $fieldName.': '.$messageKey.' -> '.$message.'<br />'; | |
| } | |
| } |
| #to use rails you need to compile rvm with ssl and readline | |
| #http://dev.mensfeld.pl/2011/06/rvm-i-no-such-file-to-load-openssl/ | |
| #https://rvm.beginrescueend.com/packages/openssl/ | |
| #sudo apt-get install openssl libssl-dev libreadline6-dev | |
| rvm pkg install openssl | |
| rvm pkg install readline | |
| rvm remove 1.9.2 | |
| rvm cleanup all | |
| rvm install 1.9.2 --with-openssl-dir=$rvm_path/usr, --with-readline-dir=$rvm_path/usr |
| gem list | cut -d" " -f1 >> gemslist.txt | |
| #remove from this gems You want to leave | |
| more gemslist.txt | xargs gem uninstall -aIx |
| # 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 |
| #!/bin/env ruby | |
| # encoding: utf-8 |
| #!/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 |
| # 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"); | |
| } | |
| } |
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'); |