Skip to content

Instantly share code, notes, and snippets.

View Theoistic's full-sized avatar

Theodor Solbjorg Theoistic

View GitHub Profile
@PurwantoGZ
PurwantoGZ / Fann.cs
Created February 7, 2017 07:17
Fast Artificial Neural Network C#
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FANN
{
public class FANN
{
@vtols
vtols / BrainFuck.cs
Created May 4, 2013 09:07
BrainFuck compiler for .NET
using System;
using System.Collections.Generic;
using System.IO;
using System.Text;
using System.Reflection;
using System.Reflection.Emit;
namespace Translator
{
@socrateslee
socrateslee / SimpleDTW.cs
Created March 3, 2012 14:06
Simple DTW(Dynamic Time Wrapping) in C#
//http://data-matters.blogspot.com/2008/07/simple-implementation-of-dtwdynamic.html
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Collections;
namespace DTW
{