Skip to content

Instantly share code, notes, and snippets.

View navkar's full-sized avatar
🐙
I may be slow to respond.

Naveen Kar navkar

🐙
I may be slow to respond.
View GitHub Profile
@stevenringo
stevenringo / reinvent-2017-youtube.md
Created December 3, 2017 23:01
Links to YouTube recordings of AWS re:Invent 2017 sessions

| Title | Description

@taimila
taimila / SvgIcon.cs
Last active January 11, 2020 16:48
Simple Xamarin.Forms view that allows showing SVG icons with specific color.
using System;
using System.IO;
using System.Reflection;
using System.Collections.Generic;
using SkiaSharp;
using SkiaSharp.Views.Forms;
using Xamarin.Forms;
namespace Components
{
@YARG
YARG / gist:681f426b78af6d77baab
Created February 25, 2015 08:37
Simple PCL C# Timer class
using System;
using System.Threading;
using System.Threading.Tasks;
namespace YARG.Core.Utils
{
internal delegate void TimerCallback(object state);
internal sealed class Timer : CancellationTokenSource, IDisposable
{