Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am hgoldwire on github.
  • I am hgoldwire (https://keybase.io/hgoldwire) on keybase.
  • I have a public key ASBDX9bZHXZ3IjlY_BIJXRZCIJJm_81g8VfSNHfS1PZG6go

To claim this, I am signing this object:

@hgoldwire
hgoldwire / main.cpp
Created March 22, 2017 20:45
This hangs after 10 seconds
#include "Particle.h"
class UdpThing : LogHandler
{
UDP Udp;
public:
UdpThing() {
LogManager::instance()->addHandler(this);
};
@hgoldwire
hgoldwire / main.cpp
Created March 22, 2017 20:45
This Works
#include "Particle.h"
class UdpThing
{
UDP Udp;
public:
UdpThing() {};
void ready()