Skip to content

Instantly share code, notes, and snippets.

View danilovalerio's full-sized avatar
😀
Programming

Danilo Valério da Silva danilovalerio

😀
Programming
View GitHub Profile
@infrony
infrony / chatgpt-mermaid.md
Last active November 27, 2025 19:15
ChatGTP + Mermaid + Caso de Uso

Diagrama de flujo

Prompt

generar un codigo de mermaid js de un flujo de compras de tomates, 
transporte y entrega de mercancia en los supermercados

Mermaid

graph TD
  A[Cliente] -- Realiza pedido --> B((Supermercado))
@EmmanuelGuther
EmmanuelGuther / AndroidToolbarActivityTest.txt
Created December 13, 2017 10:34
Test your toolbar back button espresso
To not depend on the app locale, you can use the code from Matt Logan by replacing "Navigate up" with R.string.abc_action_bar_up_description:
onView(withContentDescription(R.string.abc_action_bar_up_description)).perform(click());
This helped me a lot because I have an app in more than 5 languages and I had to act like this.