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
| function validateIdentity(CIN) { | |
| if (CIN < 2) { | |
| return "Rejected: Identity pattern shows external links."; | |
| } | |
| // Check for factors from 2 to the square root of CIN | |
| for (let i = 2; i <= Math.sqrt(CIN); i++) { | |
| if (CIN % i === 0) { | |
| return "Rejected: Identity pattern shows external links."; | |
| } | |
| } |
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
| Unhook - Remove YouTube Recommended & Shorts - https://chromewebstore.google.com/detail/news-feed-eradicator/fjcldmjmjhkklehbacihaiopjklihlgg?hl=en | |
| News Feed Eradicator - https://chromewebstore.google.com/detail/news-feed-eradicator/fjcldmjmjhkklehbacihaiopjklihlgg?hl=en |
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
| Complete Roadmap for Machine Learning | ML Roadmap for Beginners | |
| - https://github.com/codebasics/roadmaps/blob/master/machine-learning-engineer-roadmap-2021/ml_engineer_roadmap_2021.md |
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
| Data Structures & Algorithms Roadmap with YouTube Resources ๐ | |
| 1 Introduction to DSA : | |
| Start with understanding the basics of data structures. | |
| https://lnkd.in/d-8_5_fE | |
| 2 Arrays and Strings: | |
| Learn about array manipulation, searching, sorting, and string manipulation techniques. |
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
| How to run your front-end and back-end for FREE. | |
| FREE Static Site Hosting | |
| - Netlify | |
| - Vercel | |
| - GitHub Pages | |
| - Render | |
| - Firebase Hosting | |
| - Surge | |
| - Cloudflare pages |
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
| ๐ญ๐ฌ๐ฌ+ ๐ฌ๐ผ๐๐ง๐๐ฏ๐ฒ ๐ฐ๐ต๐ฎ๐ป๐ป๐ฒ๐น๐ ๐๐ผ๐ ๐๐ต๐ผ๐๐น๐ฑ ๐๐๐ฏ๐๐ฐ๐ฟ๐ถ๐ฏ๐ฒ ๐ป๐ผ๐ | |
| โฏ HTML/CSS โ Kevin Powell | |
| โฏ C โ Jacob Sorber | |
| โฏ C++ โ TheCherno | |
| โฏ Java โ Telusko | |
| โฏ C# โ kudvenkat | |
| โฏ Python โ Corey Schafer | |
| โฏ JavaScript โ developedbyed | |
| โฏ SQL โ Joey Blue |
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
| โฆor create a new repository on the command line | |
| echo "# phang-nga-hospital-frontend" >> README.md | |
| git init | |
| git add README.md | |
| git commit -m "first commit" | |
| git branch -M main | |
| git remote add origin https://github.com/MiracleAdvanceTechnologies/phang-nga-hospital-frontend.git | |
| git push -u origin main | |
| โฆor push an existing repository from the command line |
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
| openapi: 3.0.0 | |
| info: | |
| version: 1.0.0 | |
| title: Testing Open Api Spec | |
| description: > | |
| I am learning Open API Specification. This is industry standard specification technique for any web service | |
| termsOfService: https://example.com/terms | |
| contact: | |
| name: Bipon Biswas | |
| url: https://example.com |
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
| openapi: 3.0.0 | |
| info: | |
| version: '1.0.0' | |
| title: 'My Blog API' | |
| description: 'This is the first prefessional api project. This is simple blog api application' | |
| contact: | |
| name: Bipon | |
| url: https://bipon.com | |
| email: bipon@gmail.com | |
| servers: |
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
| Ref: https://app.swaggerhub.com/apis/stacklearner/fs-army-my-blog-api/1.0.0#/ | |
| openapi: 3.0.0 | |
| info: | |
| version: '1.0.0' | |
| title: 'FSArmy - My Blog API' | |
| description: 'This is the first professional api project we creating in full-stack army. This is a simple blog api application where anyone can create a new account, login to their system and create articles that will be visible publicly.' | |
| contact: | |
| name: FS Army | |
| url: https://fsarmy.com |
NewerOlder