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
date.timezone = "Europe/London" | |
expose_php = 0 | |
extension = phar.so | |
extension = fileinfo.so | |
extension = intl.so | |
suhosin.executor.include.whitelist = phar | |
[opcache] | |
zend_extension=opcache.so |
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
[opcache] | |
; the path to the .so file | |
zend_extension=opcache.so | |
; Enabled. Set to 0 to disable | |
opcache.enable=1 | |
; Max memory consumption. Default 32 megs | |
opcache.memory_consumption=32 |
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
<!-- | |
Change API Token | |
Change URL | |
--> | |
<html lang="en"> | |
<head> | |
<script src="https://code.jquery.com/jquery-2.1.1.min.js"></script> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/sweetalert/1.1.0/sweetalert.min.js"></script> <!-- for nice alerts --> | |
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/sweetalert/1.1.0/sweetalert.min.css"> | |
</head> |
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
.k-lens-essay figure img, | |
.k-lens-page figure img | |
{ | |
max-width:300px; | |
height:auto; | |
} |
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 | |
$website = 'http://yourwebsite.com'; //no trailing slash | |
$key = 'kokenwtf'; | |
/* | |
* | |
* RUNNING ON A MACHINE THAT HAS UNLIMITED EXECUTION TIME IS HIGHLY ENCOURAGED |
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 | |
$retina = true; | |
$key = 'kokenwtf'; //ENTER YOUR OWN KEY | |
if ($_GET['key'] != $key) die; | |
$ds = DIRECTORY_SEPARATOR; | |
$root = dirname(__FILE__); | |
$content = $root . $ds . 'storage'; |
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
<koken:load source="albums" filter:flat="true> | |
<koken:loop> | |
<koken:if data="{{ album.album_type }}" equals="standard"> | |
{{ album.title }} | |
</koken:if> | |
</koken:loop> | |
</koken:load> |
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
<koken:if data="location.here" equals="/"> | |
<!-- We're on the home page --> | |
</koken:if> | |
<koken:if data="location.here" equals="/albums/"> | |
<!-- We're on the albums index --> | |
</koken:if> | |
<koken:if data="location.here" equals="/albums/portraits/"> | |
<!-- We're on the portraits album page --> |
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
/* | |
Cross-browser styling of <fieldset> and <legend> without any additional HTML elements | |
basic rules: | |
- fieldset cannot have padding, because it would ruin the legend absolute positioning in Gecko | |
- cannot use relative positioning on legend, because it does not work in Opera | |
- legend cannot have padding, because it would break its 100% size in all browsers. | |
this cannot be fixed by overflow:hidden, because it is stupid in all IE | |
- selector priority in IE7 is wrong (!important) | |
*/ |
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
@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul); | |
#PersonalToolbar { | |
visibility: collapse !important; | |
opacity: 0.01; | |
-moz-transition: visibility 0.5s, opacity 0.5s ease !important; | |
position: fixed !important; | |
width: 100% !important; | |
padding: 3px 3px 3px 3px !important; | |
z-index: 10; |
NewerOlder