Skip to content

Instantly share code, notes, and snippets.

View ThreePointSquare's full-sized avatar
💭
I may be slow to respond.

ThreePointSquare

💭
I may be slow to respond.
View GitHub Profile
@ThreePointSquare
ThreePointSquare / kochsnowflake.html
Created December 27, 2020 00:16 — forked from mcjohnalds/kochsnowflake.html
A Koch snowflake. Uses WebGL for no particular reason. Doesn't use any trig b.c trig is lame.
<script id="shader-vs" type="x-shader/x-vertex">
attribute vec2 aPosition;
void main(void) {
gl_Position = vec4(aPosition, 0.0, 1.0);
}
</script>
<script id="shader-fs" type="x-shader/x-fragment">
void main(void) {
@ThreePointSquare
ThreePointSquare / Big List of Real Estate APIs.md
Created November 1, 2020 04:52 — forked from patpohler/Big List of Real Estate APIs.md
Evolving list of Real Estate APIs by Category

Big List of Real Estate APIs

Listings / Property Data

####Rets Rabbit http://www.retsrabbit.com

Rets Rabbit removes the nightmare of importing thousands of real estate listings and photos from RETS or ListHub and gives you an easy to use import and Web API server so you can focus on building your listing search powered website or app.

@ThreePointSquare
ThreePointSquare / index.html
Created August 31, 2020 21:54
Eurion PDF create PDF with Eurion watermarks // source https://jsbin.com/sepitalenu
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Eurion PDF</title>
<meta name="description" content="create PDF with Eurion watermarks">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jspdf/1.5.3/jspdf.debug.js" integrity="sha384-NaWTHo/8YCBYJ59830LTz/P4aQZK1sS0SneOgAvhsIl3zBu8r9RevNg5lHCHAuQ/" crossorigin="anonymous"></script>
<style id="jsbin-css">
# collection of Dynamo Python functions.
# credits: archi-lab, MEPover, Bimorph, Clockwork, Rhythm and many more
@ThreePointSquare
ThreePointSquare / gist:f591025208ecfce08b255eb8945b5037
Created January 21, 2020 00:29 — forked from bengolder/gist:1054969
Grasshopper Drain Boid Script
import Rhino
class DrainBoid(object):
def __init__(self, point3d, surface, stepsize=0.5, maxsteps=None, tolerance=0.001):
self.start = point3d
self.pos = self.start
result, self.u, self.v = surface.ClosestPoint(self.pos)
self.surface = surface
self.stepsize = stepsize
self.points = [self.start]
@ThreePointSquare
ThreePointSquare / info-to-collect.json
Created February 27, 2019 20:31 — forked from rikkiloades/info-to-collect.json
Getting system info (CPU, GPU, Memory and OS)
{
"cpu": {
"model": "Intel Core i7",
"clockspeed": "2.8 Ghz",
"processors": 1,
"cores": 2
},
"memory": "16GB",
"gpu": {
"model": "Intel HD 3000",