Skip to main content

Posts

The Art of Objects

Recent posts

Projects To Showcase Your Coding Talent

So you are an aspiring job candidate ? Or you are just someone who wants to learn new things, no you might be someone who have the knowledge but overwhelmed by the technologies What should you do? Or you are just confused like I was, what I can build so that I can showcase my talents? I need some projects  to put them in my Resume!  Or you are just wondering am I able to build something?  Or you are someone who have learnt many things by own, just watching YouTube videos . But not sure which project he/she can work on?  So Dear you are exactly in the right place. Here I will discuss most important projects which you can build to showcase your talent and some insights .Without wasting much time let's start . Pro Tip : You must have some projects in your pocket , otherwise your interview is going to be more tough 💪. Projects : Level - Beginner and Intermediate 1. Build a Website Right! Web Development!  Web Development can showcase a lot of skills that you have i...

Let's Learn Python

Let's Learn Python🐍 Hello everyone.After a long time I am back again with a blog series. In this series no more theory, only practical. Before I say what this series is all about. Let's pray for everyone so that we can overcome this pandemic. This series is going to be a 3 part series. 1st part- Python Basics  2nd part - Python Advance and some tricks. 3rd part - Putting all the learning together and creating a project This is the first part of this tutorial series. I hope you learn something new from this, and at the end of this series you have a project ready with you , which you can put in your CV. If you know Python a bit then you can skip the article, Or you can read for a refresher. NOTE: Here we are not going to cover everything in one go, we will learn the things throughout the series. So I included only the topics I feel mostly important. Prerequisite Install Python in your local Computer. Go to this link and download 3.6 or above. After Installing Set your environme...

Problem Solving and Algorithms

Problem Solving and Algorithms Introduction A problem space is all of the various components that go into creating a resolution for a problem. Think of it like a frame, which acts as something of a border to help define an area. A problem space helps you or, on a larger scale, a business, figure out what the problem is, work through ways to correct them and then drives implementation of the appropriate solution. The ultimate purpose is to take corrective action for some identified problem. Problem solving refers to cognitive processing directed at achieving a goal when the problem solver does not initially know a solution method. In computer science there are two different types of problems, ill-defined and well-defined : different approaches are used for each. Well-defined problems have specific end goals and clear expected solutions, while ill-defined problems do not. In computer science, an algorithm is a finite sequence of well-defined , computer-implementable inst...

A Beginner's Guide to System Design

A Beginner's Guide to System Design Introduction Systems design is the process of defining the architecture, modules, interfaces, and data for a system to satisfy specified requirements. Systems design could be seen as the application of systems theory to product development. There is some overlap with the disciplines of systems analysis, systems architecture and systems engineering. Whether you are a backend developer, product manager or technical manager, everyone needs to know the basics of System Design. So this article is the only destination that can solve all queries you have about System Design. Aspects of System Design High Level System Design High-level design ( HLD ) explains the architecture that would be used for developing a software product. The architecture diagram provides an overview of an entire system, identifying the main components that would be developed for the product and their interfaces. The HLD uses possibly nontechnical to mildly te...