Skip to content

Commit

Permalink
updated docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Deepak Sood authored and Deepak Sood committed Oct 28, 2024
1 parent bd8050b commit 602e3fe
Show file tree
Hide file tree
Showing 19 changed files with 185 additions and 27 deletions.
51 changes: 31 additions & 20 deletions docs/.obsidian/core-plugins.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,31 @@
[
"file-explorer",
"global-search",
"switcher",
"graph",
"backlink",
"canvas",
"outgoing-link",
"tag-pane",
"properties",
"page-preview",
"daily-notes",
"templates",
"note-composer",
"command-palette",
"bookmarks",
"outline",
"word-count",
"file-recovery"
]
{
"file-explorer": true,
"global-search": true,
"switcher": true,
"graph": true,
"backlink": true,
"outgoing-link": true,
"tag-pane": true,
"page-preview": true,
"daily-notes": true,
"templates": true,
"note-composer": true,
"command-palette": true,
"slash-command": false,
"editor-status": false,
"starred": true,
"markdown-importer": false,
"zk-prefixer": false,
"random-note": false,
"outline": true,
"word-count": true,
"slides": false,
"audio-recorder": false,
"workspaces": false,
"file-recovery": true,
"publish": false,
"sync": false,
"canvas": true,
"bookmarks": true,
"properties": true
}
7 changes: 5 additions & 2 deletions docs/about-me/ideas/startups-ideas-saas.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ Entertainment as a service

Vacation as a service

Online coding tool + Environment
### Online coding tool + Environment

- Just go to a repository and start coding
- All tools are already there with lint checks and code formatting tools all in browser (mobile friendly)
Expand All @@ -93,7 +93,10 @@ Online coding tool + Environment
- Fine grained control over all repositories/files/docs in browsers direcly
- Code testing / commiting / backup everything direcly in browser

Free Coding test taking platform (Think exam but free)
### Free Coding test taking platform (Think exam but free)

- Use AI to create exam and questions
- Deterministic

### Ecommerce for small businesses

