Programming Courses | Courses | archita phukan | Love Babbar | Coding Ninja | Durgasoft | ChatGPT prompt AI Prompt
3.3K subscribers
636 photos
15 videos
1 file
144 links
Programming
Coding
AI Websites

πŸ“‘Network of #TheStarkArmyΒ©

πŸ“ŒShop : https://t.me/TheStarkArmyShop/25

☎️ Paid Ads : @ReachtoStarkBot

Ads policy : https://bit.ly/2BxoT2O
Download Telegram
πŸ”° Keep your multi-tab web apps in sync.

BroadcastChannel lets you send messages between tabs instantly, avoiding inconsistent state and improving user experience.

@CodingCoursePro
Shared with Loveβž•
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
40 Ways For Passive Income

🎨 VIRTUAL PRODUCTS DESIGN
* Print on Demand (POD)
* Printable
* Infographics
* Your Original Fonts
* Digital Art & Clip Art
* 3D Models & Renderings
* Coloring Pages & Books
* Building Plans
* Architectural Plans
* Board game Printouts

🧡 CRAFTS & ARTS
* Selling Crochet Patterns
* Sewing Patterns
* Painting Tutorials
* Drawing Lessons
* Woodworking Instructions

✍️ WRITING
* Online Teaching Courses
* eBooks
* Kindle Books

πŸ’» SOFTWARE & APPS
* Business Doc Templates
* Apps
* Selling Digital Photos
* Selling Lightroom Pre-sets
* 3-D Models
* Worksheets (EDU. Curriculum)

🧘 WELLNESS
* Nutrition Plans
* Meal-Prep Plans
* Workout Plans
* Custom Beauty/Style/Skincare
* Custom Travel Planning

πŸ”— AFFILIATE MARKETING
* Shopping Referral Programs
* Affiliate Networks
* Virtual Products and Courses

πŸ“Ί ADVERTISING INCOME FROM ADS
* Ads from Networks
* Ads from Companies
* YouTube Cartoons
* YouTube Audiobooks
* YouTube Foreign Language Lessons
* YouTube Popular Children Songs
* YouTube DIY Tutorials

🌐 ONLINE SERVICES
* Reselling Web Hosting
* Local Directories
* Job Boards

Credit goes to @Mr_NeophyteX
Copy with Credit or get copyright banned.
❀1
πŸ“£ Hey, did you know?! πŸ€”πŸ’­

😱✨ You can download ALL the personal info Google has about you! πŸ€—πŸ’»

βœ… Just head over to:
πŸ”—
takeout.google.com

πŸ“¦ There, you can grab your:
πŸ“Œ πŸ” Search History
πŸ“Œ πŸ“§ Gmail Emails
πŸ“Œ πŸ“ Google Drive Files
πŸ“Œ πŸŽ₯ YouTube Activities
πŸ“Œ πŸ–Ό Google Photos Images
...and so much more! 🧠πŸ’₯

πŸ“‚ It’s super easy β€” just pick what you want, and Google will pack it all into a neat downloadable file for you. πŸŽπŸ“€


🚨 Heads up! It’s really important to know how much info Google keeps on you. πŸ•΅οΈβ€β™€οΈ
Your privacy = your power! πŸ”πŸ’ͺ

πŸ“² Take control, get your data, and stay informed! 🌍✨


Credit goes to @Mr_NeophyteX
Give proper Credit to avoid copyright banned.
Managing multiple JavaScript files and their dependencies can become complex.

Module bundlers simplify this process by combining various assets: JavaScript, CSS, HTML, into a single or smaller set of files, optimizing web applications for performance and maintainability.

@CodingCoursePro
Shared with Loveβž•
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
βœ… Backend Basics Interview Questions – Part 3 (Express.js Middleware) πŸš€πŸ§ 

πŸ“ 1. What is Middleware in Express.js?
A: Middleware are functions that execute during the request-response cycle. They can modify req/res, execute code, or end the request.

πŸ“ 2. Types of Middleware
⦁ Application-level: Applied to all routes or specific routes (using app.use())
⦁ Router-level: Applied to router instances
⦁ Built-in: e.g., express.json(), express.static()
⦁ Third-party: e.g., cors, morgan, helmet

πŸ“ 3. Example – Logging Middleware
app.use((req, res, next) => {
console.log(`${req.method} ${req.url}`);
next(); // Pass to next middleware/route
});


πŸ“ 4. Built-in Middleware
app.use(express.json()); // Parses JSON body
app.use(express.urlencoded({ extended: true })); // Parses URL-encoded body
app.use(express.static('public')); // Serves static files


πŸ“ 5. Router-level Middleware
const router = express.Router();
router.use((req, res, next) => {
console.log('Router Middleware Active');
next();
});
app.use('/api', router);


πŸ“ 6. Error-handling Middleware
app.use((err, req, res, next) => {
console.error(err.stack);
res.status(500).send('Something broke!');
});


