Open in app

Sign in

Write

Sign in

Deeksha Sharma
Deeksha Sharma

68 Followers

Home

About

Oct 29

Unit Testing with pytest

Software Testing is the process of verifying and validating that a software or application is bug free. 🙂Levels of Software Testing 📌Unit Testing →Level of software testing process in which each individual component/unit is tested in an isolated environment.It helps in validating that each unit is performing as per expectations. …

Pytest

6 min read

Unit Testing with pytest
Unit Testing with pytest
Pytest

6 min read


Oct 2

Let’s Conquer Python

Python is a dynamically typed, general-purpose programming language that supports an object-oriented programming approach as well as a functional programming approach. 🚎Data Types in Python 🛴Numeric data: int, float, complex 🛴Boolean data:True, False 🛴Sequenced data: list, tuple 🛴Mapped Data:dict 🛴Text data: str Python does not have a char data type…

Python

13 min read

Let’s Conquer Python
Let’s Conquer Python
Python

13 min read


Sep 17

Demystifying Docker: An Introduction

Many many years back the scenario was that a server was capable of running only one application. So at that time if you have 2000 applications then you need to have 2000 servers. Such a dreadful scenario it was! VMware tried solving this problem using virtual machines. So virtual machines…

Docker

7 min read

Demystifying Docker: An Introduction
Demystifying Docker: An Introduction
Docker

7 min read


Aug 27

Let’s Decode MSSQL

A database is a collection of information that is organized so that it can be easily accessed, managed and updated. A Row represents a record. A column represents a field. ✨SQL lets us access and manipulate databases. 😄A DBMS is a collection of related records and a set of programs…

Sql

17 min read

Let’s Decode MSSQL
Let’s Decode MSSQL
Sql

17 min read


Aug 24

Django Rest Framework Cheatsheet

🤔What is an API? — API is a middleman that is used to connect two projects, services, and applications. There are three types of APIs: ✨Private ✨Partner ✨Public With the help of an API, we are able to use a single backend for our web, desktop, or Android application. No need to write a backend…

Django

8 min read

Django Rest Framework Cheatsheet
Django Rest Framework Cheatsheet
Django

8 min read


Nov 2, 2022

Let’s Decode Backend Development

🔎What is Node.js? Node.js is a javascript runtime environment. We can run javascript on the browser because the browser has an in-built V8 engine that is capable of executing Javascript. But if you want to execute javascript outside your browser then node.js comes to your rescue.Node.js is a wrapper around the V8 engine.V8…

Backend Development

15 min read

Let’s Decode Backend Development
Let’s Decode Backend Development
Backend Development

15 min read


Dec 26, 2021

N Queens Problem

Let’s understand two approaches for solving this Hard leetcode Problem:- Approach 1: Using Branch and Bound //Using Branch and Bound Technique class Solution { public: void solveNQueensHelper(int n, int row, vector<vector<string>>& output, bool* cols, bool* diag1, bool* diag2, vector<string> smallOutput){ //Base Case if(row == n){ output.push_back(smallOutput); return; } //Traversing the…

Data Structures

2 min read

Data Structures

2 min read


Dec 9, 2021

Acing Linked List Problems

In this blog, I will be covering important problems on the linked list so that after going through this blog you will be good enough to ace linked list problems in your interview.I have shared the most optimized, well commented and most easisest way of writing code for each problem. …

Linked List

12 min read

Linked List

12 min read


Jan 21, 2021

Let’s Decode The Crio Winter Of Doing!

#BecomeTheEngineerYouWereMeantToBe In this article, I’ll be sharing my experience with Crio Winter Of Doing, which inspired and made me believe in doing! What Actually Crio Winter Of Doing Is? Crio Winter Of Doing(CWOD) is India’s largest tech externship program for developers organized by Crio.Do. It’s a program which will show you…

3 min read

Let’s Decode The Crio Winter Of Doing!
Let’s Decode The Crio Winter Of Doing!

3 min read

Deeksha Sharma

Deeksha Sharma

68 Followers

Developer | Learner | Find me at https://www.linkedin.com/in/deeks07/

Following
  • Alex Mathers

    Alex Mathers

  • Liu Zuo Lin

    Liu Zuo Lin

  • Fahim ul Haq

    Fahim ul Haq

  • Sergey Piterman

    Sergey Piterman

  • YUNGBLUDD

    YUNGBLUDD

See all (43)

Help

Status

About

Careers

Blog

Privacy

Terms

Text to speech

Teams