Skip to content

Instantly share code, notes, and snippets.

View Frankity's full-sized avatar
The time is up

Douglas Brunal Frankity

The time is up
View GitHub Profile
@Frankity
Frankity / radios.json
Last active January 29, 2019 14:49
Radios
{
"data":[
{
"name":"Radio Tiempo Barranquilla",
"url":"http://i60.letio.com/9100.aac"
},
{
"name":"Radio Tiempo Cucuta",
"url":"http://i50.letio.com/9146.aac"
},
@Frankity
Frankity / Connectivity.java
Created September 2, 2020 20:39 — forked from emil2k/Connectivity.java
Android utility class for checking device's network connectivity and speed.
/*
* Copyright (c) 2017 Emil Davtyan
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
@Frankity
Frankity / main.vala
Created October 7, 2016 01:37 — forked from rickybassom/main.vala
Simple Gtk.Application example in vala
using Gtk;
public class MyApplication : Gtk.Application {
public MyApplication () {
Object(application_id: "testing.my.application",
flags: ApplicationFlags.FLAGS_NONE);
}
protected override void activate () {