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 Acme\Serializer\Normalizer; | |
use Doctrine\Common\Collections\ArrayCollection; | |
use Doctrine\Common\Collections\Collection; | |
use Symfony\Component\Serializer\Normalizer\DenormalizerInterface; | |
use Symfony\Component\Serializer\Normalizer\NormalizerInterface; | |
use Symfony\Component\Serializer\Normalizer\SerializerAwareNormalizer; |
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
## | |
# Gzip Settings | |
## | |
gzip on; | |
gzip_disable "msie6"; | |
gzip_vary on; | |
gzip_proxied any; | |
gzip_min_length 256; | |
gzip_comp_level 6; |
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
/** | |
* ArrayCollection | |
*/ | |
function ArrayCollection() | |
{ | |
this.ids = []; | |
this.items = []; | |
} | |
/** |
cd ~
git clone [email protected]:/ad7dd2f30fbff5747522.git boot
I hereby claim:
- I am tom32i on github.
- I am tom32i (https://keybase.io/tom32i) on keybase.
- I have a public key whose fingerprint is 2810 CAEA A0DC 73B9 499A 33AE 6B69 B873 EA2B 1759
To claim this, I am signing this object:
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
+-----------------------------------------------------------------------------+ | |
| | | |
| A0. 0000 | | |
| AAV 0000 | | |
| AAV 0000 | | |
| _.n0000n._°0Q 0000 _.aaAaa._ _.aaAaa._ | | |
| .o0AAAAAAAAA0o. 0000 .00000"""00000. .00000"""00000. | | |
| 0AAP° °QAA0 0000 000° °000 000° °000 | | |
| 0AV VAA 0000 000 000 000 000 | |
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
/** | |
* Event Emitter | |
*/ | |
function EventEmitter () | |
{ | |
this.element = document.createElement('div'); | |
} | |
/** | |
* Emit a new 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
/** | |
* Choice | |
* | |
* @param {Sring} id | |
*/ | |
function Choice(id) | |
{ | |
this.element = $(document.getElementById(id)); | |
this.choices = []; |