This file contains 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 | |
class Sanitizer | |
{ | |
/** | |
* Returns a url-sanitized string | |
* @static | |
* @param string $string | |
* @return string | |
*/ |
This file contains 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
<!doctype html> | |
<html> | |
<head> | |
<meta charset="utf-8" /> | |
<title>Test</title> | |
<script src="http://code.jquery.com/jquery-1.8.1.min.js"></script> | |
</head> | |
<body> | |
<input type="text" name="length" value="500" id="length" /> | |
<button>Send</button> |
This file contains 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
## Spieler: | |
Shadowed Unit Frames http://www.curse.com/addons/wow/shadowed-unit-frames | |
ShadowedUF Aura Indicators http://www.curse.com/addons/wow/shadoweduf-grid | |
## Plaketten: | |
Tidy Plates http://www.curse.com/addons/wow/tidy-plates | |
Tidy Plates: Threat Plates http://www.curse.com/addons/wow/tidy-plates-threat-plates | |
This file contains 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 | |
/* | |
* StatusNet - the distributed open-source microblogging tool | |
* Copyright (C) 2009,2011 StatusNet, Inc. | |
* | |
* This program is free software: you can redistribute it and/or modify | |
* it under the terms of the GNU Affero General Public License as published by | |
* the Free Software Foundation, either version 3 of the License, or | |
* (at your option) any later version. | |
* |
This file contains 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
parameters: | |
test: ["a", "b", 123] | |
# or | |
parameters: | |
test: | |
- "a" | |
- "b" | |
- 123 |
This file contains 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 | |
$participantModel = new ParticipantModel($this->container); | |
$filename = "participations_" . date("d_m_Y__H_i") . "_export.xls"; | |
$excel = $participantModel->getExcelHandler(); | |
$writer = \PHPExcel_IOFactory::createWriter($excel, "Excel5"); | |
$handle = fopen("php://temp", "a"); | |
$writer->save($handle); |
This file contains 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
<!doctype html> | |
<html> | |
<head> | |
<title>CSS Sprites + Retina</title> | |
<meta charset="utf-8" /> | |
<style type="text/css"> | |
.with-retina, | |
.without-retina { |
This file contains 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
function _scrollToTop () | |
{ | |
FB.Canvas.getPageInfo( | |
function(pageInfo) | |
{ | |
$({ y: pageInfo.scrollTop }).animate( | |
{ y: 0 }, | |
{ |
This file contains 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 | |
class Extension extends Twig_Extension | |
{ | |
public function myFunc () | |
{ | |
var_dump(func_get_args()); | |
} | |
This file contains 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 | |
return array ( 'AF' => 'Afghanistan', 'EG' => 'Ägypten', 'AX' => 'Alandinseln', 'AL' => 'Albanien', 'DZ' => 'Algerien', 'UM' => 'Amerikanisch-Ozeanien', 'AS' => 'Amerikanisch-Samoa', 'VI' => 'Amerikanische Jungferninseln', 'AD' => 'Andorra', 'AO' => 'Angola', 'AI' => 'Anguilla', 'AQ' => 'Antarktis', 'AG' => 'Antigua und Barbuda', 'GQ' => 'Äquatorialguinea', 'AR' => 'Argentinien', 'AM' => 'Armenien', 'AW' => 'Aruba', 'AZ' => 'Aserbaidschan', 'ET' => 'Äthiopien', 'QO' => 'Äußeres Ozeanien', 'AU' => 'Australien', 'BS' => 'Bahamas', 'BH' => 'Bahrain', 'BD' => 'Bangladesch', 'BB' => 'Barbados', 'BY' => 'Belarus', 'BE' => 'Belgien', 'BZ' => 'Belize', 'BJ' => 'Benin', 'BM' => 'Bermuda', 'BT' => 'Bhutan', 'BO' => 'Bolivien', 'BA' => 'Bosnien und Herzegowina', 'BW' => 'Botsuana', 'BV' => 'Bouvetinsel', 'BR' => 'Brasilien', 'VG' => 'Britische Jungferninseln', 'IO' => 'Britisches Territorium im Indischen Ozean', 'BN' => 'Brunei Darussalam', 'BG' => 'Bulgarien', 'BF' => 'Burkina Faso', 'BI' => 'Burundi', 'CL' => ' |
OlderNewer