This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
##### Windows | |
# Windows thumbnail cache files | |
Thumbs.db | |
Thumbs.db:encryptable | |
ehthumbs.db | |
ehthumbs_vista.db | |
# Dump file | |
*.stackdump |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static final void iToast(final Activity context, final String message) | |
{ | |
context.runOnUiThread(new Runnable() | |
{ | |
@Override | |
public void run() | |
{ | |
Toast.makeText(context.getApplicationContext(), message, Toast.LENGTH_LONG).show(); | |
} | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public void myMethod(final Object object, final boolean... enabled) | |
{ | |
// ... | |
if (enabled[0]) | |
{ | |
// top kek | |
} | |
return; |
NewerOlder