Skip to content

Instantly share code, notes, and snippets.

@korzo
korzo / Facebook Custom page slider
Created December 5, 2010 17:09
Slider for Facebook page
<style type="text/css">
#wrapper { clear: left; overflow: hidden; position: relative; width: 520px; }
#slideWrap { clear: both; position: relative; width: 9000px;}
.slide { float: left; width: 520px; }
#wrapper #slideNav { float: right; margin: 2.75em 0 2em 0; }
#slideNav li { display: inline; padding: 0; }
#slideNav li a {
background: url(http://cmcilrath.rssready.net/xcel/assets/images/bg_slideNav.png) no-repeat -12px top;
display: block;
@korzo
korzo / .htaccess redirect old domain to new domain
Created December 14, 2010 19:37
Redirect all pages from old domain to new domain with .htaccess
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{HTTP_HOST} ^(www\.)?old\.com$ [NC]
RewriteRule .* http://www.new.com%{REQUEST_URI} [R=301,L]
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\.domain\.com$
RewriteRule (.*) http://www.domain.com/$1 [R=301,L]
<p>
<img src="images/stories/sezona_2011_2012/Ostatne/yankee_stadium.jpg">Chelsea Football Club prostredníctvom oficiálnej stránky oznámil miesto budúcoročnej predsezónnej prípravy.
</p>
<hr id="system-readmore">
<p>
Klub zatiaľ oznámil dva primárne zápasy, na ostatné si fanúšikovia a najmä tí americkí budú musieť ešte počkať.
</p>
<p>
Chelsea odohrá zápas proti Paris St Germain&nbsp;v New Yorku na Yankee Stadium (na obrázku). Zápas je naplánovaný na sobotu 22. júla.
</p>
@korzo
korzo / gist:3299218
Created August 8, 2012 22:03
Add Flattr button to K2 item
<?php
/**
* @version $Id: item.php 1492 2012-02-22 17:40:09Z joomlaworks@gmail.com $
* @package K2
* @author JoomlaWorks http://www.joomlaworks.net
* @copyright Copyright (c) 2006 - 2012 JoomlaWorks Ltd. All rights reserved.
* @license GNU/GPL license: http://www.gnu.org/copyleft/gpl.html
*/
// no direct access
### Keybase proof
I hereby claim:
* I am korzo on github.
* I am korzo (https://keybase.io/korzo) on keybase.
* I have a public key whose fingerprint is 8713 B55D EA15 734F 694E 1C25 C7AA B0A3 CD61 57B3
To claim this, I am signing this object:
" .vimrc of Bart Trojanowski
"
" You can get a more upto date version from
" http://www.jukie.net/~bart/conf/vimrc
"
" Most files sourced by this vimrc are located here:
" http://www.jukie.net/~bart/conf/vim/
"
" ---------------------------------------------------------------------------
@korzo
korzo / default.vcl
Created November 5, 2015 10:52 — forked from fevangelou/default.vcl_PREFACE.md
The perfect Varnish configuration for Joomla (& other CMS based) websites
#################################################################################
### The perfect Varnish configuration for Joomla (& other CMS based) websites ###
#################################################################################
# USE: Place the contents of this configuration inside the main
# Varnish configuration file, located in: /etc/varnish/default.vcl (root server access required - obviously)
# IMPORTANT: The following setup assumes a 2 minute cache time. You can safely increase
# this to 5 mins for less busier sites or drop it to 1 min or even 30s for high traffic sites.
@korzo
korzo / lastfm_export.js
Created November 29, 2015 23:27
Last FM export playlist
// http://jsbin.com/vivucuceco/edit?output
var csv = '',
link,
div;
jQuery("#thePlaylist tr").each(function(i,e){
if (i > 0) {
var as = jQuery("a", jQuery("td", e)[2]).each(function(j, el){
csv = csv + '"'+ el.innerHTML + '";"' + el.href + '"';
if (j === 0) {
csv = csv + ';';
@korzo
korzo / ucm_remapper.php
Created December 1, 2015 01:27
Rebuilt Joomla's ucm_content and ucm_base tables for articles
<?php
/**
* @author Federico Liva <mail@federicoliva.info>
* @copyright Copyright (C)2015 Federico Liva. All rights reserved.
* @license GNU General Public License, version 2 or later
*/
error_reporting(E_ALL);
ini_set('display_errors', 1);
ini_set('max_execution_time', 0);