Skip to content

Instantly share code, notes, and snippets.

@memaw
memaw / joke
Last active January 19, 2019 13:41
say
# Aller dans l'utilitaire Voice Over / onglet Parole
# Sélectionner whisper pour la télécharger
# Terminal
crontab -e
14,31,56 * * * * say -v Whisper 'I am watching you'
ZZ
Enjoy !

Keybase proof

I hereby claim:

  • I am memaw on github.
  • I am memaw (https://keybase.io/memaw) on keybase.
  • I have a public key whose fingerprint is 48D5 CB4B ABA8 1F5B 7828 3438 8534 2FEC 3C97 7C8C

To claim this, I am signing this object:

@memaw
memaw / memaw-phpcs.php
Created January 2, 2015 14:50
memaw-phpcs through melody
<?php
<<<CONFIG
packages:
- "memaw/phpcs: 1.0.*@dev"
CONFIG;
$phpcs = new \Memaw\Phpcs\Cli();
exit($phpcs->process());
@memaw
memaw / baseMelody.php
Created January 2, 2015 14:49
A base for create melody file
<?php
<<<CONFIG
packages:
- "symfony/console: ~2.6"
CONFIG;
// Documentation de symfony/console : http://symfony.com/fr/doc/current/components/console/introduction.html
// Et ses helpers : http://symfony.com/doc/current/components/console/introduction.html#console-helpers
use Symfony\Component\Console\Application;
@memaw
memaw / vhost
Last active August 29, 2015 14:11
# Site http
<VirtualHost *:80>
DocumentRoot /var/www/site
ServerName your.domain.com
<Directory /var/www/site>
AllowOverride all
</Directory>
</VirtualHost>