Expand Down
106 changes: 106 additions & 0 deletions docs/ai/computer-vision-cv/cv-libraries-tools.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,112 @@ Albumentations is a Python library for image augmentation. Image augmentation is
- Albumentations is [**fast**](https://github.com/albumentations-team/albumentations?tab=readme-ov-file#benchmarking-results). We benchmark each new release to ensure that augmentations provide maximum speed.
- It **[works with popular deep learning frameworks](https://github.com/albumentations-team/albumentations?tab=readme-ov-file#i-want-to-know-how-to-use-albumentations-with-deep-learning-frameworks)** such as PyTorch and TensorFlow. By the way, Albumentations is a part of the [PyTorch ecosystem](https://pytorch.org/ecosystem/).

## List of augmentations

### Pixel-level transforms

Pixel-level transforms will change just an input image and will leave any additional targets such as masks, bounding boxes, and keypoints unchanged. The list of pixel-level transforms:

- [AdvancedBlur](https://explore.albumentations.ai/transform/AdvancedBlur)
- [Blur](https://explore.albumentations.ai/transform/Blur)
- [CLAHE](https://explore.albumentations.ai/transform/CLAHE)
- [ChannelDropout](https://explore.albumentations.ai/transform/ChannelDropout)
- [ChannelShuffle](https://explore.albumentations.ai/transform/ChannelShuffle)
- [ChromaticAberration](https://explore.albumentations.ai/transform/ChromaticAberration)
- [ColorJitter](https://explore.albumentations.ai/transform/ColorJitter)
- [Defocus](https://explore.albumentations.ai/transform/Defocus)
- [Downscale](https://explore.albumentations.ai/transform/Downscale)
- [Emboss](https://explore.albumentations.ai/transform/Emboss)
- [Equalize](https://explore.albumentations.ai/transform/Equalize)
- [FDA](https://explore.albumentations.ai/transform/FDA)
- [FancyPCA](https://explore.albumentations.ai/transform/FancyPCA)
- [FromFloat](https://explore.albumentations.ai/transform/FromFloat)
- [GaussNoise](https://explore.albumentations.ai/transform/GaussNoise)
- [GaussianBlur](https://explore.albumentations.ai/transform/GaussianBlur)
- [GlassBlur](https://explore.albumentations.ai/transform/GlassBlur)
- [HistogramMatching](https://explore.albumentations.ai/transform/HistogramMatching)
- [HueSaturationValue](https://explore.albumentations.ai/transform/HueSaturationValue)
- [ISONoise](https://explore.albumentations.ai/transform/ISONoise)
- [ImageCompression](https://explore.albumentations.ai/transform/ImageCompression)
- [InvertImg](https://explore.albumentations.ai/transform/InvertImg)
- [MedianBlur](https://explore.albumentations.ai/transform/MedianBlur)
- [MotionBlur](https://explore.albumentations.ai/transform/MotionBlur)
- [MultiplicativeNoise](https://explore.albumentations.ai/transform/MultiplicativeNoise)
- [Normalize](https://explore.albumentations.ai/transform/Normalize)
- [PixelDistributionAdaptation](https://explore.albumentations.ai/transform/PixelDistributionAdaptation)
- [PlanckianJitter](https://explore.albumentations.ai/transform/PlanckianJitter)
- [Posterize](https://explore.albumentations.ai/transform/Posterize)
- [RGBShift](https://explore.albumentations.ai/transform/RGBShift)
- [RandomBrightnessContrast](https://explore.albumentations.ai/transform/RandomBrightnessContrast)
- [RandomFog](https://explore.albumentations.ai/transform/RandomFog)
- [RandomGamma](https://explore.albumentations.ai/transform/RandomGamma)
- [RandomGravel](https://explore.albumentations.ai/transform/RandomGravel)
- [RandomRain](https://explore.albumentations.ai/transform/RandomRain)
- [RandomShadow](https://explore.albumentations.ai/transform/RandomShadow)
- [RandomSnow](https://explore.albumentations.ai/transform/RandomSnow)
- [RandomSunFlare](https://explore.albumentations.ai/transform/RandomSunFlare)
- [RandomToneCurve](https://explore.albumentations.ai/transform/RandomToneCurve)
- [RingingOvershoot](https://explore.albumentations.ai/transform/RingingOvershoot)
- [Sharpen](https://explore.albumentations.ai/transform/Sharpen)
- [Solarize](https://explore.albumentations.ai/transform/Solarize)
- [Spatter](https://explore.albumentations.ai/transform/Spatter)
- [Superpixels](https://explore.albumentations.ai/transform/Superpixels)
- [TemplateTransform](https://explore.albumentations.ai/transform/TemplateTransform)
- [TextImage](https://explore.albumentations.ai/transform/TextImage)
- [ToFloat](https://explore.albumentations.ai/transform/ToFloat)
- [ToGray](https://explore.albumentations.ai/transform/ToGray)
- [ToRGB](https://explore.albumentations.ai/transform/ToRGB)
- [ToSepia](https://explore.albumentations.ai/transform/ToSepia)
- [UnsharpMask](https://explore.albumentations.ai/transform/UnsharpMask)
- [ZoomBlur](https://explore.albumentations.ai/transform/ZoomBlur)

### Spatial-level transforms

Spatial-level transforms will simultaneously change both an input image as well as additional targets such as masks, bounding boxes, and keypoints. The following table shows which additional targets are supported by each transform.

|Transform|Image|Mask|BBoxes|Keypoints|
|---|:-:|:-:|:-:|:-:|
|[Affine](https://explore.albumentations.ai/transform/Affine)|||||
|[BBoxSafeRandomCrop](https://explore.albumentations.ai/transform/BBoxSafeRandomCrop)|||||
|[CenterCrop](https://explore.albumentations.ai/transform/CenterCrop)|||||
|[CoarseDropout](https://explore.albumentations.ai/transform/CoarseDropout)|||||
|[Crop](https://explore.albumentations.ai/transform/Crop)|||||
|[CropAndPad](https://explore.albumentations.ai/transform/CropAndPad)|||||
|[CropNonEmptyMaskIfExists](https://explore.albumentations.ai/transform/CropNonEmptyMaskIfExists)|||||
|[D4](https://explore.albumentations.ai/transform/D4)|||||
|[ElasticTransform](https://explore.albumentations.ai/transform/ElasticTransform)|||||
|[GridDistortion](https://explore.albumentations.ai/transform/GridDistortion)|||||
|[GridDropout](https://explore.albumentations.ai/transform/GridDropout)|||||
|[GridElasticDeform](https://explore.albumentations.ai/transform/GridElasticDeform)|||||
|[HorizontalFlip](https://explore.albumentations.ai/transform/HorizontalFlip)|||||
|[Lambda](https://explore.albumentations.ai/transform/Lambda)|||||
|[LongestMaxSize](https://explore.albumentations.ai/transform/LongestMaxSize)|||||
|[MaskDropout](https://explore.albumentations.ai/transform/MaskDropout)|||||
|[Morphological](https://explore.albumentations.ai/transform/Morphological)|||||
|[NoOp](https://explore.albumentations.ai/transform/NoOp)|||||
|[OpticalDistortion](https://explore.albumentations.ai/transform/OpticalDistortion)|||||
|[OverlayElements](https://explore.albumentations.ai/transform/OverlayElements)|||||
|[PadIfNeeded](https://explore.albumentations.ai/transform/PadIfNeeded)|||||
|[Perspective](https://explore.albumentations.ai/transform/Perspective)|||||
|[PiecewiseAffine](https://explore.albumentations.ai/transform/PiecewiseAffine)|||||
|[PixelDropout](https://explore.albumentations.ai/transform/PixelDropout)|||||
|[RandomCrop](https://explore.albumentations.ai/transform/RandomCrop)|||||
|[RandomCropFromBorders](https://explore.albumentations.ai/transform/RandomCropFromBorders)|||||
|[RandomGridShuffle](https://explore.albumentations.ai/transform/RandomGridShuffle)|||||
|[RandomResizedCrop](https://explore.albumentations.ai/transform/RandomResizedCrop)|||||
|[RandomRotate90](https://explore.albumentations.ai/transform/RandomRotate90)|||||
|[RandomScale](https://explore.albumentations.ai/transform/RandomScale)|||||
|[RandomSizedBBoxSafeCrop](https://explore.albumentations.ai/transform/RandomSizedBBoxSafeCrop)|||||
|[RandomSizedCrop](https://explore.albumentations.ai/transform/RandomSizedCrop)|||||
|[Resize](https://explore.albumentations.ai/transform/Resize)|||||
|[Rotate](https://explore.albumentations.ai/transform/Rotate)|||||
|[SafeRotate](https://explore.albumentations.ai/transform/SafeRotate)|||||
|[ShiftScaleRotate](https://explore.albumentations.ai/transform/ShiftScaleRotate)|||||
|[SmallestMaxSize](https://explore.albumentations.ai/transform/SmallestMaxSize)|||||
|[Transpose](https://explore.albumentations.ai/transform/Transpose)|||||
|[VerticalFlip](https://explore.albumentations.ai/transform/VerticalFlip)|||||
|[XYMasking](https://explore.albumentations.ai/transform/XYMasking)|||||

[GitHub - albumentations-team/albumentations: Fast and flexible image augmentation library. Paper about the library: https://www.mdpi.com/2078-2489/11/2/125](https://github.com/albumentations-team/albumentations)

[Albumentations: fast and flexible image augmentations](https://albumentations.ai/)
4 changes: 4 additions & 0 deletions docs/ai/ml-algorithms/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,7 @@
- [Vector Embeddings](ai/ml-algorithms/vector-embeddings.md)
- [Dimensionality Reduction](dimensionality-reduction)
- [Others](ai/ml-algorithms/others.md)

## Links

- [A Tour of Machine Learning Algorithms](https://machinelearningmastery.com/a-tour-of-machine-learning-algorithms/)
5 changes: 4 additions & 1 deletion docs/ai/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@

![Data & AI Landscape](../media/Data-and-AI-Landscape-2021-v3-small.jpg)

Interactive - [FirstMark | 2024 MAD (ML/AI/Data) Landscape](https://mad.firstmark.com/)

[Full Steam Ahead: The 2024 MAD (Machine Learning, AI & Data) Landscape – Matt Turck](https://mattturck.com/mad2024/)

## AGI (Artificial General Intelligence) / Sentient

AGI will be intellectually, morally, ethically and creatively superior to humans in every conceivable way
Expand All @@ -38,5 +42,4 @@ AGI will be intellectually, morally, ethically and creatively superior to humans

## Links

- [Full Steam Ahead: The 2024 MAD (Machine Learning, AI & Data) Landscape – Matt Turck](https://mattturck.com/mad2024/)
- [AI Index Report 2024 – Artificial Intelligence Index](https://aiindex.stanford.edu/report/)
1 change: 1 addition & 0 deletions docs/cloud/others/others-saas.md
Original file line number Diff line number Diff line change
Expand Up @@ -195,3 +195,4 @@ MuleSoft is a platform that gives IT the tools to automate everything. This incl
- https://trends.google.com/trends
- [Automatic, AI-generated interview notes | Metaview](https://www.metaview.ai/)
- [Krutrim - India's own AI](https://cloud.olakrutrim.com/)
- Intuit - QuickBooks
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ len(list(permutations('abcde', 5)))
## Others

- https://www.geeksforgeeks.org/split-the-given-array-into-k-sub-arrays-such-that-maximum-sum-of-all-sub-arrays-is-minimum
- [Design LRU Cache - GeeksforGeeks](https://www.geeksforgeeks.org/design-a-data-structure-for-lru-cache/) - (good, medium difficulty, doubly linkedin list + hashmap)
- https://practice.geeksforgeeks.org/problems/lru-cache/1- Interview (medium difficulty) - https://practice.geeksforgeeks.org/problems/largest-even-number3821/1#_=_
- Easy (5-10 mins max) - [https://practice.geeksforgeeks.org/problems/leaders-in-an-array-1587115620/1#](https://practice.geeksforgeeks.org/problems/leaders-in-an-array-1587115620/1)
- Easy (5-10 mins max) - https://practice.geeksforgeeks.org/problems/non-repeating-element3958/1
Expand Down
6 changes: 6 additions & 0 deletions docs/databases/sql-databases/mysql/backup-policy.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,3 +65,9 @@ mysqldump --single-transaction --flush-logs --master-data=2 --all-databases --de
Deleting the MySQL binary logs with **mysqldump --delete-master-logs** can be dangerous if your server is a replication source server, because replica servers might not yet fully have processed the contents of the binary log. The description for the [`PURGE BINARY LOGS`](https://dev.mysql.com/doc/refman/5.7/en/purge-binary-logs.html) statement explains what should be verified before deleting the MySQL binary logs. See [PURGE BINARY LOGS Statement](https://dev.mysql.com/doc/refman/5.7/en/purge-binary-logs.html).

[1.3.1 Establishing a Backup Policy](https://dev.mysql.com/doc/mysql-backup-excerpt/5.7/en/backup-policy.html)

## Grandfather-father-son or GFS?

GFS backup is a common rotation scheme for backup, in which there are three or more backup cycles, such as daily, weekly, and monthly. Typically, It consists of daily backups (son, at fixed intervals of hours in a day), a weekly full backup (father, once a week), and monthly full backup (Grandfather, once a month).

It helps to restore the database from the most possible recovery points in case of any requirement or disaster.
4 changes: 3 additions & 1 deletion docs/devops/ides/jupyter-jupyterlab-notebook/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,9 @@ https://github.com/jupyterlab/jupyterlab/issues/4930
[JupyterLab](http://jupyterlab.readthedocs.io/en/stable/) is the next-generation user interface for [Project Jupyter](https://jupyter.org/) offering all the familiar building blocks of the classic Jupyter Notebook (notebook, terminal, text editor, file browser, rich outputs, etc.) in a flexible and a more powerful user interface.The basic idea of the Jupyter Lab is to bring all the building blocks that are in the classic notebook, plus some new stuff, under one roof.
```bash
pip install jupyterlab
pip install --upgrade jupyterlab
jupyter lab build
jupyter lab
Expand Down
5 changes: 3 additions & 2 deletions docs/devops/ides/mac.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,10 +90,11 @@ Open two instance of same application - **open -n MQTT.fx.app**
1. [GitHub - raycast/extensions: Everything you need to extend Raycast.](https://github.com/raycast/extensions)
2. [GitHub - raycast/script-commands: Script Commands let you tailor Raycast to your needs. Think of them as little productivity boosts throughout your day.](https://github.com/raycast/script-commands)

- Open MTP
- **Android file transfer** (doesn't work)
- ~~Open MTP~~
- ~~Android file transfer (doesn't work)~~
- `brew install grishka/grishka/neardrop`
- [**ShareDrop**](https://www.sharedrop.io/)
- **Localsend**
- Office

### Google chrome
Expand Down
2 changes: 2 additions & 0 deletions docs/economics/finance-investing/returns-tax-taxes-itr.md
Original file line number Diff line number Diff line change
Expand Up @@ -434,6 +434,8 @@ An offshore account is one that is opened by a citizen outside her home country.

[Tax on Stocks, Mutual Funds, Gold and Real Estate | STCG and LTCG | ETMONEY](https://www.youtube.com/watch?v=sYtnOVgdH_I)

[Real Estate Taxation Example After Finance Bill 2024 Amendment](https://freefincal.com/real-estate-taxation-example-after-finance-bill-2024-amendment/)

## Taxes on house (Section 54F)

- In respect of capital gains arising on sale any asset other than a residential house, an individual or an HUF can claim exemption from long term capital gains if the net sale consideration in respect of such asset is invested for acquiring a residential house within a period of two years after sale of such asset.
Expand Down
4 changes: 4 additions & 0 deletions docs/knowledge/biology/nutrition/pulses-daal-lentils.md
Original file line number Diff line number Diff line change
Expand Up @@ -316,6 +316,10 @@ https://www.quora.com/Is-corn-flour-same-as-makke-maize-ka-ata
| Wheat | Gehoon |
| Whole Wheat Flour | Gehoon aata |

![Protein, fiber and GI of grains](../../../media/Screenshot%202024-10-20%20at%2010.22.17%20PM.jpg)

[Eight Swaps To Eat Better Everyday - Truth Be Told](https://tbthealth.substack.com/p/eight-swaps-to-eat-better-everyday)

## Oils

### Processing
Expand Down
1 change: 1 addition & 0 deletions docs/knowledge/others/others.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## Poverty

[Kya India me gareebi khatam ho gayi hai? | Markets by Zerodha Hindi - YouTube](https://www.youtube.com/watch?v=v65L8vekQq0)

- Poverty is the worst form of violence - Mahatma Gandhi
- Accident of birth
- Accident of life
Expand Down
2 changes: 2 additions & 0 deletions docs/knowledge/quotes-proverbs/motivation.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,8 @@ Passion comes after you put in the hard work to become excellent at something va

BAD DAYS don't undo THE PROGRESS YOU'VE MADE. Remember, PROGRESS ISN'T JUST ABOUT THE HIGHS, IT'S ALSO ABOUT HOW YOU NAVIGATE through the lows.

“Successful people aren’t doing what they love because they’re rich. They’re rich because they’ve learned to do what they love, and only what they love. Too many entrepreneurs get this backward." - Dan Martell

## Others

### Antifragile
Expand Down
1 change: 1 addition & 0 deletions docs/knowledge/youtube-podcasts-magazine-apps.md
Original file line number Diff line number Diff line change
Expand Up @@ -374,6 +374,7 @@
- Dear SQL DBA
- The Cloudcast [https://podcastaddict.com/podcast/the-cloudcast/2156860](https://podcastaddict.com/podcast/the-cloudcast/2156860)
- AWS Podcast [https://d3gih7jbfe3jlq.cloudfront.net/aws-podcast.rss](https://d3gih7jbfe3jlq.cloudfront.net/aws-podcast.rss)
- [Hanselminutes Technology Podcast - Fresh Air and Fresh Perspectives for Developers - Coding while Blind with Dominic St Pierre](https://hanselminutes.com/)

### Others

Expand Down
1 change: 1 addition & 0 deletions docs/management/jobs/good-profiles.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
- https://www.linkedin.com/in/jessicatai
- [linkedin.com/in/anilyadav/](https://www.linkedin.com/in/anilyadav/)
- [linkedin.com/in/gauravmalik77/details/experience/](https://www.linkedin.com/in/gauravmalik77/details/experience/)
- https://www.linkedin.com/in/maheshmirchandani/
- Andreas Klinger - https://klinger.io
- [Jeroen Bouma | Financial Risk Analyst](https://www.jeroenbouma.com/)
- https://www.linkedin.com/in/vishalkmishra/
Expand Down
8 changes: 8 additions & 0 deletions docs/management/project-product-business-tools-saas.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,14 @@
22. https://freedcamp.com
23. Google sheets - https://www.goskills.com/Project-Management/Resources/Project-management-template-Google-Sheets
24. Google Forms
1. [Don’t Use Google Forms Without These FREE Add-Ons! - YouTube](https://www.youtube.com/watch?v=XMjWyJLVWCs&ab_channel=Simpletivity)
1. Form Limiter
2. Form Notifications
3. Booking Calendar
4. Mail Merge (9M+ downloads)
2. Form Approvals
1. [How to use Form Approvals | Turn Google Form submissions into approval workflows (English Tutorial) - YouTube](https://www.youtube.com/watch?v=eXdbUwzqI6s&t=3s&ab_channel=FormApprovals)
2. [Convert Google Form into Multi-Step Approval Workflow | Form Approvals add on - YouTube](https://www.youtube.com/watch?v=pnGKv3WkHTo&ab_channel=KewalKishan-AutomateBusiness)
25. [Free Online Form Builder & Form Creator | Jotform](https://www.jotform.com)
26. [Typeform: People-Friendly Forms and Surveys](https://www.typeform.com/)
27. [SurveyMonkey: The World’s Most Popular Free Online Survey Tool](https://www.surveymonkey.com/)
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 602e3fe

Please sign in to comment.