I hereby claim:
- I am buzzedword on github.
- I am buzzedword (https://keybase.io/buzzedword) on keybase.
- I have a public key whose fingerprint is 7D91 1FC2 0FA7 20F1 DB2E 8885 4D51 26A5 D526 2382
To claim this, I am signing this object:
| ## Eccleston Era - Rose Tyler | |
| S1E2 - The End of the World | |
| S1E3 - The Unquiet Dead | |
| *Two Parter. Little dry, worth sticking it out to get a better read on the doctor as a character* | |
| - - - | |
| S1E4 - Aliens of London | Part 1 | |
| S1E5 - World War Three | Part 2 | |
| - - - | |
| **MUST SEE** |
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
| <?php | |
| namespace Application\CronBundle\Services; | |
| use Symfony\Component\Process\Process; | |
| class CommandAsyncHelper { | |
| private $processes; | |
| public function __construct() { |
I hereby claim:
To claim this, I am signing this object:
| @mixin breakpoint($point) { | |
| @if $point == large { | |
| @media (min-width: 1200px) { @content; } | |
| } | |
| @else if $point == medium { | |
| @media (min-width: 992px) and (max-width: 1119px) { @content; } | |
| } | |
| @else if $point == small { | |
| @media (min-width: 768px) and (max-width: 991px) { @content; } | |
| } |
| package joshsexytimefuntimego; | |
| /** | |
| * The JoshSexyTimeFunTimeGo class implements an application that | |
| * prompts a user to remove their pants | |
| */ | |
| public class JoshSexyTimeFunTimeGo { | |
| /** |
| FROM php as vendoring-image | |
| RUN apt-get update && \ | |
| apt-get install -y --no-install-recommends git zip | |
| RUN curl --silent --show-error https://getcomposer.org/installer | php && \ | |
| mv composer.phar /bin/composer | |
| COPY ./composer.json ./composer.lock /app | |
| WORKDIR /app | |
| RUN composer install | |
| # PS - This is the only image we want to push. Crazy, right? |