排序
Java Variables and Data Types
Java Variables and Data Types, Introduction to Java (3 Part Series) 1 Introduction to Java: for Beginners 2 Java Basic Syntax 3 Java Variables and Data Types Basically, a program i...
How My Friend Inspired Me to Reignite My Passion for AI Through Lifelong Learning
How My Friend Inspired Me to Reignite My Passion for AI Through Lifelong Learning, Recently, I had the pleasure of reconnecting with a former classmate. It all started with reintro...
Exploring Model Relationships in Flask
Exploring Model Relationships in Flask,Coding relationships between classes can be challenging at first! It sounds like a bunch of words thrown together - this thing knows this thi...
Function Decorators in Python
Function Decorators in Python,Writing dry code is important. DRY is a handy acronym meaning Don't Repeat Yourself. Dry code is more legible and easily understood by others, making ...
Decorator Getters and Setters in Python
Decorator Getters and Setters in Python,One type of decorators are property getters and setters. These decorators allow for controlled access to variables in class instances. Prope...
My software engineering journey
My software engineering journey, INTRODUCTION Dear readers, my name is Doreen Nangira. I am a software engineer and a data lover. Today I am going to talk about my software enginee...
Women suffrage dates (suffragettes) celebration w/ data ️
Women suffrage dates (suffragettes) celebration w/ data ️, Women's empowerment (4 Part Series) 1 Last week : abortion in the medias 2 UN Goals : Education & Gender Equity ️ 3...
Navigating challenges on my tech journey
Navigating challenges on my tech journey,In 2017, following the completion of my secondary education, I stood at a crossroads. As an aspiring degree student, I was determined to pu...
My Phase-3 Experience
My Phase-3 Experience,My honest opinion of Phase-3! This was by far the worst phase, the lack of videos being the BIGGEST disappointment throughout this entire experience. We we're...
6 Tips for Being an Effective Member of a Winning Hackathon Team
6 Tips for Being an Effective Member of a Winning Hackathon Team,Hackathons are intensive events where teams come together to solve complex problems under time pressure. As a hacka...
How to Perform Exploratory Data Analysis with Python
How to Perform Exploratory Data Analysis with Python, Introduction Exploratory data analysis (EDA) is an essential step in the data science process which involves use of both stati...
Binary Search Technique
Binary Search Technique,When to use: Used for searching for an element in a sorted list or array. Reduces the time complexity from O(n) to O(log n). Conditions: Input must be sorte...