Skip to content

Instantly share code, notes, and snippets.

View Windsdon's full-sized avatar

Winds Windsdon

View GitHub Profile

Keybase proof

I hereby claim:

  • I am windsdon on github.
  • I am windsdon (https://keybase.io/windsdon) on keybase.
  • I have a public key ASA-J1T2JQoQvIGVwUZ8duIEC4JfHxAz4lpSNdvnfz0_Jwo

To claim this, I am signing this object:

var http = require("http");
var https = require("https");
var fs = require('fs');
var config = require('./config.json');
var value;
@Windsdon
Windsdon / README.md
Last active January 2, 2016 21:21
/wintercomic/ bruteforce; Run with "node test".
@Windsdon
Windsdon / Ants.md
Created October 24, 2015 19:32
Ants

Ants is a Langton's ant C++ implementation using SFML.

@Windsdon
Windsdon / def.txt
Created July 15, 2015 13:44
Gravity graph. Requires SFML.
15 0.1 100
0 1
1 2
2 3
3 4
4 5
5 2
5 6
6 7
7 8
@Windsdon
Windsdon / gravity.cpp
Created June 15, 2015 10:22
GravityGraph
#include <iostream>
#include <SFML/Graphics.hpp>
#include <vector>
#include <set>
#include <cmath>
#include <cstdlib>
#include <ctime>
#include <SFML/System.hpp>
#include <fstream>
#include <sstream>