Skip to content

Geeky Codes

Programming, AI, Machine Learning & Software Development Tutorials

  • Home
  • Python
  • Machine Learning
  • Data Science
  • Interview Questions
  • Data Structures and Algorithms
  • Interview
  • Machine Learning From Scratch
Top Tags
  • Python
  • Programming
  • Machine Learning
  • Algorithm
  • Tutorial
  • Problem Solving
  • DataScience

Latest Post

Before Transformers: Why RNNs Could Never Scale to Modern AI- Part 1 20 Data Engineering Interview Questions You Should Know for Databricks & PySpark Roles Stop Paying for Idle Servers: How I Built a Flask ML App That Costs Almost Nothing on AWS Why Your FastAPI Event Loop Freezes Under Load: The Hidden Battle Between AsyncIO and Scikit-Learn Longest Consecutive Sequence in Python: O(n) Hash Set Solution Explained
Machine Learning

Before Transformers: Why RNNs Could Never Scale to Modern AI- Part 1

July 28, 2026 Geeky Codes No Comments
Data Engineering

20 Data Engineering Interview Questions You Should Know for Databricks & PySpark Roles

July 27, 2026 Geeky Codes No Comments
AWS Tutorials

Stop Paying for Idle Servers: How I Built a Flask ML App That Costs Almost Nothing on AWS

July 27, 2026 Geeky Codes No Comments
Machine Learning

Why Your FastAPI Event Loop Freezes Under Load: The Hidden Battle Between AsyncIO and Scikit-Learn

July 16, 2026 Geeky Codes No Comments
Python

Longest Consecutive Sequence in Python: O(n) Hash Set Solution Explained

June 25, 2026 Geeky Codes No Comments
  • Latest
  • Popular
  • Trending
Machine Learning
Before Transformers: Why RNNs Could Never Scale to Modern AI- Part 1
Data Engineering
20 Data Engineering Interview Questions You Should Know for Databricks & PySpark Roles
AWS Tutorials
Stop Paying for Idle Servers: How I Built a Flask ML App That Costs Almost Nothing on AWS
Machine Learning
Why Your FastAPI Event Loop Freezes Under Load: The Hidden Battle Between AsyncIO and Scikit-Learn
Blog
Install and Secure MongoDB 6.0 on CentOS 7
Blog
Installing the mongo-cxx-driver step by step
BSON Library C C++
Installing the Mongodb-C Driver (libmongoc) and BSON library (libbson)
C C++
CRUD Operation in Mongo-cxx
Machine Learning
Before Transformers: Why RNNs Could Never Scale to Modern AI- Part 1
Data Engineering
20 Data Engineering Interview Questions You Should Know for Databricks & PySpark Roles
AWS Tutorials
Stop Paying for Idle Servers: How I Built a Flask ML App That Costs Almost Nothing on AWS
Machine Learning
Why Your FastAPI Event Loop Freezes Under Load: The Hidden Battle Between AsyncIO and Scikit-Learn
Data Science Decision Tree Machine Learning

Learning Curves | Machine Learning from Scratch

December 27, 2023 Geeky Codes No Comments

Till now, We have read about Gradient Descent,Min-Batch Gradient Descent,Stochastic Gradient Descent and other type of Gradient Descents and Polynomial Regression. In this post we will learn about Learning Curves…

Data Science Machine Learning Python

Polynomial Regression | Machine Learning from Scratch

December 26, 2023 No Comments

Introduction Till now, We have read about Gradient Descent,Min-Batch Gradient Descent,Stochastic Gradient Descent and other type of Gradient Descents. In this post we will learn about Polynomial Regression. What if…

C C++ Data Structures and Algorithms Hacker Rank Solutions

C Program to get Two Sum and Three Sum

December 21, 2023 No Comments

When working with arrays, solving problems like finding two elements that sum up to a target or three elements with a specific sum is quite common. In this blog post,…

Data Science Machine Learning

Datasets Importing and exporting in Python.

