This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.thedevstop | |
{ | |
import flash.events.ErrorEvent; | |
import flash.events.Event; | |
import flash.events.EventDispatcher; | |
import flash.utils.setTimeout; | |
[Event(name="complete", type="flash.events.Event")] | |
[Event(name="error", type="flash.events.ErrorEvent")] | |
public class CSVReader extends EventDispatcher |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static function isNullOrEmpty(object:Object):Boolean | |
{ | |
if (!object) | |
return true; | |
if (object is Array || | |
object is IList) | |
return !object.length; | |
for (var key:String in object) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
namespace TheDevStop.CsGuard | |
{ | |
public class Contracts | |
{ | |
public enum Kind | |
{ | |
PreCondition, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Threading.Tasks; | |
using Windows.ApplicationModel.Core; | |
using Windows.UI.Core; | |
namespace TheDevStop.Mobile.Framework | |
{ | |
public class UITask | |
{ | |
static readonly CoreDispatcher _dispatcher; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Func | |
{ | |
//Two Params | |
public static Func<T2, TR> Apply<T1, T2, TR>(Func<T1, T2, TR> func, T1 arg1) | |
{ | |
return (arg2) => func(arg1, arg2); | |
} | |
//Three Params | |
public static Func<T2, T3, TR> Apply<T1, T2, T3, TR>(Func<T1, T2, T3, TR> func, T1 arg1) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name HipChat append fix | |
// @namespace http://joeyrobichaud.com/ | |
// @version 0.1 | |
// @description Sending multiple messages in a row will create multiple chat blocks even though you are the sender of each of them. this fixes that. | |
// @match https://*.hipchat.com/chat | |
// @copyright 2014+, Joey Robichaud | |
// ==/UserScript== | |
window.addEventListener("load", function(e) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
data:text/html,<title>jsFaddle</title><link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/codemirror/4.4.0/codemirror.min.css"/><link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/codemirror/4.4.0/theme/vibrant-ink.css"/><link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/codemirror/4.4.0/addon/hint/show-hint.css"/><link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/codemirror/4.4.0/addon/lint/lint.css"/><script src="http://cdnjs.cloudflare.com/ajax/libs/codemirror/4.4.0/codemirror.js"></script><script src="http://cdnjs.cloudflare.com/ajax/libs/codemirror/4.4.0/addon/hint/show-hint.js"></script><script src="http://cdnjs.cloudflare.com/ajax/libs/codemirror/4.4.0/addon/hint/anyword-hint.js"></script><script src="http://cdnjs.cloudflare.com/ajax/libs/codemirror/4.4.0/addon/hint/xml-hint.js"></script><script src="http://cdnjs.cloudflare.com/ajax/libs/codemirror/4.4.0/addon/hint/html-hint.js"></script><script src="http://cdnjs.cloudflare.com/ajax/libs/cod |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "VInk", | |
"version": "1.0", | |
"description": "The Vink theme is a modified WikiRoad Ink theme.", | |
"originator": "Joey Robichaud <[email protected]>", | |
"palette": [ | |
{ "name": "comment", "value": "#808080" }, | |
{ "name": "keyword", "value": "#CC7832" }, | |
{ "name": "type", "value": "#FFC66A" }, | |
{ "name": "interface", "value": "#6897BB" }, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Window x:Class="TouchKeyboardTest.MainWindow" | |
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | |
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | |
xmlns:local="clr-namespace:TouchKeyboardTest" | |
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" | |
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" | |
mc:Ignorable="d" | |
Title="Touch Keyboard Test" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@-moz-document domain("hipchat.com") { | |
.date-divider { | |
margin: 0; | |
text-align: left; | |
color: #fff; | |
} | |
.date-block { | |
width: calc(100% - 10px); | |
} |