Skip to content

Instantly share code, notes, and snippets.

View libin85's full-sized avatar

Libin Joseph libin85

  • Michael Hill
  • Brisbane, Australia
View GitHub Profile
@libin85
libin85 / MinimalAPIs.md
Created September 16, 2021 12:44 — forked from davidfowl/MinimalAPIs.md
Minimal APIs at a glance
@libin85
libin85 / Profiler.cs
Created March 12, 2018 23:15 — forked from matthewrdev/Profiler.cs
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;
@libin85
libin85 / 0_reuse_code.js
Last active August 29, 2015 14:26
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console