Autor

Alejandro Alcalde

Data Scientist and Computer Scientist. Creator of this blog.

Más artículos de Alejandro Alcalde | Porfolio

Índice

Todos sabemos el humor que gastan chicos de Google, y a raiz de una pregunta en stackoverflow descubrí que la documentación de Android tiene unos cuantos toques de humor de los de Mountain View. Así que decidí buscarlos y crear la siguiente recopilación:

isUserAGoat()

Abriremos la recopilación con la pregunta en stackoverflow, la cual tuvo bastante éxito como se puede apreciar en los votos:

La documentación oficial está en /android/os/UserManager.isUserAGoat, que viene a ser algo como ¿Es el usuario una cabra?:

public boolean isUserAGoat ()

Used to determine whether the user making this call is subject to teleportations.

Returns whether the user making this call is a goat.

Log.wtf()

Podría pensarse que esta abreviatura viene de What The Fuck?, pero en realidad es What a Terrible Failure: Está documentada como sigue

public static int wtf (String tag, String msg)

What a Terrible Failure: Report a condition that should never happen. The error will always be logged at level ASSERT with the call stack. Depending on system configuration, a report may be added to the DropBoxManager and/or the process may be terminated immediately with an error dialog.

Parameters tag Used to identify the source of a log message. msg The message you would like logged.

/android/util/Log.html#wtf(java.lang.String, java.lang.String)

isUserAmonkey()

Éste método devolverá verdadero si la interfaz gráfica parece estar siendo manejada por un mono:

public static boolean isUserAMonkey ()

Returns “true” if the user interface is currently being messed with by a monkey.

/android/app/ActivityManager.html#isUserAMonkey()

TWEET_TRANSACTION y LIKE_TRANSACTION

Según la documentación, al terminar la primera transacción (TWEET_TRANSACTION), el objeto debe hacer una taza de té, devolverla al llamador y gritar “¡¡Muy buen mensaje muchacho!!

public static final int TWEET_TRANSACTION

IBinder protocol transaction code: send a tweet to the target object. The data in the parcel is intended to be delivered to a shared messaging service associated with the object; it can be anything, as long as it is not more than 130 UTF-8 characters to conservatively fit within common messaging services. As part of HONEYCOMB_MR2, all Binder objects are expected to support this protocol for fully integrated tweeting across the platform. To support older code, the default implementation logs the tweet to the main log as a simple emulation of broadcasting it publicly over the Internet.

Also, upon completing the dispatch, the object must make a cup of tea, return it to the caller, and exclaim “jolly good message old boy!”.

La segunda (LIKE_TRANSACTION) le dice a la aplicación (asíncronamente) que al llamador le gusta, no afecta al rendimiento del sistema, pero mejorará la autoestima de la aplicación:

public static final int LIKE_TRANSACTION

IBinder protocol transaction code: tell an app asynchronously that the caller likes it. The app is responsible for incrementing and maintaining its own like counter, and may display this value to the user to indicate the quality of the app. This is an optional command that applications do not need to handle, so the default implementation is to do nothing.

There is no response returned and nothing about the system will be functionally affected by it, but it will improve the app’s self-esteem.

Eso es todo lo que he podido encontrar, un poquito de humor nunca viene mal. ¿Conocéis más métodos curiosos en la documentación?

¿Has visto algún error?: Por favor, ayúdame a corregirlo contactando conmigo o comentando abajo.

Categorías: