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
<div class="sf-exceptionreset"> | |
<div class="block_exception"> | |
<div class="block_exception_detected clear_fix"> | |
<div class="illustration_exception"> | |
<img alt="Exception detected!" src="http://damienalexandre.fr/lab/random-fail" style="width:145px" /> | |
</div> | |
<div class="text_exception"> | |
<div class="open_quote"> |
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
diff --git a/lib/Gedmo/Translatable/Entity/Repository/TranslationRepository.php b/lib/Gedmo/Translatable/Entity/Repository/TranslationRepository.php | |
index 50b106e..2451fd0 100644 | |
--- a/lib/Gedmo/Translatable/Entity/Repository/TranslationRepository.php | |
+++ b/lib/Gedmo/Translatable/Entity/Repository/TranslationRepository.php | |
@@ -64,9 +64,14 @@ class TranslationRepository extends EntityRepository | |
$entityClass = $wrapped->getMetadata()->name; | |
$translationMeta = $this->getClassMetadata(); // table inheritance support | |
+ | |
+ // Get the custom translationClass |
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
/** | |
* This spec run some files against JSHint | |
* | |
* Inspired by https://github.com/bkeepers/lucid/blob/master/spec/javascripts/z_jshint_spec.js | |
* @author bkeepers | |
* @author dalexandre | |
* | |
* @require JSHint, jQuery | |
*/ | |
describe('JSHint', function () |
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
socket.on('batchmove', function(data) { | |
for (var i = 0; i < data.length; i++) { | |
socket.emit('move', {x: data[i].x, y: data[i].y, id: myId}); | |
} | |
}); |
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
socket.on('batchmove', function(data) { | |
for (var i = 0; i < data.length; i++) { | |
socket.emit('move', {x: data[i].x, y: data[i].y, id: myId}); | |
} | |
}); |
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
// Stocker une valeur | |
sessionStorage.setItem('key', 'value'); | |
localStorage.setItem('key', 'value'); | |
// Récupérer une valeur | |
var item = sessionStorage.getItem('key'); | |
var item = localStorage.getItem('key'); | |
// Supprimer une valeur | |
sessionStorage.removeItem('key'); |
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 | |
/** | |
* Run a command in background (Windows and linux \o/) | |
* | |
* @param wait wait for the command to terminate | |
* @author dalexandre | |
* @author jbenoist | |
* @since 24/02/2009 | |
* @update 19/08/2009 | |
* @param String $cmd |
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 | |
/** | |
* Download a large distant file to a local destination. | |
* | |
* This method is very memory efficient :-) | |
* The file can be huge, PHP doesn't load it in memory. | |
* | |
* /!\ Warning, the return value is always true, you must use === to test the response type too. | |
* | |
* @author dalexandre |
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 | |
/* | |
* This file is not part of the Pagerfanta package. | |
* We hack the Pagerfanta to allow Doctrine nativeQuery pagination. | |
*/ | |
namespace Dalexandre\MyBundle\Pagerfanta\Adapter; | |
use Doctrine\ORM\QueryBuilder; |
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 | |
DATE=`date +%s` | |
FILENAME="/home/username/CamStream/$DATE.jpeg" | |
# Call the streamer | |
streamer -f jpeg -o $FILENAME | |
# Display a user notification | |
DISPLAY=:0.0 notify-send -u 'low' -i $FILENAME "Cheese!" "Stream saved!" |