Skip to content

Instantly share code, notes, and snippets.

View jmikola's full-sized avatar
💭
🌭

Jeremy Mikola jmikola

💭
🌭
View GitHub Profile
@jmikola
jmikola / transcript.txt
Created February 10, 2011 16:27
Log of #symfony-dev meeting 20110210 (all times GMT-5)
Feb 10 11:02:52 <Stof> lsmith: meeting ? or do you want to wait ?
Feb 10 11:03:10 <lsmith> i guess we might as well start
Feb 10 11:03:16 <lsmith> not sure if he is traveling back today
Feb 10 11:03:18 <lsmith> or whatever
Feb 10 11:03:41 <lsmith> then again .. most of the topics seem to require his presence
Feb 10 11:03:53 <Stof> yes
Feb 10 11:04:05 <lsmith> skip bootstrap.php in app_dev.php: http://bit.ly/htff3I
Feb 10 11:04:10 <lsmith> maybe that can be discussed ..
Feb 10 11:04:16 <lsmith> it should just be a small pull for the sandbox
Feb 10 11:04:27 <lsmith> anyone else around?
@jmikola
jmikola / transcript.txt
Created February 17, 2011 17:10
Log of #symfony-dev meeting 20110217 (all times GMT-5)
Feb 17 11:00:13 <fabpot> ok, so let's start
Feb 17 11:00:34 <Seldaek> not many seem to be around :/
Feb 17 11:00:35 <fabpot> first topic is about the Symfony sub-namespaces
Feb 17 11:01:01 <fabpot> don't know why we need to talk about that as last time I did, everybody seem to be againts any change
Feb 17 11:01:01 * na8flush (~rosshette@c-67-175-220-187.hsd1.il.comcast.net) has joined #symfony-dev
Feb 17 11:01:18 <Seldaek> bschussek: avalanche123 iampersistent jmikola|w jmikola johanness kriswallsmith lala ping
Feb 17 11:01:25 <jmikola|w> pong pong pong pong
Feb 17 11:01:28 <avalanche123> Seldaek lala pong
Feb 17 11:01:30 <jmikola|w> oh, meeting time :)
Feb 17 11:01:32 * aways|bnc Bye all
<?php
namespace Symfony\Bundle\TwigBundle\DependencyInjection;
use Symfony\Component\Config\Definition\Builder\NodeBuilder;
use Symfony\Component\Config\Definition\Builder\TreeBuilder;
/**
* TwigExtension configuration structure.
*
@jmikola
jmikola / transcript.txt
Created February 24, 2011 19:01
Log of #symfony-dev meeting 20110224 (all times GMT-5)
Feb 24 11:04:47 <weaverryan> meeting time?
Feb 24 11:05:10 <bschussek> yup, who's moderating?
Feb 24 11:05:47 <weaverryan> stof, are you moderating?
Feb 24 11:06:29 <Stof> I would prefer someone else
Feb 24 11:06:45 <Stof> because I'm only half here
Feb 24 11:07:03 <bschussek> weaverryan maybe?
Feb 24 11:07:08 <johannesss> did everyone vote? http://doodle.com/gide65qvxvf975yp
Feb 24 11:07:16 <johannesss> looks empty
Feb 24 11:07:39 <johannesss> but we could probably cover all topics anyway
Feb 24 11:08:06 <bschussek> fabpot: are you there?
@jmikola
jmikola / transcript.txt
Created March 24, 2011 17:00
Log of #symfony-dev meeting 20110324 (all times GMT-4)
Mar 24 12:00:46 <lsmith> so lets go
Mar 24 12:01:09 <lsmith> Response sub-classes vs. exceptions for HTTP status codes: http://bit.ly/eeo28C
Mar 24 12:01:12 <lsmith> fabpot: ping
Mar 24 12:01:18 <lsmith> kriswallsmith: ping
Mar 24 12:01:23 <fabpot> pong
Mar 24 12:01:27 <kriswallsmith> pong
Mar 24 12:01:30 <beberlei> oink
Mar 24 12:01:48 <lsmith> i guess both fabpot and kriswallsmith now think we shouldnt do this
Mar 24 12:01:58 <kriswallsmith> yes, it takes control away from the user
Mar 24 12:02:04 <fabpot> I created the 2 pull requests because I was not sure
@jmikola
jmikola / transcript.txt
Created March 31, 2011 16:07
Log of #symfony-dev meeting 20110331 (all times GMT-4)
Mar 31 11:01:34 <lsmith> ok .. fabpot, Seldaek, Stof, kriswallsmith, jmikola, avalanche123 ready
Mar 31 11:01:39 <lsmith> i guess bernhard isnt here ..
Mar 31 11:01:39 <fabpot> yep
Mar 31 11:01:44 <avalanche123> yup
Mar 31 11:01:45 <lsmith> hope he will show up
Mar 31 11:02:00 <kriswallsmith> i just rolled out of bed
Mar 31 11:02:03 <lsmith> Adding the "Bundle" suffix back: http://bit.ly/i2sSPQ
Mar 31 11:02:23 <Stof> I'm here
Mar 31 11:02:26 <lsmith> first topic (skipping forms in the hopes of a late arrival of bernhard)
Mar 31 11:02:57 <lsmith> i guess here the discussion revolves about readding the Bundle suffix as before last week .. or at least for @Resource references
@jmikola
jmikola / FooCommand.php
Created June 9, 2011 16:00
Catching SIGINT to cleanup from a MongoDB mapReduce command
<?php
namespace OpenSky\Bundle\MainBundle\Command;
use Symfony\Bundle\FrameworkBundle\Command\Command;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Output\OutputInterface;
class FooCommand extends Command
@jmikola
jmikola / Parameter.php
Created August 3, 2011 18:53
[DDC-1317] @column(unique=true) is not semantically equivalent to @UniqueConstraint and yields invalid SQL for table create statements
<?php
use Doctrine\ORM\Mapping as ORM;
/** @ORM\Entity */
class Parameter
{
/**
* @ORM\Id
* @ORM\Column(type="integer")
@jmikola
jmikola / es.sh
Created September 12, 2011 19:01 — forked from aaronshaf/es.sh
Install ElasticSearch on Ubuntu 11.04
cd ~
sudo apt-get install unzip
sudo apt-get install python-software-properties -y
sudo add-apt-repository "deb http://archive.canonical.com/ lucid partner"
sudo apt-get update
sudo apt-get install sun-java6-jre sun-java6-plugin -y
wget https://github.com/downloads/elasticsearch/elasticsearch/elasticsearch-0.17.6.tar.gz -O elasticsearch.tar.gz
tar -xf elasticsearch.tar.gz
rm elasticsearch.tar.gz
@jmikola
jmikola / common_prefix.php
Created September 22, 2011 00:15
Find the longest prefix(es) for a set of words.
#!/usr/bin/env php
<?php
/**
* This script calculates the longest prefixes for a set of words. The input is
* expected to be a list of newline-delimited strings from either STDIN or a
* file specified as the first command line parameter.
*/
call_user_func(function(){
$words = getUniqueWordsFromInput();