Saturday, May 11, 2013

IE8 CSS Hack

Using IE8 CSS Hack


You can use the ie8 css hack to force internet explorer to accept your @media queries. The ie8 css hack circumvents the inherent blockage/neglect by internet explorer. After finding the great solution to browser responsive CSS with @media queries you probably cried when finding out they don't work in IE9 and earlier.


This is normal use of: @media 
IE8 CSS Hack
IE8 CSS Hack
The above is discarded by IE9 and earlier. A way around this problem is by using the ie8 only css hack. 

To target IE 6 and 7

@media screen\9 {
    body { background: red; }
} 


To target IE 6, 7 and 8

@media \0screen\,screen\9 {
    body { background: green; }
} 

To target IE 8

@media \0screen {
    body { background: blue; }
} 

To target IE 8, 9 and 10

@media screen\0 {
    body { background: orange; }
} 

To target IE 9 and 10

@media screen and (min-width:0\0) {
    body { background: yellow; }
} 

Big thanks to Keith Clark for finding this ie8 css hack for @media queries.
It does not solve everybody's problem depending on your exact coding but using this css ie8 hack can help in some instances.

IE7 CSS hack

Using IE7 CSS Hacks

You can use ie7 css hacks to force internet explorer to accept your @media queries. After finding the great solution to browser responsive CSS with @media queries you probably cried when finding out they don't work in IE9 and earlier.

This is normal use of: @media 
IE7 CSS hack
IE7 CSS Hack
The above is discarded by IE9 and earlier. A way around this problem is by using CSS Hacks

To target IE 6 and 7

@media screen\9 {
    body { background: red; }
} 



To target IE 6, 7 and 8

@media \0screen\,screen\9 {
    body { background: green; }
} 

To target IE 8

@media \0screen {
    body { background: blue; }
} 

To target IE 8, 9 and 10

@media screen\0 {
    body { background: orange; }
} 

To target IE 9 and 10

@media screen and (min-width:0\0) {
    body { background: yellow; }
} 

Big thanks to Keith Clark for finding the ie7 css hacks out
It does not solve everybody's problem with @media queries. The css hack ie7 works, depending on your exact coding but it can help in some instances.

Tuesday, April 9, 2013

Netgear adattatore wireless WNDA3100v2

Netgear adattatore wireless 

Dopo aver lottato con questo me stesso, ho deciso di contribuire alla grandezza che è Internet, da quando ho visto molte persone che hanno lo stesso problema e le soluzioni diversi, offerti on-line, che non tutti sembrano capire.
Il tasto con l'installazione è Netgear adattatore wireless che avete bisogno di lasciare le finestre creare i file necessari e poi renderli compatibili con Linux, che viene fatto utilizzando ndiswrapper.

Questo è scritto per assoluti principianti di Linux così avanzata non si lamentano.
  1. Ottenere il vostro. Sistemi e file inf. (Fatto su Windows)
    • Poiché la maggior parte niubbi di Linux come me, provengono da Windows presumo che abbiate installato la scheda su un sistema Windows. Passare alla directory Programmi Files (su Windows) e cercare la cartella di NETGEAR. Cercare la cartella di Windows 2000 o XP e copiare tutti i file in là.
    • Se non si ha accesso a un sistema Windows per estrarre i file del driver, c'è un modo per farlo direttamente in Ubuntu usando 'vino'. Dal momento che questo richiede una maggiore maneggevolezza sul sistema Ubuntu e dal momento che questo è stato scritto per i principianti assoluti non voglio discutere di questo.
  2. Ottenere i file del pacchetto ndiswrapper
    • Questi file possono essere trovati qui. Hai bisogno di tutti e tre.
  3. Collocare i file sul vostro sistema Ubuntu
    • Dopo aver ottenuto i file metterli in una cartella sul vostro sistema Ubuntu. Si noti che i file del driver sarà bisogno di stare loro in modo permanente così ha scelto un luogo che non rimuoverà più tardi.
  4. Installazione dei pacchetti ndiswrapper
    • Aprire la finestra del terminale. Ci sono diversi modi per farlo. Il metodo più semplice è premendo Ctrl + Alt + T. Per altri modi guarda qui.
    • Passare alla directory in cui si trovano i file ndiswrapper usando il comando 'cd'.
    • Eseguire i seguenti comandi linux:
      sudo dpkg-i ndiswrapper-common
      sudo dpkg-i ndiswrapper-utils-1.9
      sudo dpkg-i ndisgtk
      Assicurati di farlo in questo ordine. Se si ottiene un errore controllare il
      nomi usati dopo il comando '-i', dal momento che forse ha dato i file di una
      nome o il server di download ha fatto. 
  5. Installare i driver su Ubuntu Netgear adattatore wireless
    • Passare alle impostazioni di sistema (in alto a destra) e cercare driver wireless di Windows. Questo può essere fatto anche da Applicazioni -> Sistema -> driver wireless di Windows.
    • Inserire la password e quindi utilizzare il menu per accedere al file. Inf (fase 1) è stato memorizzato su Ubuntu l 'installazione del driver.
  6. Verificare l'installazione
    • Accedi al tuo nuovo terminale e digitate: sudo lshw-C network. Avanti per la propria interfaccia Ethernet, si dovrebbe vedere qualcosa di simile a questo:
    • -Rete
             Descrizione: Interfaccia wireless
    •        fisico id: 1
    •        nome logico: wlan0
  7. Configurazione della rete wireless
    • Passare al Network Manager facendo clic su una delle icone in alto a destra. Qui è possibile selezionare la rete desiderata e configurare questa. È possibile utilizzare gli stessi dati aas che hai usato in Windows.
Spero che questa ricerca finisce tutti quanti per la WNDA3100 (v2) in soluzione adattatore Ubuntu.