Skip to content

Instantly share code, notes, and snippets.

View winnicki's full-sized avatar

Derek Winnicki winnicki

  • SmartUse Solutions Inc.
  • Montreal, QC
View GitHub Profile
@PCreations
PCreations / rxjs-diagrams.md
Last active January 18, 2024 08:52
Super Intuitive Interactive Diagrams to learn combining RxJS sequences by Max NgWizard K
@matthewrdev
matthewrdev / Profiler.cs
Last active April 2, 2020 14:39
A simple and lean profiler that measures a code section using the IDisposable pattern.
using System;
using System.Diagnostics;
using System.IO;
using System.Runtime.CompilerServices;
namespace MFractor.Utilities
{
public class Profiler : IDisposable
{
readonly string Message;
@rbirkby
rbirkby / oneliners.cs
Created June 2, 2011 17:12
10 C# One Liners to Impress Your Friends
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Xml.Linq;
class TenCSharpOneLiners
{
static void Main()
{