-
Power on RetroPie
-
Go to:
- Home → RetroPie → WiFi → Connect to WiFi
-
After WiFi is connected
-
Go to:
| Stage | Duration | Focus Areas & Key Concepts | Recommended Resources |
|---|---|---|---|
| 1. Foundations | 1 week | - Math essentials: linear algebra, probability, statistics, calculus (light, applied focus) | Essence of Linear Algebra & Calculus (3Blue1Brown), NCERT revision |
| 2. Programming | 2-3 weeks | - Python basics: loops, functions, classes, file I/O, virtual environments- Scientific stack: Numpy, Pandas, Matplotlib, PyTorch tensors | Programming with Mosh, FreeCodeCamp, creator’s PyTorch playlist |
- Clean code is simple and elegant - reads like well-written prose
- Clean code is focused - each function, class, and module has a single responsibility
- Clean code is written by someone who cares - attention to detail is evident
- Clean code can be read and enhanced by others - not just the original author
- Clean code has meaningful names - variables, functions, and classes have intention-revealing names
- Clean code has no duplication - follows the DRY principle
- Clean code runs all tests - is thoroughly tested and works correctly
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* Performance */ | |
| -- Do analysis using below queries | |
| -- Also SQL logs in UI | |
| - Open Azure Portal Homepage | |
| - Search for Dedicated SQL pool | |
| - Click on the Dedicated SQL Pool > Monitoring > metrice > filter DWU used - note down time | |
| - Goto Query Activity and corelaetd the query executed in the above time | |
- Create multiple cloud / online apps, link and configure them
- Infrastructure as Code (IaC)
- Sandbox: https://developer.hashicorp.com/terraform/sandbox
- Terraform loads all
.tffiles in the same folder together
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class Node: | |
| def __init__(self, value): | |
| self.value = value | |
| self.left = None | |
| self.right = None | |
| def BFS(self,root): | |
| if root is None: return | |
| queue = [root] | |
| while queue: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ''' | |
| Excercise for Async Multithreaded vs Normal | |
| Problem : | |
| 1. To call 2 api | |
| 2. Get the response | |
| 3. Convert the response data into pandas Dataframe | |
| RUN 1 : | |
| Time take by Async multithreaded = 0.4613368511199951 |
-
Helm Chart : Package installer for kubernetes
-
Prometheus: Open-source monitoring and alerting toolkit ( A Prometheus deployment needs dedicated storage space to store scraping data)
-
Grafana : visualization, and observability in Prometheus
minikube start # minikube start --memory='12g' --cpus='4' -n 3
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ''' | |
| threading | |
| 1. No return | |
| 2. Can run seperatr function | |
| concurrent.futures | |
| 1. Return | |
| 2. Only run 1 Function in 1 map | |
| ''' |
NewerOlder