My VSCode Setup for PythonFont Face Jetbrains Mono Theme Ayu Dark Extensions Better Comments autoDocstring Auto Import Code Runner Django Git Graph Git History Git Ignore Indent Colorizer isort Jupyter Jupyter Cell Tags Jupyter Keymap MagicPython Ma...Jan 27, 2024·1 min read
Python Statistics ModuleFunctions for Statistical Calculations: statistics.mean(): Calculates the arithmetic mean of a sequence of numbers. statistics.median(): Calculates the median of a sequence of numbers. statistics.mode(): Calculates the mode of a sequence of number...Dec 26, 2023·2 min read
Python Requests ModuleFunctions for Making Requests: requests.request(): Sends a request to a specified URL with customizable parameters. requests.get(): Sends a GET request to the specified URL. requests.post(): Sends a POST request to the specified URL with data in t...Dec 25, 2023·2 min read
Basic CSS Questions Part 2What does the line-height property control in CSS? It sets the height of a line box. How do you add a border to an element in CSS? Using the border property. Explain the difference between padding and margin. Padding is the space inside an ele...Dec 24, 2023·3 min read
Basics CSS Questions Part 1What does CSS stand for? Cascading Style Sheets. What is the purpose of CSS? It's used to style the layout and appearance of web pages. How do you link an external CSS file to an HTML document? Using the <link> tag within the HTML <head> secti...Dec 23, 2023·3 min read
Django 101What is Django? Purpose: Django is used for building web applications, emphasizing reusability, rapid development, and the principle of DRY (Don't Repeat Yourself). Components: It includes an ORM (Object-Relational Mapping) layer, a template system...Dec 22, 2023·3 min read
JavaScript Interview Related Important TopicsCore JavaScript Concepts: Data Types and Variables: Understand primitive and reference data types, variable declaration, and scoping (var, let, const). Functions: Function declaration, expression, anonymous functions, arrow functions, closures, and...Dec 21, 2023·2 min read