I recently made a 10 foot sailboat and took it on a fifty-mile adventure in the Salish Sea. I can still feel the way the wind pushed the boat over the water. I kept imagining the way that our progress was the sum of the vectors of wind, current, and gravity. #tinkeringnotesfollow
Make it easy for users to export polygons. My municipal GIS didn't for some reason so I had to guess by moving the mouse around and manually type the coordinates into Marble.
@carbonwriter🧜profilefollow(\ (\
( • •)
━∪∪━━━━
Full of mostly true stories, I occasionally write them down. Habit of talking to anyone. Bipolar. Author.wrote:
mandelbrot #execnotesfollowfor y inrange(10):
s=''for x inrange(25):
a=[]
for q inrange(2):
z=c=x/25*3-2+1j*((y*2+q)/10-1);n=40while n andabs(z)<2:z=z*z+c;n-=1
a+=[n<5]
s+=" ▀▄█"[a[0]+2*a[1]]
print(s)
This SM is like a subreddit feed, except you also get a personalized feed along with 'hot' and 'latest' for people you follow. Or maybe it's modelled after twitter? Never used it so wouldnt know
Same. I really wish this platform would last a long time... I've seen so many cool initiatives get posted on HN, only to be taken offline a few months later.
Huge refactor today, moved from sync SQLite to Worker based, touched 88 files, pre-#AInotesfollow it would have taken a week or so, finished now in ~1:30h. And I wouldn’t have the confidence I have now that it went correct. It went well, though a bug or two might surface, we’ll see.
SQLite is embedded in the main thread same as the HTTP server. I noticed some requests dropping and because the queries have become more complex I figured it has to do with SQLite blocking for too much time. Moving it to a Worker makes the DB asynchronous and bypass this problem.