Skip to content

Instantly share code, notes, and snippets.

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

Ahmad Darwesh ahmaddarwesh

🏠
Working from home
View GitHub Profile
@Fast0n
Fast0n / generateRandomString.txt
Last active June 17, 2022 15:26
Generate Random Password String Android Studio
import java.util.Random;
public class GeneratePassword {
/**
* Genera una password RANDOM
*/
public static final String DATA = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz|!£$%&/=@#";
public static Random RANDOM = new Random();
@sghael
sghael / colors.xml
Created June 14, 2012 13:43
Android colors.xml
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="white">#FFFFFF</color>
<color name="ivory">#FFFFF0</color>
<color name="light_yellow">#FFFFE0</color>
<color name="yellow">#FFFF00</color>
<color name="snow">#FFFAFA</color>
<color name="floral_white">#FFFAF0</color>
<color name="lemon_chiffon">#FFFACD</color>
<color name="cornsilk">#FFF8DC</color>