Skip to content

Instantly share code, notes, and snippets.

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

Eduardo José Medina Alfaro emedinaa

🏠
Working from home
View GitHub Profile
@ricdex
ricdex / gist:8c7cda76292c184394cf
Last active September 19, 2015 14:59
encontrar clases por anotaciones
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
public @interface Execute {
String target() default "";
}
@emedinaa
emedinaa / android_string
Last active August 29, 2015 14:10
android display double quotes(")
//http://unicode-table.com/es/
String message = "esto es un "+'\u0022'+"hola"+'\u0022';
System.out.println("message "+message);
Log.i("CONSOLE", "message "+message);
//output
message esto es un "hola"