Skip to content

Instantly share code, notes, and snippets.

View emmgfx's full-sized avatar
🏠
Working from home

Josep Viciana emmgfx

🏠
Working from home
View GitHub Profile
@emmgfx
emmgfx / layout.xml
Created November 24, 2013 17:22
Add image to textview. See the drawableRight parameter.
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:drawableRight="@android:drawable/presence_busy"
android:text="@string/signup"
android:textAppearance="?android:attr/textAppearanceMedium" />
nombre name nom iso2 iso3 phone_code
Afganistán Afghanistan Afghanistan AF AFG 93
Albania Albania Albanie AL ALB 355
Alemania Germany Allemagne DE DEU 49
Algeria Algeria Algérie DZ DZA 213
Andorra Andorra Andorra AD AND 376
Angola Angola Angola AO AGO 244
Anguila Anguilla Anguilla AI AIA 1 264
Antártida Antarctica L'Antarctique AQ ATA 672
Antigua y Barbuda Antigua and Barbuda Antigua et Barbuda AG ATG 1 268
@emmgfx
emmgfx / gist:5194361
Created March 19, 2013 07:44
php.ini recursivo en htaccess
SuPHP_ConfigPath /home/username/public_html/php.ini
@emmgfx
emmgfx / gist:4721071
Created February 6, 2013 07:59
text overflow ellipsis
p.test {
white-space: nowrap;
width: 100%;
overflow: hidden;
text-overflow: ellipsis;
}
@emmgfx
emmgfx / gist:4554728
Last active December 11, 2015 05:48
SQL con where dinámico
<?PHP
$sql = "SELECT foo FROM bar WHERE 1 = 1";
if ($filter1){
$str.=" and col1='frobozz'";
}
?>
@emmgfx
emmgfx / gist:4545433
Created January 16, 2013 08:11
Convertir segundos a H:i:s
<?PHP
echo gmdate("H:i:s", 685);
?>
@emmgfx
emmgfx / gist:4540222
Created January 15, 2013 17:16
IE=edge
<!-- Always force latest IE rendering engine (even in intranet) & Chrome Frame -->
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
@font-face{
font-family: Roboto;
src: url('Roboto.ttf');
}
@font-face{
font-family: "Roboto con espacio";
src: url('Roboto2.ttf');
}
/* Uso */
a{
@emmgfx
emmgfx / gist:4538141
Created January 15, 2013 11:59
Localstorage (cookies) Javascript
/* Se puede guardar texto o cualquier otra cosa, incluso video (MÁX 5M) */
/* Guarda dato */
localStorage["clave"] = "Valor";
/* Lee dato */
alert(localStorage["Nombre"]);
@emmgfx
emmgfx / gist:4538109
Last active December 11, 2015 03:29
Media queries en la misma hoja de estilos
/* Se aplica a la versión normal */
@media screen{
body{
width:75%;
}
}
/* Se aplica a la versión para imprimir */
@media print{
body{