Skip to content

Instantly share code, notes, and snippets.

@kevincdurand1
kevincdurand1 / BuildNeuralNetworkDemo.cs
Created April 18, 2019 19:18 — forked from atifaziz/BuildNeuralNetworkDemo.cs
Neural Network Demo with C# by James McCaffrey, MSR and Build 2013 versions
// http://channel9.msdn.com/Events/Build/2013/2-401
// http://www.quaetrix.com/Build2013.html
using System;
// For 2013 Microsoft Build Conference attendees
// June 25-28, 2013
// San Francisco, CA
//
// This is source for a C# console application.
@kevincdurand1
kevincdurand1 / install-proto.sh
Created May 24, 2016 19:00 — forked from samklr/install-proto.sh
Install Protobuf debian ...
#! /bin/bash
wget https://github.com/google/protobuf/releases/download/v2.6.1/protobuf-2.6.1.tar.gz
tar xzf protobuf-2.6.1.tar.gz
cd protobuf-2.6.1
sudo apt-get update
sudo apt-get install build-essential
sudo ./configure
sudo make
sudo make check
sudo make install