Perl at Fosdem 2012

Hi,

Next Sunday (5 february), Fosdem 2012 is hosting our Perl booth and Perl devroom. We welcome a bunch of impressive speakers. The schedule is published here.

If you are coming to Fosdem but did not select talks from the Perl devroom: read the text below and reschedule your day ;)
If you didn't plan to come to Fosdem but are or can free next Sunday, read the text below and book your day !
Best of all, Fosdem is free of charge and you don't have to register your presence.

Most talks in the Pe…

FOSDEM 2012 - Brussels

Hello,

Fosdem 2012 will take place on 4 and 5 February.
You'll find our call for speakers here: Fosdem 2012 call for speakers

Hope to meet you there !

--
erik

Belgian Perl Workshop 2011 - Thank you all

So we had the Belgian Perl Workshop 2011 last Saturday.

I wish to thank all participants for the conviviality of the event. We had a bunch of interesting interactive talks, which where well prepared by the speakers.

Including the gurus who shared their knowledge, the audience was particularly and constructively active during the talks. There were a lot of interventions and all went smoothly.

This is exactly what a workshop should be. People are learning by asking questions while others share info by interfering with the speaker's flow in a non-invasive way. Somehow eve…

Belgian Perl Workshop 2011

Hello fellow perl programmers!

Please note that the Belgian Perl Workshop 2011 will take place at "The Hub" in Brussels (http://brussels.the-hub.net/public/) on Saturday 15 October.

We are quite late on schedule. So please register your presence and talk submissions as soon as possible via the conference site http://conferences.yapceurope.org/bpw2011/

PS1: As every year, entrance will be free !
PS2: Please forward this message wherever you think it will get …

review: O'Reilly video "McCullough and Berglund on Mastering Git"

This is the first O'Reilly video I downloaded. Technically this course has been recorded in optimal conditions. You won't be disturbed by noise nor bad images. O'Reilly did a great job at mixing the video with full-screen laptop screen and the room.

By downloading the course you'll get more than 5 hours of interesting course. The course is divided in well-organized chunks. Each chunk handles a specific item of git, which makes it great for later review.

As it starts by explaining Git as a distributed RCS systems with very explicit diagrams, this course can be followed by a complete RCS newbie. I'm considering myself as an intermediate user and started learning new stuff very fast. i.e. I never use "git add ." since I was quite confused about what happens to the repo. Explanations of this command makes me more confident about using this command since I now understand what this command exactly does. Did you know that "git add . -A" will actually track renamed files? I used to issue "git mv" commands for every renamed file in a repo while I could as well have issued the previous command.

Branches are cheap so branch often! Well I already knew that, but some things are good to be repeated. I'm also using tags, but never thought about what tagging exactly did. I actually didn't care about knowing this. Well, I can tell you I was wrong. The instructor doesn't only explain git commands, but always goes back to explaining what exactly happens in the .git directory. Understanding how the .git directory keeps the history brings a new dimension to using git. I.e. what happens if you delete a tag that has already been pushed to origin ? Never thought about this, but the example clearly helps explaining the fundamentals of Git.

For the more advanced users, the video's about merge and rebase will probably be a memory fresh-up about what actually happens to the repo when issuing this commands. For the intermediate or beginner this will actually look like the reason behind the existence of Git. On of the main purposes of Git effectively being to make merges easy !

The course ends with less common used commands. The existence of commands as git revert, reset, stash, clean and their influence on the repo demonstrates how Git foundations are reflecting reality. The repo keeps clean after playing with commits while keeping in mind this is a distributed RCS.