@BenjaminWolfe@data-folks.masto.host banner
@BenjaminWolfe@data-folks.masto.host

@BenjaminWolfe

#insurtech consultant researcher & community advocate—& inveterate data nerd. Chief Data Officer @ https://t.co/3Jux7tba0I. #RStats lover, #Python enthusiast, writer.

Austin, TX Katılım Şubat 2009
907 Takip Edilen955 Takipçiler
Sabitlenmiş Tweet
@BenjaminWolfe@data-folks.masto.host
@[email protected]@BenjaminWolfe·
I'm finally ready to share the new chapter of my career! 🎉 I joined a small business, finsure.us, as an #insurtech consultant, researcher & community advocate. I'm also fortunate to be Finsure's Chief Data Officer, so it's not like I'm not doing data work! 🧵1/10
English
4
0
37
0
@BenjaminWolfe@data-folks.masto.host
@[email protected]@BenjaminWolfe·
@tanya_shapiro Can I just say I'm almost never on this app nowadays; it's hard to get over what the new overlord has done with it. But your content is consistently interesting and quality enough to have me actually tap those notifications!
English
0
0
1
233
@BenjaminWolfe@data-folks.masto.host
@[email protected]@BenjaminWolfe·
If you see this - quote tweet with the last picture of your pet - no cheating (Why not.)
@BenjaminWolfe@data-folks.masto.host tweet media
English
0
0
0
560
@BenjaminWolfe@data-folks.masto.host
@[email protected]@BenjaminWolfe·
@CMastication I often say rubber-ducking doesn't quite work with an actual rubber duck. For me, the kind of minimum is that I believe I'm talking to a mind capable of understanding my problem. And I mean, if you listen to like EVERY song about Jesus…
GIF
English
1
0
1
93
@BenjaminWolfe@data-folks.masto.host
@[email protected]@BenjaminWolfe·
Debugging tip: Go for a walk 🐕‍🦺🚶 I pushed a partial commit, copy-pasted the stack trace to my email, and walked off with my dog and my phone. (thx @github app…) Found like 2 bugs and 3 more edge cases. Sometimes what needs a reboot is your brain. 🧠
English
0
2
5
280
@BenjaminWolfe@data-folks.masto.host
@[email protected]@BenjaminWolfe·
@charliejhadley Also you totally didn't come across passive aggressive! I can't even think how to interpret it that way. 😅 I was just imagining how ChatGPT might answer it.
English
0
0
0
33
@BenjaminWolfe@data-folks.masto.host
@[email protected]@BenjaminWolfe·
Been writing a bunch of code without logging. Oops. No problem for ChatGPT! "Can you write a bunch of print statements throughout this code so I can see what's happening when it runs?" ✨magic✨
English
0
0
3
295
@BenjaminWolfe@data-folks.masto.host
@[email protected]@BenjaminWolfe·
unsolicited VSCode tip… I'm finding "split right" is a *really* useful feature. (You right-click on a tab and click "split right" to see the same file you're looking at in a second pane.) You can be working in line 1000 of a long file and glance at line 7 without scrolling.🤔
English
0
0
2
113
@BenjaminWolfe@data-folks.masto.host
@[email protected]@BenjaminWolfe·
(?<=xyz) isn't a capture group. It means the uppercase letter you're capturing should be preceded by xyz. $1 in the "replace" means use that capture group. If you had two you might use $2, etc. \l means lowercase it! (That's an L.) _ means add an underscore. :) 3/3
English
0
0
0
135
@BenjaminWolfe@data-folks.masto.host
@[email protected]@BenjaminWolfe·
If you're not a regex superfan + could use a walk-through… [a-z] is a character class + means any lowercase letter. [A-Z] means any uppercase letter. Anything followed by a plus means that thing one or more times. ([A-Z]) is a capture group. You can refer to it later. /2
English
1
0
0
145
@BenjaminWolfe@data-folks.masto.host
@[email protected]@BenjaminWolfe·
Did you know VSCode can not only do regex replacements, but change case in the process? I had a bunch of two-word camelCase variables and had to change them to snake_case. They always came after a certain string. Find: (?<=a certain string [a-z]+)([A-Z]) Replace: _\l$1 /1
English
1
1
6
1.7K
@BenjaminWolfe@data-folks.masto.host
@[email protected]@BenjaminWolfe·
I suppose more precisely it usually reflects the biases of the data it's trained on. Either way, I suspect your average consumer doesn't think about bias in AI much at all.
English
0
0
0
73