27 aprile 2013

Elenco ministri governo Letta

60 giorni dopo le elezioni abbiamo il governo di 21 ministri:
Primo Ministro - Enrico Letta (pd)
Interni e Vicepremier- Angelino Alfano (pdl)
Difesa - Mario Mauro
Esteri - Emma Bonino (radicali)
Giustizia - Anna Maria Cancellieri (persona gradita ad entrambi gli schieramenti)
Economia - Fabrizio Saccomanni (Bocconiano, ex Direttore generale della banca d'italia)
Riforme istituzionali - Gaetano Quagliariello
Sviluppo - Flavio Zanonato (ex sindaco Padova)
Infrastrutture - Maurizio Lupi (pdl)
Poliche Agricole - Nunzia De Girolamo (pdl)
Istruzione, Università e ricerca- Maria Chiara Carrozza
Salute - Beatrice Lorenzin (pdl)
Lavoro e Politiche sociali - Enrico Giovannini
Ambiente - Andrea Orlando (pd)
Beni culturali e Turismo- Massimo Bray (pd)
Coesione territoriale - Carlo Trigilia (pd)
Politiche comunitarie - Anna Maria Bernini (pdl)
Affari regionali, sport e turismo - Graziano Delrio (pd)
Pari opportunità, sport, politiche giovanili - Iosefa Idem (pd)
Rapporti con il Parlamento - Dario Franceschini (pd)
Integrazione - Cecile Kyenge (pd)
Pubblica Amministrazione- Giampiero D'Alia

Da notare:
  • vi sono ben 7 donne!
  • diversi Emiliani
Napolitano sottolinea la natura politica di questo governo e si auspica coesione e rispetto politico.


20 aprile 2013

How use USB Magnetic Stripe Reader in C#





USB Magnetic Stripe Reader
A magnetic stripe reader is a hardware device that reads the information encoded in the magnetic stripe located on the back of a plastic badge.

We can use it to read the information contained in the magnetic cards.

Below I post the C# code in order to capture the swipe:





  1. Add the event:
    public Form1()
            {
                InitializeComponent();
                KeyPreview = true;
                KeyPress += Form1_KeyPress;
            }
  2. Manage the event KeyPress in the form:
    private bool inputToLabel = true;
    void Form1_KeyPress(object sender, KeyPressEventArgs e)
            {
                if (inputToLabel)
                {
                    label1.Text = label1.Text + e.KeyChar;
                    e.Handled = true;
                }
                else
                {
                    e.Handled = false;
                }
                if (e.KeyChar == (char)Keys.Enter) // if is the last char I do something
                {
                    // I do something
                }
            }
Remember: before you swipe the card, put the focus on the form or textbox where you want put the information read.

Please let me know if you have problems.

14 aprile 2013

Android Google Maps Navigator: to switch between 2d and 3d map

Google maps Navigator: switch from 3d to 2d map