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
<a class='button ctrl' href='#' tabindex='1'>★</a> | |
<ul class='tip ctrl'> | |
<li class='slice'><div>✦</div></li> | |
<li class='slice'><div>✿</div></li> | |
<li class='slice'><div>✵</div></li> | |
<li class='slice'><div>✪</div></li> | |
<li class='slice'><div>☀</div></li> | |
</ul> |
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
\documentclass{scrartcl} | |
\usepackage[latin1]{inputenc} | |
\usepackage[T1]{fontenc} | |
\usepackage[ngerman]{babel} | |
\usepackage{polynom} | |
\begin{document} | |
\begin{center} | |
\polyset{style=C,div=:,vars=x} | |
\polylongdiv{2x^5+3x^2+x}{2x^3+1} | |
\end{center} |
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
renderWith('ArticleCommentInterface'); | |
} | |
function PostCommentForm() | |
{ | |
Requirements::javascript('jsparty/behaviour.js'); | |
Requirements::javascript('jsparty/prototype.js'); | |
Requirements::javascript('jsparty/scriptaculous/effects.js'); | |
Requirements::javascript('mysite/javascript/ArticleCommentInterface.js'); | |
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
1: Data: Spot update 2, 3 | |
1: Data: Spot update scouted | |
1: Data: Spot update reserved -1 | |
0: Strat: targets sent to Slave | |
1: Data: Spot update 3, 4 | |
1: Data: Spot update scouted | |
1: Data: Spot update reserved -1 | |
1: Data: Spot update 4, 4 | |
1: Data: Spot update scouted | |
1: Data: Spot update reserved -1 |
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
<h1>Conway's Game of Live</h1> | |
<canvas id="c"></canvas> |
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
$.timepicker.regional['de'] = { | |
timeOnlyTitle: 'Wählen Sie eine Zeit', | |
timeText: 'Zeit', | |
hourText: 'Stunde', | |
minuteText: 'Minute', | |
secondText: 'Sekunde', | |
millisecText: 'Milisekunde', | |
timezoneText: 'Zeitzone', | |
currentText: 'Jetzt', | |
closeText: 'Schließen', |
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
#!/bin/bash | |
CURRENT_DIR="`pwd`" | |
REPO_NAME="$(basename "$CURRENT_DIR")" | |
if [ -d "/var/www/$REPO_NAME" ]; then | |
cd "/var/www/$REPO_NAME" || exit | |
unset GIT_DIR |
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 | |
namespace My\Bundle\Listener; | |
use Doctrine\Common\EventSubscriber; | |
use Doctrine\ORM\Events; | |
use Doctrine\ORM\Event\OnFlushEventArgs; | |
use Doctrine\ORM\Mapping\ClassMetadata; | |
use My\Bundle\Entity\Event; |
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 | |
namespace Blar; | |
use Doctrine\Common\EventSubscriber, | |
Doctrine\ORM\Events, | |
Doctrine\ORM\Event\OnFlushEventArgs, | |
Doctrine\ORM\EntityManager; | |
class AuditListener implements EventSubscriber { |
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 | |
namespace MyCompany\MyBundle\Entity; | |
use Doctrine\Common\Collections\ArrayCollection; | |
use Doctrine\ORM\Mapping as ORM; | |
/** | |
* MyCompany\MyBundle\Entity | |
* |