πŸ“ 7. Chaining Middleware
app.get('/profile', authMiddleware, logMiddleware, (req, res) => {
res.send('User Profile');
});


πŸ’‘ Pro Tip: Middleware order mattersβ€”always place error-handling middleware last.

πŸ’¬ Tap ❀️ for more!
@CodingCoursePro
Shared with Loveβž•
Please open Telegram to view this post
VIEW IN TELEGRAM
πŸ–₯ ACTIVATE CHATGPT-GO 1 YEAR FREE. πŸ–₯

Steps::

πŸ‘‰Open ChatGPT on web. A popup for the 12-months free upgrade will appear, or click β€œUpgrade for FREE” at the top. (Not available in the mobile app.)

πŸ‘‰You’ll see β‚Ή399 and β‚Ή0 for the 12-month ChatGPT Go plan. Click β€œUpgrade to Go.”

πŸ‘‰Enter your details

πŸ‘‰On the payment page, choose card or UPI (Pay without link) β€”
β‚Ή0 will be charged, and your plan will activate.

Credit goes to @Mr_NeophyteX
Mention credit to avoid copyright banned.
Please open Telegram to view this post
VIEW IN TELEGRAM
βœ… Backend Basics Interview Questions – Part 4 (REST API) πŸš€πŸ’»

πŸ“ 1. What is a REST API?
A: REST (Representational State Transfer) APIs allow clients to interact with server resources using HTTP methods like GET, POST, PUT, DELETE.

πŸ“ 2. Difference Between REST & SOAP
⦁ REST is an architectural style using HTTP, lightweight, and supports JSON/XML for stateless communication.
⦁ SOAP is a strict protocol, heavier, XML-only, stateful, with built-in standards for enterprise reliability and security.

πŸ“ 3. HTTP Methods
⦁ GET β†’ Read data
⦁ POST β†’ Create data
⦁ PUT β†’ Update data (full replacement)
⦁ DELETE β†’ Delete data
⦁ PATCH β†’ Partial update

πŸ“ 4. Example – Creating a GET Route
app.get('/users', (req, res) => {
res.send(users); // Return all users
});


πŸ“ 5. Example – POST Route
app.post('/users', (req, res) => {
const newUser = req.body;
users.push(newUser);
res.status(201).send(newUser);
});


πŸ“ 6. Route Parameters & Query Parameters
app.get('/users/:id', (req, res) => {
res.send(users.find(u => u.id == req.params.id));
});
app.get('/search', (req, res) => {
res.send(users.filter(u => u.name.includes(req.query.name)));
});


πŸ“ 7. Status Codes
⦁ 200 β†’ OK
⦁ 201 β†’ Created
⦁ 400 β†’ Bad Request
⦁ 404 β†’ Not Found
⦁ 500 β†’ Server Error

πŸ“ 8. Best Practices
⦁ Validate request data
⦁ Handle errors properly
⦁ Use consistent endpoint naming (e.g., /api/v1/users)
⦁ Keep routes modular using express.Router()

πŸ’¬ Double Tap ❀️ for more!
@CodingCoursePro
Shared with Loveβž•
Please open Telegram to view this post
VIEW IN TELEGRAM
The code `*#899#` is a secret (engineering or diagnostic) code used on some Android smartphones, especially OPPO, Realme, and OnePlus devices (since they share ColorOS / OxygenOS / RealmeUI roots).

When you dial `*#899#` in the phone dialer, it opens the Engineer Mode or Device Test Menu β€” a hidden diagnostic interface used by technicians and advanced users to test hardware components and system functions.

Here’s a list of common usages and functions found under `*#899#`:

---

### πŸ”§ Main Uses of `*#899#` Engineer Mode

1. Hardware Testing

* Test the display (colors, touch, brightness)
* Test vibration motor
* Test speaker and receiver
* Test microphone
* Test camera (front/rear, focus, flash)
* Test proximity and light sensors
* Test gyroscope, accelerometer, compass
* Test fingerprint sensor
* Test SIM card and network functions

2. Software & System Diagnostics

* Check software version and build number
* Log system information
* Check baseband version and radio info
* Access bug reports and device logs

3. Network & Connectivity Tests

* Wi-Fi test
* Bluetooth test
* GPS test
* NFC test
* Mobile network (LTE/5G) test

4. Battery & Power Management

* Check battery health
* Voltage, temperature, and charging status
* Power consumption data

5. Device Calibration

* Calibrate sensors (gyroscope, proximity, light)
* Touch screen calibration

6. Debugging / Factory Verification

* Perform factory hardware checks
* View test history
* Run automated diagnostic tests

---

⚠️ Important Notes:

* This menu is meant for service technicians; changing settings inside it may affect device performance or calibration.
* Not all options work or appear on every phone β€” it depends on the manufacturer and firmware version.
* Avoid modifying values unless you know what they do.


Credit goes to @Mr_NeophyteX
Mention credit to avoid copyright banned.
❀1