Skip to content

Instantly share code, notes, and snippets.

@richorama
richorama / package.json
Last active April 8, 2016 14:35
A github service hook to start a VM, and shut it down after 15 minutes of inactivity
{
"name": "vmstartstop",
"version": "0.0.0",
"description": "",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js"
},
"author": "",
@davidroth
davidroth / ToastView.cs
Last active September 26, 2015 13:48
ToastView allows to show UIToasts on the Iphone via Monotouch and C#
// Licence: MIT X11
// Note: This is an Objective-C to C# translation by using code from: http://code.google.com/p/toast-notifications-ios/
namespace Fusonic.Monotouch.Utils
{
public class ToastView : NSObject
{
ToastSettings theSettings = new ToastSettings ();
private string text = null;
private UIView view;