Skip to content

Instantly share code, notes, and snippets.

@Yousha
Yousha / .gitignore
Last active April 19, 2025 17:16
.gitignore for PHP developers.
##### Windows
# Windows thumbnail cache files
Thumbs.db
Thumbs.db:encryptable
ehthumbs.db
ehthumbs_vista.db
# Dump file
*.stackdump
@Yousha
Yousha / iToast.java
Last active June 16, 2020 08:46
Improved Android Toast.
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();
}
});
@Yousha
Yousha / gist:e64e0bd144bc94b464ce8acf9c045111
Last active March 6, 2017 15:26
The optional parameter for Java. (Trick)
public void myMethod(final Object object, final boolean... enabled)
{
// ...
if (enabled[0])
{
// top kek
}
return;