Skip to content

Instantly share code, notes, and snippets.

View RussellHaley's full-sized avatar

Russell Haley RussellHaley

  • Starfish Medical
  • Victoria BC
View GitHub Profile
@RussellHaley
RussellHaley / Program.cs
Created November 4, 2018 05:41
LiteDB Test of 16000 records
using System;
using LiteDB;
using System.Collections.Generic;
using System.Text;
namespace LiteDBTesting
{
class Company
{
public int Id { get; set; }
public string CompanyName { get; set; }
@RussellHaley
RussellHaley / gist:86fc2a31dc7ac9103bde3080f22ff5ef
Created July 21, 2016 21:24
Lua Table With "holes" example
local empty_func = function() end
--( Implement yourself:
local assert_table = empty_func
local is_number = function() return true end
local is_integer = function() return true end
--)
local get_max_idx =
function(t)
assert_table(t)