Friday, September 12, 2025
Analytics Break Coding Education STEM

Selected movies: searchable, sort-able for utility and fun

Today, I present a web application with a list of selected movies (about 3,000 titles) I extracted using developer APIs from IMDB and OMDB databases using my Python app. After extraction in the app, I reshape the data according to my needs and then export programmatically to XLSX format (for Excel). Which is then wrapped […]

Read More
Coding Education STEM

Phone number formatting tips (Excel and Python)

For most people working with data for a significant amount of time, formatting raw data from different sources are both a reality and a pain. Today, I show different ways to format an un-formatted string that contains phone numbers using Python, and Excel. Our task is to format it (either for human-reporting, or consumption by […]

Read More
Coding Education STEM

Sample Size and Margin of Errors. Everything you need to know and ++

I’m not a statistician by profession or training. However, I find it fascinating with even the basics under my belt and find plethora of statistic’s practical usage. Without it, we’re really ignorant. With it, we’re equipped but not always best educated either. I heard the phrase again and again, “Correlation does not equal causation!” and […]

Read More
Coding Education STEM

Running code from within another code (Python)

Most of us who have done any programming know that virtually all languages allow you to execute another program from within a program. For example, you start your program, which may start another process (via calling Execute or the like) that’s a self-contained program by itself, resulting in another process or spawn another thread as […]

Read More
Coding Education STEM

Let’s Roll! — 2 dice…and find the probability and chart it (Python)

What numbers will you get if you roll 2 dice? How about we find out by writing a program?  Can we then chart the results over as many rolls as we want? And then interactively play with the chart?  Asking a lot! But yes, I will do ALL of the above here. Better yet, why […]

Read More
Back To Top