Skip to content

Instantly share code, notes, and snippets.

View SeanSWatkins's full-sized avatar

Sean Watkins SeanSWatkins

  • Private
  • South Africa
View GitHub Profile
@SeanSWatkins
SeanSWatkins / designer.html
Created December 15, 2014 10:33
designer
<link rel="import" href="../core-drawer-panel/core-drawer-panel.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
public class SomeService extends Service
{
public int fiveMinCounter = 0,twoMinCounter = 0;
@Override
public IBinder onBind(Intent intent) {
return mBinder;
}
@SeanSWatkins
SeanSWatkins / SomeService
Created February 6, 2013 12:51
SomeService using a Timer
public class SomeService extends Service
{
public int fiveMinCounter = 0,twoMinCounter = 0;
@Override
public IBinder onBind(Intent intent) {
return mBinder;
}
@SeanSWatkins
SeanSWatkins / gist:4722332
Created February 6, 2013 12:51
SomeService using a Timer
public class SomeService extends Service
{
public int fiveMinCounter = 0,twoMinCounter = 0;
@Override
public IBinder onBind(Intent intent) {
return mBinder;
}