Skip to content

Instantly share code, notes, and snippets.

View tvaliasek's full-sized avatar

Tomáš Valiašek tvaliasek

View GitHub Profile
@tvaliasek
tvaliasek / emailObfuscation
Created February 13, 2015 14:57
Simple jQuery email obfuscation function
/*
* Simple jQuery function for email obfuscation
*
*<a href="mailto:some#zavinac#email.cz" target="_blank" title="Email link">some#zavinac#email.cz</a>
*
*/
jQuery(function(){
$("a[href^='mailto:']").each(function(){
var $repl = $(this).attr('href');
@tvaliasek
tvaliasek / same-height-col-content
Created February 13, 2015 14:47
jQuery fix for same height items in row
/*
* example of html structure:
*
* <div class="row row-same-height">
* <div class="col-sm-6 col-xs-12">
* <div class="same-height-item">...</div>
* </div>
* <div class="col-sm-6 col-xs-12">
* <div class="same-height-item">...</div>
* </div>
@tvaliasek
tvaliasek / HmpsetPresenter.php
Last active August 29, 2015 14:14
nette2 - phpseclib handle
<?php
namespace App\AdminModule\Presenters;
use Nette,
App\Model,
Nette\Application\Responses,
Net_SSH2, //pear phpseclib 0.3.9. composer: phpseclib/phpseclib
Net_SCP;