Details
-
AboutSenior Full Stack at Firemaps
-
SkillsPython, SQL, Nextjs, Go
-
LocationCharlotte, NC
-
Github
Joined devRant on 7/10/2016
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
-
Anyone have tips/tricks for encouraging teammates to comment on an RFC? It's work enough to write them, would be handy not to have to track people down for something more in depth than an "LGTM".
-
So I assume that, really, only one dev per workplace can be on this app... otherwise things might get awkward.1
-
My FAVORITE bugs are those in someone ELSE's code that MY code depends on. Like an API that won't respond correctly when I FOLLOW THE DOCUMENTATION EXACTLY. 😐1
-
Wrote a python script and debugged in about 3 hours. Script saves a colleague 20 hours per week. #resumeworthy9
-
while not all(pokedex):
for k, v in pokedex.iteritems():
if v:
feelings = get_satisfaction()
else:
pokemon = find_em()
try:
new = catch_em(pokemon)
except PokemonEscaped:
continue
else:
pokedex[k] = new
feelings = get_satisfaction() -
I was discussing scope and budget with a potential client for a side project. It involved a good bit of complex postgresql and subsequent aggregations and creation of reports. He was hiring because the last guy's work was so poorly documented, they couldn't verify its accuracy.
Me: "So, what are your thoughts on a budget?"
Him: "We were thinking something like $15/hour."
Me: "Um...ok. If I can ask, where did you get that number?"
Him: "That's what we paid the last guy."
😑😑😑😑😑😑4 -
What's everyone's preferred music player and/or playlist generator? I use Google Play Music now, and am fairly pleased. Any other recommendations?4
-
Handy postgres script for those on teams with folks who maybe don't write the best queries...
`SELECT pg_terminate_backend(pid) FROM pg_catalog.pg_stat_activity WHERE query_start < now() - interval '3 minutes'`
Pew pew... -
For you Jira users, as song:
(to the tune of "Everything is Awesome" from The Lego Movie)
"Everything's P-Zerrrooooooo!!!
Everything is due day before yesterdaaayyyy!!" -
Pretty simple oversight in a SQL pull led someone to run about 3,300 background checks that had already been run. Somebody told me we spend $25 per check, which would have totaled around $84,000. It ended up being much less, but for a good 40 minutes I assumed I'd be looking for other work the next day.1