Skip to content

Instantly share code, notes, and snippets.

@PlusHaze
PlusHaze / LineGraph.cs
Created March 14, 2016 08:32 — forked from trcio/LineGraph.cs
A really nice looking line graph to present your data
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Drawing.Drawing2D;
using System.Globalization;
using System.Linq;
using System.Windows.Forms;
public sealed class LineGraph : Control
{
@PlusHaze
PlusHaze / eSock.cs
Last active August 29, 2015 14:24 — forked from pigeonhands/eSock.cs
using System;
using System.Collections.Generic;
using System.IO;
using System.IO.Compression;
using System.Linq;
using System.Net;
using System.Net.Sockets;
using System.Runtime.Serialization.Formatters.Binary;
using System.Text;
using System.Threading.Tasks;
@PlusHaze
PlusHaze / JsonUtil.cs
Last active November 6, 2016 07:02 — forked from trcio/JsonUtil.cs
using System.Runtime.Serialization.Json;
using System.IO;
using System.Text;
public static class JsonUtil
{
/// <summary>
/// Serializes an object to the respectable JSON string.
/// </summary>
public static string Serialize<T>(T o)