Skip to content

Instantly share code, notes, and snippets.

View retep998's full-sized avatar
🐇
Very fluffy

Peter Atashian retep998

🐇
Very fluffy
  • Massachusetts, USA
View GitHub Profile
@calzoneman
calzoneman / server.js
Last active January 1, 2016 15:39
Personal IRC bridge for berrytube
/**
* NOTE: BRIDGE DEVELOPMENT HAS MOVED TO https://github.com/berrytube/bt-irc-bridge.
* THIS GIST IS NO LONGER BEING ACTIVELY MAINTAINED
*/
/**
* ### cyzon's berrytube/irc bridge ###
*
* Installation
* - Requires nodejs (http://nodejs.org). Available for Windows/OSX/Linux and source code.
@retep998
retep998 / Euler.cpp
Last active December 11, 2015 21:28
Project Euler source code
#include <iostream>
#include <cmath>
#include <cstdint>
#include <memory>
#include <vector>
#include <chrono>
#include <thread>
using namespace std;
using namespace std::chrono;
using namespace std::this_thread;