-
-
Notifications
You must be signed in to change notification settings - Fork 16
Partially fix broken reference links in interview experiences #106
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -80,7 +80,7 @@ The interviewer expected a **solid understanding of technologies** and clear exp | |
| **References:** | ||
| - https://www.geeksforgeeks.org/operating-systems/ | ||
| - https://www.geeksforgeeks.org/dbms/ | ||
| - https://www.geeksforgeeks.org/reactjs-tutorial/ | ||
| - https://www.geeksforgeeks.org/reactjs/react/ | ||
| - https://www.geeksforgeeks.org/javascript-tutorial/ | ||
|
|
||
| --- | ||
|
|
@@ -98,7 +98,7 @@ This was the **final round**, primarily behavioral. | |
| The round was calm, friendly, and conversational. | ||
|
|
||
| **Reference:** | ||
| - https://www.indeed.com/career-advice/interviewing/hr-interview-questions | ||
| - https://www.geeksforgeeks.org/hr/hr-interview-questions/ | ||
|
|
||
| --- | ||
|
|
||
|
|
@@ -144,6 +144,6 @@ The interviews emphasized: | |
| - https://www.indiabix.com/verbal-ability/questions-and-answers/ | ||
| - https://www.geeksforgeeks.org/operating-systems/ | ||
| - https://www.geeksforgeeks.org/dbms/ | ||
| - https://www.geeksforgeeks.org/reactjs-tutorial/ | ||
| - https://www.geeksforgeeks.org/reactjs/react/ | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Format bare URLs in references section to comply with markdownlint (MD034). Similar to Stripe_Exp1/index.md, wrap bare URLs in markdown link syntax: ## 🔗 Reference Links
- https://www.techmahindra.com/
+ - [Tech Mahindra](https://www.techmahindra.com/)
- https://www.geeksforgeeks.org/data-structures/
+ - [Data Structures – GeeksforGeeks](https://www.geeksforgeeks.org/data-structures/)
- https://leetcode.com/problemset/all/
+ - [LeetCode Problems](https://leetcode.com/problemset/all/)
- https://www.indiabix.com/aptitude/questions-and-answers/
+ - [Aptitude Questions – IndiaBIX](https://www.indiabix.com/aptitude/questions-and-answers/)
- https://www.indiabix.com/verbal-ability/questions-and-answers/
+ - [Verbal Ability – IndiaBIX](https://www.indiabix.com/verbal-ability/questions-and-answers/)
- https://www.geeksforgeeks.org/operating-systems/
+ - [Operating Systems – GeeksforGeeks](https://www.geeksforgeeks.org/operating-systems/)
- https://www.geeksforgeeks.org/dbms/
+ - [DBMS – GeeksforGeeks](https://www.geeksforgeeks.org/dbms/)
- https://www.geeksforgeeks.org/reactjs/react/
+ - [React.js – GeeksforGeeks](https://www.geeksforgeeks.org/reactjs/react/)
- https://www.geeksforgeeks.org/javascript-tutorial/
+ - [JavaScript Tutorial – GeeksforGeeks](https://www.geeksforgeeks.org/javascript-tutorial/)
- https://www.geeksforgeeks.org/hr/hr-interview-questions/
+ - [HR Interview Questions – GeeksforGeeks](https://www.geeksforgeeks.org/hr/hr-interview-questions/)Also applies to: 149-149 🧰 Tools🪛 markdownlint-cli2 (0.18.1)147-147: Bare URL used (MD034, no-bare-urls) 🤖 Prompt for AI Agents |
||
| - https://www.geeksforgeeks.org/javascript-tutorial/ | ||
| - https://www.indeed.com/career-advice/interviewing/hr-interview-questions | ||
| - https://www.geeksforgeeks.org/hr/hr-interview-questions/ | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,14 +1,14 @@ | ||
| # Inside stories. Real experiences. Tech Mahindra interviews, unfiltered. | ||
|
|
||
| ## 📚 SDE | ||
| ## 📚 SDE Intern (TechnoRise Intern) | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fix table row numbering error in row 3. Line 11 has row index 🔎 Proposed fix for row numbering| # | Role | View |
|:-:|:---------------------------------|:--------------------------------------------------------------------------------------------:|
| 1 | **TechnoRise Intern 2025** | [📥 Open](./Tm_Exp1) |
| 2 | **TechnoRise Intern 2025** | [📥 Open](./Tm_Exp2) |
-| 2 | **TechnoRise Intern 2025** | [📥 Open](./Tm_Exp3) |
+| 3 | **TechnoRise Intern 2025** | [📥 Open](./Tm_Exp3) |Also applies to: 9-11 🤖 Prompt for AI Agents |
||
|
|
||
| <div align="center"> | ||
|
|
||
| | # | Role | View | | ||
| |:-:|:---------------------------------|:--------------------------------------------------------------------------------------------:| | ||
| | 1 | **Technorise Intern 2026** | [📥 Open](./Tm_Exp1) | | ||
| | 2 | **Technorise Intern 2026** | [📥 Open](./Tm_Exp2) | | ||
| | 2 | **Technorise Intern 2026** | [📥 Open](./Tm_Exp3) | | ||
| | 1 | **TechnoRise Intern 2025** | [📥 Open](./Tm_Exp1) | | ||
| | 2 | **TechnoRise Intern 2025** | [📥 Open](./Tm_Exp2) | | ||
| | 2 | **TechnoRise Intern 2025** | [📥 Open](./Tm_Exp3) | | ||
|
|
||
| </div> | ||
|
|
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Format bare URLs in references section to comply with markdownlint (MD034).
The reference links section contains bare URLs that violate markdownlint's MD034 rule (no-bare-urls). Wrap them in markdown link syntax for consistency:
🤖 Prompt for AI Agents