lundi 19 octobre 2015

Console.WriteLine("Hello, World!"); - Damien Delaire, Windows Software Engineer

Hello World this is my first blog post and I am testing this out!

I am Software Engineer, working in San Francisco, California for DAILYMOTION as their Lead Mobile Software Engineer for Windows Store & Windows Phone. Before that I used to work for a star-up called Pret d’Union (financial sector) in Paris, France as a Back-end .NET Software Engineer.

I have a double masters in MSc Software Engineering with Oxford Brookes University and my MSc in Computer Science with SUPINFO Paris University. Having lived in New York State for 6 years and having finished my studies in the United Kingdom, I am bilingual in English and French.

Additional Information:

On my free time I like to develop Windows Store and Windows Phone applications. These applications allow me to try out new features, try to prototype new idea, exchange with other programmers. Also, this gives me the opportunity to learn and improve my skills. You can check out my different applications here for Windows Store and Here for Windows Phone.

I am also stackoverflow asking questions and answering them to try and help the windows store and phone community move forward.

Even More information:

I participated in the Imagine Cup 2012 in Software Design category, Azure and Windows Phone 7, our name was called Doctor Me. We participated in the competition Imagine Cup 2012 World & National (France). More info here...

I participated in the Imagine Cup 2011 in the Windows Phone 7 category. My project passed round one of the World competition and the National competition, we were selected as French finalist and went to Paris to present our project to a jury. More info here...

I am open to any professional opportunities, please do not hesitate to contact me.


Github: https://github.com/Delaire
Linkedin: https://www.linkedin.com/in/damiendelaire
Stackoverflow: http://stackoverflow.com/users/1733263/damien


Example code

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
namespace Delaire.Controls
{
 public class AzertyView: ListView
 {
  public AzertyView()
  {
   this.SizeChanged += AzertyView_SizeChanged;
  }
  private void AzertyView_SizeChanged(object sender, Windows.UI.Xaml.SizeChangedEventArgs e)
  {
   if(ItemsPanelRoot!=null)
    ItemsPanelRoot.Width = e.NewSize.Width;
  }
 }
}