Skip to content

Instantly share code, notes, and snippets.

View Moinax's full-sized avatar
🏠
Working from home

Jérôme Poskin Moinax

🏠
Working from home
View GitHub Profile
@Moinax
Moinax / com.apple.quarantine
Last active December 18, 2015 13:09
Remove apple quarantine xattr
find . | xargs xattr -d com.apple.quarantine
@Moinax
Moinax / port-uninstall-all
Last active December 18, 2015 02:18
Port uninstall every ports installed
sudo port -fp uninstall installed
@Moinax
Moinax / runCommand.php
Last active December 16, 2015 13:29
Run command in background from Symfony controller
/**
* Call a command in background
*
* @param string $command
* @param array $arguments
*
* @return int
*/
public function runCommand($command, $arguments = array(), $logName = 'tvdb.commands')
{