Skip to content

Instantly share code, notes, and snippets.

View amy6's full-sized avatar
:octocat:
Let's ☕️ and 👩‍💻

Mahima amy6

:octocat:
Let's ☕️ and 👩‍💻
View GitHub Profile
@stkent
stkent / android-bluetooth-low-energy-resources.md
Last active August 1, 2024 08:47
Android Bluetooth Low Energy (BLE) Resources
@vasanthk
vasanthk / System Design.md
Last active June 6, 2025 19:30
System Design Cheatsheet

System Design Cheatsheet

Picking the right architecture = Picking the right battles + Managing trade-offs

Basic Steps

  1. Clarify and agree on the scope of the system
  • User cases (description of sequences of events that, taken together, lead to a system doing something useful)
    • Who is going to use it?
    • How are they going to use it?
@danielgomezrico
danielgomezrico / EditText.xml
Created April 23, 2015 04:30
Android - EditText disabled but clickable
<EditText ...
android:clickable="true"
android:cursorVisible="false"
android:focusable="false"/>