Find me @ www.checho.co
Former anthropologist who swapped Indiana Jones dreams for data science reality at 40+.
I explain complex stuff with dad jokes, zero jargon, and my teenage self watching in horror.
No 'synergy' allowed 🤝
Full story: tinyurl.com/4t5bazz4
#CareerPivot #DataScience
The cracks and repairs become your character, your wisdom, your art.
The Japanese call it Kintsugi. Life calls it growth.
#Stoicism #MentalHealth #PersonalGrowth
The cracks and repairs become your character, your wisdom, your art.
The Japanese call it Kintsugi. Life calls it growth.
#Stoicism #MentalHealth #PersonalGrowth
Bad:
file = open('data.txt') data = file.read()
# Forget to close? Memory leak!
Better:
with open('data.txt') as file: data = file.read()
# Auto-closes even if code breaks!
The 'with' statement is your safety net.
#Python #CodeNewbie
Bad:
file = open('data.txt') data = file.read()
# Forget to close? Memory leak!
Better:
with open('data.txt') as file: data = file.read()
# Auto-closes even if code breaks!
The 'with' statement is your safety net.
#Python #CodeNewbie
The secret isn't in their code—it's in their questions.
Ask better questions before touching data, and you'll solve better problems after.
Your SQL is fine. Your curiosity is your superpower.
#DataScience #CareerGrowth
The secret isn't in their code—it's in their questions.
Ask better questions before touching data, and you'll solve better problems after.
Your SQL is fine. Your curiosity is your superpower.
#DataScience #CareerGrowth
It just throws curveballs and watches how you swing.
True power isn't in controlling the pitch—it's in adapting your stance.
Keep your grip loose. Stay ready. Every wild throw is teaching you something.
#Stoicism #PersonalGrowth
It just throws curveballs and watches how you swing.
True power isn't in controlling the pitch—it's in adapting your stance.
Keep your grip loose. Stay ready. Every wild throw is teaching you something.
#Stoicism #PersonalGrowth
Launch during budget season: You're strategic
Launch during crisis: You're reactive
Launch during success: You're enhancing
Timing isn't just timing. It's strategy
#DataScience #Analytics #Leadership
Launch during budget season: You're strategic
Launch during crisis: You're reactive
Launch during success: You're enhancing
Timing isn't just timing. It's strategy
#DataScience #Analytics #Leadership
They're more like sticky notes pointing to stuff in memory.
That's why:
x = [1,2]
y = x # Just adds another sticky note
y.append(3) # Changes what both x and y point to
Want separate lists? Use y = x.copy()
#Python #CodeNewbie
They're more like sticky notes pointing to stuff in memory.
That's why:
x = [1,2]
y = x # Just adds another sticky note
y.append(3) # Changes what both x and y point to
Want separate lists? Use y = x.copy()
#Python #CodeNewbie
It's in that split second when you catch yourself about to react, pause, and choose differently.
That microscopic gap between trigger and response? That's where you become who you choose to be.
#Stoicism #MentalHealth
It's in that split second when you catch yourself about to react, pause, and choose differently.
That microscopic gap between trigger and response? That's where you become who you choose to be.
#Stoicism #MentalHealth
The fancy way:
list(map(lambda x: x*2, [1,2,3]))
The readable way:
[x * 2 for x in [1,2,3]]
Both give you [2,4,6]. But the second one you'll actually understand next week.
#Python #CodeNewbie #100DaysOfCode
The fancy way:
list(map(lambda x: x*2, [1,2,3]))
The readable way:
[x * 2 for x in [1,2,3]]
Both give you [2,4,6]. But the second one you'll actually understand next week.
#Python #CodeNewbie #100DaysOfCode
Start with lists, functions, and loops. Get comfortable there.
Classes are like level 2 of the game. You'll know when you're ready- when basic tools feel too limiting.
No rush. Learn at your pace.
#Python #CodeNewbie
Start with lists, functions, and loops. Get comfortable there.
Classes are like level 2 of the game. You'll know when you're ready- when basic tools feel too limiting.
No rush. Learn at your pace.
#Python #CodeNewbie
They're just carbon that refused to crack under pressure. Chose to transform instead of break.
Your struggles aren't breaking you - they're revealing your brilliance.
Keep pressing on. That's where the magic happens.
#Stoicism #PersonalGrowth
They're just carbon that refused to crack under pressure. Chose to transform instead of break.
Your struggles aren't breaking you - they're revealing your brilliance.
Keep pressing on. That's where the magic happens.
#Stoicism #PersonalGrowth
1/ If you're a data analyst being treated like a ticket machine, it's time for a radical change.
Here's how to transform from "report factory" to "strategic advisor" 👇
#DataAnalytics
1/ If you're a data analyst being treated like a ticket machine, it's time for a radical change.
Here's how to transform from "report factory" to "strategic advisor" 👇
#DataAnalytics
Bear with me for a second while I try to explain.
Bear with me for a second while I try to explain.
It's 'I know exactly what the business wants.'
90% of project failures happen in translation, not execution.
Ask questions until they're annoyed, then ask three more. Better awkward now than sorry later.
#DataScience
It's 'I know exactly what the business wants.'
90% of project failures happen in translation, not execution.
Ask questions until they're annoyed, then ask three more. Better awkward now than sorry later.
#DataScience
"Quick fixes" and "creative solutions" might look tasty, but they poison the whole dish.
Ethics isn't a garnish—it's the main ingredient.
#DataScience #Ethics #Analytics
"Quick fixes" and "creative solutions" might look tasty, but they poison the whole dish.
Ethics isn't a garnish—it's the main ingredient.
#DataScience #Ethics #Analytics
Beginner way: fruits = ['apple', 'banana'] for i in range(len(fruits)): print(f"#{i}: {fruits[i]}")
Pro way: for i, fruit in enumerate(fruits): print(f"#{i}: {fruit}")
Pro tip: Want to start at 1? enumerate(fruits, start=1)
#Python #CodeNewbie
Beginner way: fruits = ['apple', 'banana'] for i in range(len(fruits)): print(f"#{i}: {fruits[i]}")
Pro way: for i, fruit in enumerate(fruits): print(f"#{i}: {fruit}")
Pro tip: Want to start at 1? enumerate(fruits, start=1)
#Python #CodeNewbie
Those small victories - getting up, showing up, not giving up - they're not just steps.
They're the journey. And you're already walking it.
#Stoicism #MentalHealth #PersonalGrowth
Those small victories - getting up, showing up, not giving up - they're not just steps.
They're the journey. And you're already walking it.
#Stoicism #MentalHealth #PersonalGrowth
1/6 Just acquired a fresh batch of SSNs *adjusts evil monocle.
Did you know the first 3 digits can tell me if you're from a big state, a small state, or even if you're an immigrant with enumeration-at-entry?
Data villains love patterns!
1/6 Just acquired a fresh batch of SSNs *adjusts evil monocle.
Did you know the first 3 digits can tell me if you're from a big state, a small state, or even if you're an immigrant with enumeration-at-entry?
Data villains love patterns!
They pick what supports their view, ignore what doesn't, then ask for seconds of the good stuff.
Your job isn't to be the chef - it's to be the nutritionist. Guide them toward a balanced diet of insights.
#DataScience #Analytics
They pick what supports their view, ignore what doesn't, then ask for seconds of the good stuff.
Your job isn't to be the chef - it's to be the nutritionist. Guide them toward a balanced diet of insights.
#DataScience #Analytics
It's the small compromises we justify. The truths we ignore. The wrongs we excuse because they're convenient.
Heroes aren't born in epic battles, but in tiny choices made when no one's watching.
#Stoicism #MentalHealth
It's the small compromises we justify. The truths we ignore. The wrongs we excuse because they're convenient.
Heroes aren't born in epic battles, but in tiny choices made when no one's watching.
#Stoicism #MentalHealth
When data falls into wrong hands, people suffer: survivors exposed, activists targeted, communities exploited.
Privacy is a human right.
#DataPrivacy #Privacy #HumanRights
When data falls into wrong hands, people suffer: survivors exposed, activists targeted, communities exploited.
Privacy is a human right.
#DataPrivacy #Privacy #HumanRights
That's how your 2-day dashboard becomes a 2-month enterprise solution.
Learn to say: "Happy to help! Let's schedule a quick chat to scope this properly and adjust timelines."
Boundaries save careers.
#DataScience #Analytics
That's how your 2-day dashboard becomes a 2-month enterprise solution.
Learn to say: "Happy to help! Let's schedule a quick chat to scope this properly and adjust timelines."
Boundaries save careers.
#DataScience #Analytics
• Knows what you're thinking
• • Finishes your sentences
• Makes you look good with minimal effort
Let's explore why they're the future of string formatting.
#Python #CodeNewbie
• Knows what you're thinking
• • Finishes your sentences
• Makes you look good with minimal effort
Let's explore why they're the future of string formatting.
#Python #CodeNewbie
Plot twist: Success isn't about being in the right place at the right time.
It's about being in so many places that time runs out of wrong ones.
#Stoicism #MentalHealth #PersonalGrowth
Plot twist: Success isn't about being in the right place at the right time.
It's about being in so many places that time runs out of wrong ones.
#Stoicism #MentalHealth #PersonalGrowth
If you keep moving forward, you'll reach the exit eventually.
That's not optimism. That's reality.
Trust the path. Keep walking.
#Stoicism #MentalHealth #PersonalGrowth
If you keep moving forward, you'll reach the exit eventually.
That's not optimism. That's reality.
Trust the path. Keep walking.
#Stoicism #MentalHealth #PersonalGrowth