I hereby claim:
- I am dcsg on github.
- I am dcsg (https://keybase.io/dcsg) on keybase.
- I have a public key whose fingerprint is 3DC4 39A2 3906 0E0B B657 52D0 D39E E963 4F98 A4AD
To claim this, I am signing this object:
| #!/bin/bash | |
| # required to be able to input the response | |
| exec < /dev/tty | |
| # require to exit the docker container and kill the process | |
| trap printout SIGINT | |
| printout() { | |
| exit | |
| } |
| Verifying myself: My Bitcoin username is +dcsg. https://onename.io/dcsg |
I hereby claim:
To claim this, I am signing this object:
| # language: pt | |
| Funcionalidade: Player can issue a challenge | |
| In order to find a suitable opponent | |
| As an online chess player | |
| I want to be able to issue a challenge | |
| Cenário: Start game if there is a suitable opponent online | |
| Dado am a player rated 1600 | |
| E I accept a threshold of 200 points |
| <?php | |
| // ... | |
| class File | |
| { | |
| /** | |
| * @Id | |
| * @GeneratedValue | |
| * @Column(type="bigint") |
| namespace Acme\Command; | |
| use Symfony\Component\Console\Command\Command; | |
| use Symfony\Component\Console\Input\InputInterface; | |
| use Symfony\Component\Console\Output\OutputInterface; | |
| class HelloWorldCommand extends Command | |
| { | |
| protected function configure() | |
| { |
Me and Luis Cordova have setup some guidelines for SymfonyCon Hacking Day.
We selected some tickets you can pick: https://docs.google.com/spreadsheet/ccc?key=0Ao1MtzhUynSNdE1HMVlpZV9DdHhxdGp0ZHc5Y0hpdEE&usp=drive_web#gid=3
| <?php | |
| /** | |
| * The template for displaying Category Archive pages. | |
| * | |
| * @package WordPress | |
| * @subpackage Twenty_Eleven | |
| * @since Twenty Eleven 1.0 | |
| */ | |
| get_header(); ?> |
| Vagrant 1.2.2 - http://downloads.vagrantup.com/tags/v1.2.2 | |
| Virtual Box 4.2.12 - https://www.virtualbox.org/wiki/Download_Old_Builds_4_2 | |
| Git - http://git-scm.com/downloads |
| <?php | |
| $expression = 'here we got a number 23 % and so on'; | |
| $pattern = '/(\d+ %)/'; | |
| $replacement = '<b>$1</b>'; | |
| echo preg_replace($pattern, $replacement, $expression); |