Skip to content

Instantly share code, notes, and snippets.

#include <iostream>
#include <functional>
using namespace std;
using namespace std::placeholders;
int add(int a, int b) {
return a+b;
}
#include <iostream>
#include <memory>
using namespace std;
class Foo {
public:
Foo(int a, int b) {
this->a = a;
this->b = b;
@lucidguppy
lucidguppy / local_point_crawl.py
Created March 27, 2021 02:49
local point crawl scrap
import csv
import os
import random
from itertools import chain
from graphviz import Graph
def local_point_crawl(points, point_count, connections, connection_count):
dot = Graph(comment='Area Map')