Skip to content

Instantly share code, notes, and snippets.

View bigjonroberts's full-sized avatar

Jon Roberts bigjonroberts

  • San Antonio, TX
  • 02:48 (UTC -05:00)
View GitHub Profile
@bigjonroberts
bigjonroberts / Crc64.cs
Created January 24, 2021 20:57 — forked from maxpert/Crc64.cs
CRC64 implementation C#
public class Crc64
{
private static readonly ulong[] Table = {
0x0000000000000000, 0x7ad870c830358979,
0xf5b0e190606b12f2, 0x8f689158505e9b8b,
0xc038e5739841b68f, 0xbae095bba8743ff6,
0x358804e3f82aa47d, 0x4f50742bc81f2d04,
0xab28ecb46814fe75, 0xd1f09c7c5821770c,
0x5e980d24087fec87, 0x24407dec384a65fe,
0x6b1009c7f05548fa, 0x11c8790fc060c183,
@bigjonroberts
bigjonroberts / 0_reuse_code.js
Created March 7, 2016 12:31
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