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
| defmodule Edgar.Responder.NotNot do | |
| @moduledoc """ | |
| resays what has been said | |
| """ | |
| use Hedwig.Responder | |
| @usage """ | |
| <text> (!!) - resays what has been said |
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
| [email protected]:docteurklein/continuous-delivery.git |
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
| cvlc screen:// :screen-fps=8.0 :input-slave=alsa://hw:2,0 ":sout=#transcode{vcodec=theo,vb=800,scale=1,width=1024,height=768,acodec=vorbis}:http{mux=ogg,dst=0.0.0.0:8081/desktop.ogg}" |
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
| $data = [ | |
| 'offer' => new OfferForCustomer($ticket->getCustomer(), $ticket->getOffer(), 0, 0, 0), | |
| ]; | |
| $form = $this->createForm('season_ticket', $data, [ |
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
| api: | |
| build: fig/php | |
| ports: | |
| - '8000:8000' | |
| working_dir: /src | |
| volumes: | |
| - backend:/src | |
| entrypoint: [php, '-dextension=gearman.so', '-ddate.timezone=UTC'] | |
| command: '-S 0.0.0.0:8000 -t web' | |
| links: |
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
| SELECT | |
| a.*, | |
| COUNT(c.comment_id) OVER (PARTITION BY c.article_id, _r.associated_article_id) nb_comments, | |
| COUNT(_r.weight) OVER (PARTITION BY _r.associated_article_id, _r.article_id) nb_associated_articles, | |
| c.*, | |
| r.*, | |
| _r.weight | |
| FROM article a | |
| LEFT JOIN comment c USING (article_id) | |
| LEFT JOIN relates_to _r ON a.article_id = _r.article_id |
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 App extends Bundle implements CompilerPassInterface | |
| { | |
| public function build(ContainerBuilder $container) | |
| { | |
| parent::build($container); | |
| $container->addCompilerPass($this); | |
| } | |
| public function process(ContainerBuilder $container) | |
| { |
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
| HTTP/1.1 404 Not Found | |
| Content-Length: 5 | |
| Nope |
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
| ### Keybase proof | |
| I hereby claim: | |
| * I am docteurklein on github. | |
| * I am docteurklein (https://keybase.io/docteurklein) on keybase. | |
| * I have a public key whose fingerprint is 3D72 A8B7 E58D 01F7 72CD 17D7 962C 67BE E5C3 F3FC | |
| To claim this, I am signing this object: |
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 PhpSpec\Iterator; | |
| use PhpSpec\Wrapper\Collaborator as Base; | |
| use Prophecy\Prophecy\ObjectProphecy; | |
| use Prophecy\Promise\ReturnPromise; | |
| class Collaborator extends Base | |
| { |