Skip to content

Instantly share code, notes, and snippets.

View dunglas's full-sized avatar

Kévin Dunglas dunglas

View GitHub Profile
@dunglas
dunglas / link.sh
Created November 20, 2017 20:42
A Bash script to create symlinks for subtree splits to a monolithic repository (here Symfony)
@dunglas
dunglas / gist-history.sh
Created July 17, 2017 09:41
Extract interesting commits from a Git repository
# All commits
git log --all --after="2016-01-01 00:00" --before="2017-01-01 00:00" --pretty=format:'%C(yellow)%h %Cred%ad %Cblue%an%Cgreen%d %Creset%s' --date=short --no-merges --first-parent master --author-date-order --reverse > ~/cir/api-platform-standard-edition
# Commits from a specific author
git log --all --after="2016-01-01 00:00" --before="2017-01-01 00:00" --pretty=format:'%C(yellow)%h %Cred%ad %Cblue%an%Cgreen%d %Creset%s' --date=short --no-merges --first-parent master --author-date-order --reverse --author="dunglas@gmail.com"
new MutationObserver(mutation => {
for (let lemming of document.querySelectorAll('img[alt="lemming tombant"]')) {
lemming.dispatchEvent(new Event('mouseover', { bubbles: true }));
}
}).observe(document, {childList: true, subtree: true});
You are about to deploy the following services:
- api-platform-website/default/20161019t000544 (from [/Users/dunglas/workspace/react-redux-universal-hot-example/app.yaml])
Deploying to URL: [https://api-platform-website.appspot.com]
Do you want to continue (Y/n)? y
If this is your first deployment, this may take a while...done.
Beginning deployment of service [default]...
WARNING: Deployment of App Engine Flexible Environment apps is currently in Beta

Keybase proof

I hereby claim:

  • I am dunglas on github.
  • I am dunglas (https://keybase.io/dunglas) on keybase.
  • I have a public key whose fingerprint is 31D2 33ED 1FBA 7DAF F033 90EE 4D04 EBEF 06AA F3A6

To claim this, I am signing this object:

@dunglas
dunglas / access_special_key.php
Created April 21, 2016 08:47
Access a PHP special key /cc @vincentchalamon
$c = (object) ['@context' => 'foo'];
var_dump($c);
/*
php shell code:1:
class stdClass#1 (1) {
public $@context =>
string(3) "foo"
}
*/
$key = '@context';
@dunglas
dunglas / DataProvider.php
Last active January 9, 2017 11:11
FOSElastica paginator for API Platform v1 Raw
<?php
namespace Acme\ApiPlatform\FOSElastica;
use Dunglas\ApiBundle\Api\ResourceInterface;
use Dunglas\ApiBundle\Model\DataProviderInterface;
use Elastica\Query;
use FOS\ElasticaBundle\Finder\PaginatedFinderInterface;
use Symfony\Component\HttpFoundation\Request;
@dunglas
dunglas / routing.yml
Created March 8, 2016 12:23
YAML Route for DunglasActionBundle
foo:
path: /foo/{bar}
defaults: { _controller: 'action.Path\To\Your\Action' }
@dunglas
dunglas / hash.php
Last active January 11, 2016 16:41
public static function generateHash($value, $namespace = '')
{
$hash = hash_init('sha256');
$queue = array(array($namespace => $value));
for ($i = 0; isset($queue[$i]); ++$i) {
foreach ($queue[$i] as $k => $v) {
if (is_object($v)) {
hash_update($hash, $k.'=>'.spl_object_hash($v).',';
} elseif (is_array($v)) {
$queue[] = $v;
<?php
<<<CONFIG
packages:
- "dunglas/php-property-info: dev-master"
- "doctrine/orm: ~2.3"
- "phpdocumentor/reflection: ~1.0"
CONFIG;
use Doctrine\ORM\EntityManager;