Skip to content

Instantly share code, notes, and snippets.

View BjoernSchotte's full-sized avatar
:bowtie:
Tinkering 🤖

Björn Schotte BjoernSchotte

:bowtie:
Tinkering 🤖
View GitHub Profile
exports.init = function() {
if (!Ti.Android || Ti.Platform.Android.API_LEVEL < 13 || Ti.Network.online == false) {
Ti.UI.createNotification({
backgroundColor : 'red',
message : 'Dieses Gerät kann zur Zeit keine Kurzbenachrichtigungen empfangen'
}).show();
return;
}
var CloudPush = require('ti.cloudpush');
var deviceToken = null;

Awesome PHP

A list of amazingly awesome PHP libraries, resources and shiny things.

Composer

Composer Related

@BjoernSchotte
BjoernSchotte / jira-activity.coffee
Created December 4, 2012 18:59 — forked from codec/jira-activity.coffee
JIRA Activity Stream script for Hubot - posts new stream activity to your jabber conference
FeedParser = require('feedparser')
ent = require('ent')
{EventEmitter} = require('events')
class ActivityStream extends EventEmitter
constructor: (@url, @robot) ->
@robot.logger.info("ActivityStream for #{@url}")
self = this
self.guid = "urn:uuid:a1c4b672-fc6d-3a82-8522-0e05350297de"