June 13, 2020 Geeky Codes No Comments

What is Dataset? Datasets are container of data in python. It can work as data storage for the various algorithms in python. and also a primary storage of data in…

C C++

CRUD Operation in Mongo-cxx

June 13, 2020 Geeky Codes No Comments

What is CRUD operation ? 2. In Database we generally perform four operation : C – Create : It will be perform create database by Inserting data . R –…

BSON Library C C++

Installing the Mongodb-C Driver (libmongoc) and BSON library (libbson)

June 13, 2020 Geeky Codes No Comments

Step 1 : Run the Following Command: wget https://github.com/mongodb/mongo-c-driver/releases/download/1.6.3/mongo-c-driver-1.6.3.tar.gz tar xzf mongo-c-driver-1.6.3.tar.gz cd mongo-c-driver-1.6.3 ./configure --disable-automatic-init-and-cleanup --prefix=/usr/local --libdir=/usr/lib64 --with-libbson=bundled make make install Step 2 : To compile and run the…

Blog

Installing the mongo-cxx-driver step by step

June 13, 2020 Geeky Codes No Comments

Step 1 : Download mongo-c-driver Step 2 : Updated GCC and G++ compiler after version 5 .current version 7 in system . Step 3 : Mongo-c-driver Version(1.15.x) version is same…

Blog

Install and Secure MongoDB 6.0 on CentOS 7

June 13, 2020 Geeky Codes No Comments

Step 1: Add the MongoDB Repository First, create a .repo file for MongoDB. This will make sure you can install the latest stable version of MongoDB. Create the repo file:…

Blog

Coalesce in SQL

June 13, 2020 Geeky Codes No Comments

Coalesce is a SQL function used for handling NULL values. It returns the first non-null expression from the list. Each expression is evaluated for being NULL or not and the…

Posts pagination

1 … 7 8
Total Visitors
  • 49,844 hits
  • Before Transformers: Why RNNs Could Never Scale to Modern AI- Part 1
  • 20 Data Engineering Interview Questions You Should Know for Databricks & PySpark Roles
  • Stop Paying for Idle Servers: How I Built a Flask ML App That Costs Almost Nothing on AWS
  • Why Your FastAPI Event Loop Freezes Under Load: The Hidden Battle Between AsyncIO and Scikit-Learn
  • Longest Consecutive Sequence in Python: O(n) Hash Set Solution Explained
Top Posts & Pages
  • 20 Data Engineering Interview Questions You Should Know for Databricks & PySpark Roles
  • Longest Consecutive Sequence in Python: O(n) Hash Set Solution Explained
  • Stop Paying for Idle Servers: How I Built a Flask ML App That Costs Almost Nothing on AWS
  • Ace Your Databricks Data Engineer Exam: 10 Essential Practice Questions Explained Part 2
  • Getting Started
  • HackerRank - DataStructure - Arrays
  • Extracting Financial Year from Date in Pandas and PySpark DataFrames
  • Charlie has a Magic Mirror Program in Java
  • Before Transformers: Why RNNs Could Never Scale to Modern AI- Part 1
  • Accelerated K-Means and Mini-batch K-Means
Read more: Coalesce in SQL

You missed

Machine Learning

Before Transformers: Why RNNs Could Never Scale to Modern AI- Part 1

July 28, 2026 Geeky Codes No Comments
Data Engineering

20 Data Engineering Interview Questions You Should Know for Databricks & PySpark Roles

July 27, 2026 Geeky Codes No Comments
AWS Tutorials

Stop Paying for Idle Servers: How I Built a Flask ML App That Costs Almost Nothing on AWS

July 27, 2026 Geeky Codes No Comments
Machine Learning

Why Your FastAPI Event Loop Freezes Under Load: The Hidden Battle Between AsyncIO and Scikit-Learn

July 16, 2026 Geeky Codes No Comments

Geeky Codes

Programming, AI, Machine Learning & Software Development Tutorials

Loading Comments...