Skip to content

Instantly share code, notes, and snippets.

@samuel-alves
samuel-alves / script-loaded.js
Created February 9, 2017 14:10 — forked from AllThingsSmitty/script-loaded.js
Check if any given script has loaded
var myScript = document.createElement('script');
myScript.src = 'http://code.jquery.com/jquery-2.1.4.min.js';
myScript.onload = function() {
console.log('jQuery loaded.');
};
document.body.appendChild(myScript);
@samuel-alves
samuel-alves / MyActivity.java
Created September 28, 2016 08:40 — forked from ErikHellman/MyActivity.java
Simple LocalBinder demo for Android
package se.hellsoft.simpleservicecallbackdemo;
import android.app.Activity;
import android.content.ComponentName;
import android.content.Intent;
import android.content.ServiceConnection;
import android.graphics.Color;
import android.os.Bundle;
import android.os.Handler;
import android.os.IBinder;