This file contains hidden or 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
$ cat /etc/pulse/default.pa | |
#!/usr/bin/pulseaudio -nF | |
# | |
# This file is part of PulseAudio. | |
# | |
# PulseAudio is free software; you can redistribute it and/or modify it | |
# under the terms of the GNU Lesser General Public License as published by | |
# the Free Software Foundation; either version 2 of the License, or | |
# (at your option) any later version. | |
# |
This file contains hidden or 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
$ arecord -L | |
default | |
Playback/recording through the PulseAudio sound server | |
sysdefault:CARD=NVidia | |
HDA NVidia, ALC888 Analog | |
Default Audio Device | |
front:CARD=NVidia,DEV=0 | |
HDA NVidia, ALC888 Analog | |
Front speakers | |
surround40:CARD=NVidia,DEV=0 |
This file contains hidden or 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 Umpirsky\Doctrine\Common\Persistance; | |
use Doctrine\Common\Persistence\AbstractManagerRegistry; | |
use Silex\Application; | |
/** | |
* References Doctrine connections and entity/document managers. | |
* |
This file contains hidden or 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 | |
if ($this['debug']) { | |
$logger = new DebugStack(); | |
$this->extend('doctrine_orm.configuration', function(Configuration $configuration) use ($logger) { | |
$configuration->setSQLLogger($logger); | |
return $configuration; | |
}); |
This file contains hidden or 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 Avalanche\Bundle\ImagineBundle\Imagine; | |
use Symfony\Component\DependencyInjection\ContainerAware; | |
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException; | |
/** | |
* Imagine cache manager. | |
* |
This file contains hidden or 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 | |
use Silex\ControllerResolver as BaseControllerResolver; | |
/** | |
* Injects container into controllers. | |
* | |
* @author Саша Стаменковић <[email protected]> | |
*/ | |
class ControllerResolver extends BaseControllerResolver |
This file contains hidden or 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
Symfony/Component/Config/Definition/ReferenceDumper.php | |
41: * @param int $depth | |
158: * @param int $indent | |
Symfony/Component/Finder/Finder.php | |
165: * @param int $level The depth level expression | |
Symfony/Component/Finder/Iterator/DepthRangeFilterIterator.php | |
27: * @param int $minDepth The min depth | |
28: * @param int $maxDepth The max depth |
This file contains hidden or 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 | |
class ThreadCountersListener implements EventSubscriberInterface | |
{ | |
protected $commentManager; | |
public function __construct(CommentManagerInterface $commentManager) | |
{ | |
$this->commentManager = $commentManager; | |
} |
This file contains hidden or 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
1. fabpot (13338) | |
2. weaverryan (2626) | |
3. bschussek (1707) | |
4. Seldaek (777) | |
5. vicb (724) | |
6. kriswallsmith (693) | |
7. schmittjoh (636) | |
8. stof (444) | |
9. Tobion (424) | |
10. pborreli (353) |
This file contains hidden or 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 Sylius\Bundle\CartBundle\Entity; | |
use Sylius\Bundle\ResourceBundle\Doctrine\ORM\EntityRepository; | |
class CartRepository extends EntityRepository | |
{ | |
protected function getQueryBuilder() | |
{ |