David Colarusso

@Colarusso
3.2K Followers
1.6K Following
4.4K Posts

Co-Director of Suffolk University Law School's Legal Innovation & Technology (LIT) Lab—@SuffolkLITLab. Attorney & science educator by training and practice. Creator of @lolscotus & @icymi_law. Data scientist, craftsman, and writer by experience. See eponymous website for more. He/him. No manels!

#AccessToJustice (#a2j) work: https://papers.ssrn.com/sol3/papers.cfm?abstract_id=3911381 (#LegalTech) & https://spot.suffolklitlab.org (#LegalTech + #AI)

Teaching ⚖️+🤖https://www.CodingTheLaw.org/Fall_2022/level/1/
Personal website 🌎http://www.DavidColarusso.com
Google Scholar 🔭https://scholar.google.com/citations?hl=en&user=ovuch2YAAAAJ
I turned right instead of left on my lunchtime walk only to discover Boston is being attacked by Kaiju. It’s not AI. It’s public art! https://www.winteractive.org
Always read the plaque.
I turned right instead of left on my lunchtime walk only to discover Boston is being attacked by Kaiju. It’s not AI. It’s public art! https://www.winteractive.org
Sometimes I like to listen to YouTube videos at 3x speed in the background while I work, and if you make it 1hr and 2min in... HEAR! HEAR! https://www.youtube.com/watch?v=KtQ9nt2ZeGM&t=3761s
You are being misled about renewable energy technology.

YouTube
I was feeling down, major case of the Sundays, plus… you know, everything. Well, today is my turn to pick the family’s Sunday matinee, and I’ve decided what will make me feel better is watching Indy punch some Nazis. This will be the kids’ first viewing.

Tonight at dinner, the 12yo wanted to know about irrational numbers. So, I got to bring up the Pythagoreans and how a god killed Hippasus for the discovery.¹ Though I'd always heard it told he was sentenced to death. ;)

¹ https://en.wikipedia.org/wiki/Hippasus

Hippasus - Wikipedia

I have been made aware of today’s FOXTROT. 🥗🗡️
Reading the paper I couldn’t help but chuckle when reading This day in history. I was like, “Wow, that’s a deep cut.” Et tu Boston Globe?

JavaScript to estimate π using my favorite method, comparing random dots that fall inside and outside of a circle:

function est_pi(dots) {
let inside = 0;
for (let i = 0; i < dots; i++) {
let x = Math.random()*2-1;
let y = Math.random()*2-1;
if (x*x + y*y <= 1) {
inside++;
}
}
return 4 * (inside/dots);
}

console.log("π ≈ "+est_pi(100000))