Skip to content

Instantly share code, notes, and snippets.

View JonDouglas's full-sized avatar
📦
Busy working on NuGet. I'll try my best to get around to you.

Jon Douglas JonDouglas

📦
Busy working on NuGet. I'll try my best to get around to you.
View GitHub Profile
@JonDouglas
JonDouglas / Mirror
Last active February 2, 2023 02:26
Mirror
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Mirror
{
public class Program
{
public static void Main(string[] args)
@JonDouglas
JonDouglas / AndroidServiceActivity
Created February 11, 2014 21:37
Android Service Activity
using System;
using Android.App;
using Android.Content;
using Android.Runtime;
using Android.Views;
using Android.Widget;
using Android.OS;
using Android.Graphics;
using Android.Util;
@JonDouglas
JonDouglas / AndroidService
Created February 11, 2014 21:35
Android Service
using Android.App;
using Android.Content;
using Android.Widget;
using Android.Util;
using Android.OS;
using System.Threading.Tasks;
using System.Threading;
namespace Demo2HelloService
{
@JonDouglas
JonDouglas / iOSBackground
Created February 11, 2014 21:33
iOS Background Task
using System;
using MonoTouch.UIKit;
using System.Threading.Tasks;
using System.Threading;
using System.Text;
using MonoTouch.Foundation;
namespace Demo2LongRunningTasks
{
partial class LongRunningTaskViewController : UIViewController
@JonDouglas
JonDouglas / MakeChocolate
Last active August 29, 2015 13:56
MakeChocolate
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MakeChocolate
{
public class Program
{
@JonDouglas
JonDouglas / webservice
Last active August 29, 2015 13:56
Xamarin Web Services
using System;
using System.Collections.Generic;
using System.Json;
using System.Linq;
using System.Net.Http;
using System.Net.Http.Headers;
using System.Threading.Tasks;
namespace Xamarin.WebServicesAsync.Rest.Droid.Client
{