Archive for March, 2012

Xedotnet meeting: Real world experience

March 31, 2012

Venerdi scorso al meeting XeDotNet 😉

Ma quanto costa Windows Azure?
Speaker: Cristiano Simionato

Chi accede per la prima volta al mondo cloud si scontra sempre con il fattore costi: difficoltà nell’interpretare il pricing, nessun costo certo, tutto basato su stime di volume, difficoltà nel confrontare le offerte o il costo delle varie implementazioni possibili per lo stesso problema. Con questa sessione si vuole trasmettere l’esperienza accumulata in quasi due anni di utilizzo reale di Azure, e rispondere alle vostre domande suggerendo anche qualche metodologia empirica che potrebbe essere d’aiuto.

REST & .NET Micro FW – A Real Case
Speaker: Mirco Vanini

Internet of things è vista come una possibile evoluzione dell’uso della Rete. Gli oggetti si rendono riconoscibili e acquisiscono intelligenza grazie al fatto di poter comunicare dati su se stessi e accedere ad informazioni aggregate da parte di altri. Partendo da questa affermazione vedremmo come questo sia possibile utilizzando il .NET MF e i servizi REST. La sessione si baserà su un caso reale e verranno illustrati tutti i punti salienti di questa soluzione. .

Technorati tags: Xedotnet

IT I like most!

March 26, 2012

IT world improved our lifes, both personal and professional.
IT world moved us to something new 100 years ago seemed simply “insane”.

A couple of samples:

  1. Disabled Use iPad as Rehabilitation Tool
  2. Eythor Bender demos human exoskeletons

This is IT I like most!

Scambiare non-Touch con Touch …

March 25, 2012

C’è chi è giustificato nello scambio di supporto “high tech vs paper” …
ma scambiare laptop(mouse) con tablet(touch) è “strano” solo nel caso in cui non si è mai usato alcun “aggeggio” touch. 😦

“strano” = voglia di touch ??? :O

WPF: first application video tutorial

March 23, 2012

While I was showing some hints on WPF to a friend of mine,
I also found a video tutorial that includes most of them.
Author is Pete Brown, and it made a great job to me: a 32 minutes video showing simple concepts about binding, mvvm, xaml, etc.

If you are approaching WPF, and wonder which side start from,
than this video will help you a lot understanding what WPF offers to you.

It worth have a look. 🙂

source: How Do I: Build My First WPF Application

Install Silverlight

Technorati tags: WPF, MVVM, XAML

WPF, MVVM, INotifyPropertyChanged: Lambda – DependencyObject performance

March 18, 2012

INotifyPropertyChanged give a helpfull “feature” to WPF+MVVM, but using all those variable names via string is painfull (ie refactoring ?!?!) .
Well, Lambda expression are an easy solution, cute and let writes fluent reading code.
All that glitters ain’t gold!

Lamdba facilitations come with a heavy resource usage: time, cpu, memory.

Here is a blog post, MVVM – Lambda vs INotifyPropertyChanged vs DependencyObject, with some tests and comparison.

Better have a look. 😉
source: MVVM – Lambda vs INotifyPropertyChanged vs DependencyObject

Technorati tags: WPF, MVVM, INotifyPropertyChanged, Lambda