This site is archived.

Curious

Backstage with Drupal localization

Gábor Hojtsy 17 June 2010
Type:  Session in official program

Plug in your modules and themes to the Drupal localization system and get the best out of your code when running in different language environments.

Gábor Hojtsy just had a session a year ago introducing http://localize.drupal.org/ and its a fast growing member of the drupal.org site family ever since. It got the new redesigned theme second (after the Drupal Association) and its features and usability is continually expanded and reviewed.

In this session we'd like to take you to backstage showing how localizing Drupal the software works and how you can plug in your modules and themes to be localizable as well. What's supported on drupal.org and how can you localize your own software you built in-house?

Additional Presenters:  Jose Reyero

Carl Wiedemann

17 June 2010
Carl Wiedemann
Local team/staff
Personal information
Growing Venture Solutions
United States
Language (Primary) English
Social information
c4rl
235047
c4rl
c4rl

Drupal Drupal Drupal

Drupal speed dating: I'll show you my module if you show me yours

Jacob Singh 16 June 2010
Type:  Not planned session

Take a break from the talking heads, make new friends and business connections in a fun and energetic session. A great way to get introduced to the community and kick off an awesome conference.

If you're looking for love, you looking in all the wrong places. If you're looking for a good geeky time, expanding your Drupal knowledge and making drinking buddies (business partners) you are absolutely in the right place.

We'll be doing rotating pairs, speed dating style with some other surprises thrown in.
Expect to:

  • Relax
  • Make friends
  • Learn something

Communicating Drupal visually

Heather James 16 June 2010
Type:  Session in official program

Calling all Drupal artists! This is a hands-on workshop. We'll review guidelines for designing visuals for learning. Then we'll create visual representations of fundamental concepts of Drupal.

Session goal: The goal of this session is to create informative visuals to assist in Drupal adoption.

Introduction: There is a presentation renaissance happening, and people are leaving the old tired bullet points behind. But there is a lack of useful visuals for Drupal. If you write documentation for your modules; if you present proposals to potential clients; if you deliver training, you find you need compelling visuals for your ideas.

Additional Presenters:  Stella Power

Annette Q Pedersen

16 June 2010
AnetQ (Annette)
Local team/staff
Personal information
University of Copenhagen
Denmark
Language (Primary) Danish
Language (Secondary) English
Social information
anetq
anetq

Steffen Rühlmann

16 June 2010
Steffen Rühlmann
Local team/staff
Personal information
Germany
Language (Primary) German
Language (Secondary) English
Social information
SteffenR
244597
SteffenR

Vito Abrusci

15 June 2010
Vito Abrusci
Local team/staff
Personal information
Matrix Spa
Italy
Language (Primary) Italian
Language (Secondary) English
Social information
vitoabrusci
25316
vitoabrusci

Information Architect and Team Leader in a wide variety of Web applications.
I like to develop quick utilities or procedures that are a new way to look at existing things.
I enjoy learning and to be supportive of most training and development endeavors. Driven by competition and challenges, motivated to achieve and win in a variety of areas.
I manage CMS and Web Application Project; PHP / Drupal software development, architecture planning and training.

more on: http://it.linkedin.com/in/vitoabrusci

Scaling your Drupal Application, Data and Business with Microsoft Windows Azure

VIJAY RAJAGOPALAN 14 June 2010
Type:  Not planned session

Run Mission critical drupal Application on Microsoft's new cloud computing Platform Windows Azure.
Come learn about Microsoft’s new investments in PHP interoperability, and how this benefits the Drupal community. You can grow your Drupal app onto Azure - Microsoft’s Cloud Computing platform

There are multiple ways to scale your Drupal application and business with cloud computing. The first is being able to horizontally scaling your computing power. The second is being able to leverage the scale that you can get with cloud based data services and content delivery networks (CDN). Imagine taking advantage of all of that on a platform that can place your application in front of hundreds of thousands of potential new customers…

How to do parallel processing and map/reduce with Gearman.

Giuseppe Maxia 14 June 2010
Type:  Not planned session

Parallel processing, in any programming language, is hard to achieve and easy to get wrong.
However, you can leverage a distributed client/server paradigm to create parallel processed tasks quite easily, with a scalable and fail-resistant system. With Gearman you can run tasks in parallel, no matter where they should be performed.

A common scenario in web development is a delay in serving a page, due to
the need of performing several unrelated operations in sequence.
Sequential development is the norm in every major programming language,
and, although parallel processing is possible, implementing it in your
application is often painful and results in complex and debug unfriendly code.
Enters Gearman, a distributed client/server framework, which can be easily
integrated in any programming language, including SQL (through a MySQL User
Defined Function), and makes parallel processing a trivial task. This

An introduction to Gearman

Giuseppe Maxia 14 June 2010
Type:  Not planned session

Gearman is a distributed client/server system that works across different operating systems, with different programming languages, in a scalable and fault-tolerant mode.
Add to it that it is incredibly easy to use, and you will wonder why you haven't used it yet.

In the age of ubiquitous connectivity, distributed servers have become
readily available and usable. Gearman, a friendly infrastructure for
distributed tasks, gives developers and DBAs a large degree of flexibility
in their applications. Using Gearman, developers can access libraries
written in multiple languages, even if they are different from the ones
used in their main application. DBAs will benefit from Gearman in their
daily tasks, by accessing external features from within the database server
itself. This session introduces Gearman principles and shows some simple