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 | |
binary="coke" | |
file=".coke" | |
files="" | |
stash=0 | |
function success | |
{ | |
echo "[$(tput bold)$(tput setaf 2)SUCCESS$(tput sgr0)] $(tput setaf 6)$1$(tput sgr0)" |
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 | |
namespace M6\Bundle\MyBundle\Listener; | |
use Symfony\Component\EventDispatcher\EventSubscriberInterface; | |
use Symfony\Component\HttpKernel\Event\GetResponseEvent; | |
use Symfony\Component\HttpKernel\KernelEvents; | |
use M6\Bundle\MyBundle\Helper\MyHelper; | |
class MyEventSubscriber implements EventSubscriberInterface | |
{ |
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 | |
namespace M6\Bundle\MyBundle\Tests\Units\Listener; | |
use M6\Bundle\MyBundle\Listener; | |
use Symfony\Component\HttpFoundation\Request; | |
class MyEventSubscriber | |
{ | |
public function testOnRequest() | |
{ |
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
class ShairportSync < Formula | |
desc "AirTunes emulator. Shairport Sync adds multi-room capability." | |
homepage "https://github.com/mikebrady/shairport-sync" | |
url "https://github.com/mikebrady/shairport-sync/archive/2.8.tar.gz" | |
sha256 "d4bedbd2f8d229fdc1f541fbac1f20cf1f471693c243784cad71ed1edafbb882" | |
head "https://github.com/mikebrady/shairport-sync.git" | |
depends_on "pkg-config" => :build | |
depends_on "autoconf" => :build | |
depends_on "automake" => :build |