~/

All Posts

Page 3

Reviewing Udacity's Introduction To Machine Learning Course

A review of a Beginner-friendly Machine Learning Course by Udacity. What the course includes, and whether you should go for it or not. Code Files for the course included.

Project Case Study: WeTalk

WeTalk is a basic social media clone developed with Flask and PostgreSQL, and deployed on Heroku. This post is a discussion on the technologies used in this project with a focus on the database design.

Build your own Basic Web Server using Python

This post explores what web servers are and how you can develop one by yourself. The best way to learn about a software system is to develop it from scratch, which is exactly what we will be doing in this post. Dive in to know more about web servers and how you can create a basic one yourself!

How does your Flask WebApp actually work?

What lies underneath all those nice abstractions and simplicities that a web framework like Flask provides? What actually happens under the hood? This post is an attempt to understand how a webserver works.

How to change the timezone on your Heroku dyno

Experiencing problems of incorrect date in your webapp even though everything works on your localhost? The problem might be that your Heroku dyno is using a different timezone than you want it to.

Deploying your Flask WebApp to Heroku for the World to see

Want to show off your WebApp to the world? Deploy it on the internet! This post is a discussion on deploying a Flask WebApp on the internet using Heroku. Find out what Heroku is and how you can use it to deploy your Flask WebApp for free!

Building a Basic Shopping Cart with ReactJS

This post is a short discussion on a small project which involved building a basic Shopping Cart using ReactJS. We continue exploring ReactJS by discussing various interesting challenges faced while building a basic shopping cart and how React helps solve them efficiently.

The Beginner’s Guide to get started with ReactJS

In this post, we shall explore the ReactJS library. Starting with what ReactJS is and what is the purpose it serves, we shall also develop a basic component to display a tweet. We will then make the component reusable with the help of props, following the core philosophy of DRY (Don’t Repeat Yourself) with ReactJS.

Case Study: Developing a Simple Weather WebApp using Flask & DarkSky API

This post explains how to build a Simple Weather WebApp following the MVC Software Development Pattern. The WebApp was made with Python Flask, and uses the DarkSky API. The app has been deployed on Heroku. The project source code can be found on GitHub.

APIs Explained: Using a Weather API with Python's Requests Library

In this post, we shall explore APIs and how to use them in Python. We will develop a simple command line based Weather app to show us the weather of a particular city. We will use the Requests library and OpenWeatherMap API.

Wagtail: A Flexible Django based Content Management System

Tired of WordPress? Find out more about Wagtail, a Django based customizable Content Management System (CMS).

9 Curated Resources to Master Peewee ORM as a beginner

Let's know more about Peewee, a simple, easy to understand Object Relational Mapper (ORM) in Python that will make your life easy by mapping your Database tables to Python objects.

My First WordCamp Experience-WCPune2019

Exactly a week ago, I attended my first WordCamp at Pune. For those who are not acquainted with WordCamps, a WordCamps are informal, community-organized events that focus on everything WordPress.

Web Scraping Basics using BeautifulSoup

Hello! Today we will explore a bit about web scraping - what it is, why is it useful, and how it's implemented. As an example, we shall harvest some data from a website called Consumer Reports.

Python Web Frameworks and cPanel Hosting

Hello! Today we will explore a bit about how to use Python in the context of developing website or a WebApp, and how to host a Python webapp on a cPanel based Linux Shared Hosting.

CSS for Beginners #5 : CSS Animated Pyramids

Hello there! This is the fifth and the last post in the "CSS for Beginners" series. Today we are going to be making an Animated Pyramid design using CSS.

CSS for Beginners #4 : CSS Progress Bars

Hello there! This is the fourth post in the "CSS for Beginners" series. Today we are going to be making Progress Bars completely with CSS.

CSS for Beginners #3 : CSS Pop Up Window

Hello there! This is the third post in the "CSS for Beginners" series. Today we are going to be making a pop up window completely with CSS and no JS.