Categories
Cloud Entrepreneurship General

Free Cloud Storage: Top 9 Cloud Storage Services in 2023

You have surely used one free cloud storage service to store something… for backup, right? I know I have. Tell you what, I lost a whole book recently because I forgot to back it up. So, trust me when I tell you, a cloud storage service is essential in 2023. In this post, I will […]

Categories
General python Tools & HowTo

Authentication in Python: Biometric Fingerprint Matching

Before looking at biometric authentication in python with fingerprint matching, I want to explain the concept behind it. Why do you need an authentication system? Why should you build it without weaknesses? I’ll answer that and more with a basic program in python. Then, I’ll explore what authentication in python means with face recognition and fingerprint matching. […]

Categories
Blockchain and Web 3.0 python Sotfware & DevOps

Smart Contracts in Python: Complete Guide

Smart contracts in Python? Don’t worry if that line doesn’t make sense. So, this post will explore the steps of deploying smart contracts in Python and help you understand how to do it independently and concisely. Like my previous one, where I discussed how to Write Your First Smart Contract || Blockchain, I will break […]

Categories
General python Sotfware & DevOps Tools & HowTo

Face Recognition in Python: A Beginner’s Guide

Face Recognition in Python: A Beginner’s Guide will be an utterly fascinating post about something that is both scary and amazing– face detection and analysis using artificial intelligence in Python. How cool is that? How terrifying is that?  Before getting into it, I think it’s important to lay some ground framework. I’ll list a few […]

Categories
Blockchain and Web 3.0 Entrepreneurship General

Write First Smart Contract in Solidity | Blockchain

Hence, define the function store (which stores someone’s favourite number), passing a variable to store a number input from the user. Assign the favourite number variable created above (with public scope) to the local variable passed in the function.

Categories
General Sotfware & DevOps Tools & HowTo

Mastering PostgreSQL and MySQL Databases In Hours

Today, multiple flavors of SQL databases exist with versatile use cases, like MySQL and Postgres databases. It ends up being a hard choice: which SQL database do you want to use, which SQL database does your organization use; which SQL database is in the most demand? Our post Picking The Right SQL Database For You […]

Categories
Sotfware & DevOps Tools & HowTo

Normalization of SQL Database: Remove Redundancy

Normalization of database is an essential skill to know as a database designer and developer. I still remember being intimidated by what it would bring on– back when I took a SQL database course. It was scary hearing about it. Let me assure you: it is easier than you might imagine. What is important though, […]

Categories
Sotfware & DevOps Tools & HowTo

Relational Database Design: ER Modelling

In this article, we’ll explore the steps of ER modelling for database design. By the end, you will know what database design is and how to create an entity-relationship diagram (ER). In addition, you will also learn how to translate an ER from a case study.