Skip to content

Instantly share code, notes, and snippets.

@jtheisen
jtheisen / .block
Created December 5, 2019 11:56 — forked from pbeshai/.block
Animate 100,000 points with regl - III
license: mit
height: 720
border: no
@jtheisen
jtheisen / Oauth.cs
Created June 18, 2018 11:25 — forked from DeskSupport/Oauth.cs
csharp Oauth and API Example
// TwitPic/OAuth.cs
//
// Code to do OAuth stuff, in support of a cropper plugin that sends
// a screen snap to TwitPic.com.
//
// There's one main class: OAuth.Manager. It handles interaction with the OAuth-
// enabled service, for requesting temporary tokens (aka request tokens), as well
// as access tokens. It also provides a convenient way to construct an oauth
// Authorization header for use in any Http transaction.
//
@jtheisen
jtheisen / UDPer.cs
Created June 3, 2018 08:36 — forked from zmilojko/UDPer.cs
C# sends and receives UDP broadcasts
using System;
using System.Net.Sockets;
using System.Net;
using System.Text;
using System.Threading;
namespace UDPer
{
class UDPer
{