Skip to content

Instantly share code, notes, and snippets.

View stillie's full-sized avatar

Stillie stillie

  • Earth
View GitHub Profile
@invisiblejim
invisiblejim / List of Useful FLOSS.md
Last active March 20, 2023 12:07
A List of Useful Free/Libre/Open Source Software

A Useful List of Free/Libre/Open Source Software Projects

The list has been moved to a new home at The Friendly Free Software Directory

As of 27/12/2022 this Gist is deprecated and will no longer be maintained. Please visit the new site for the latest additions to the list

A list of favorite Free/Libre/Open Source Software suggested by members of the Mybroadband.co.za forum community.

To join the discussion or suggest additions to the list go to

@shkschneider
shkschneider / Log
Last active November 21, 2021 03:51
Android Log helper (automatic class, method and line) replacing android.util.Log
package me.shkschneider.skeleton.helper;
import android.text.TextUtils;
import android.util.Log;
/**
* Improved android.util.Log.
*
* Logs class and method automatically:
* [MyApplication onCreate():34] Hello, world!
@donaldhuebner
donaldhuebner / AuthActivity.java
Created November 25, 2013 13:24
Verifying Google Play Services
public class AuthActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
}
}
@Override