Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sunilsoni/interview-docs
Interview questions and answers preparation notes Angular, AWS, Data Structures and Algorithms, Database,Design Patterns, DevOps,Docker, Java, Java8, Multithreading, Kafka, Microservices, Miscellaneous, OOPS,React,Spring, Cucumber, GoodPractices, owasp
https://github.com/sunilsoni/interview-docs
interview interview-docs interview-notes interview-practice interview-preparation interview-questions interviews
Last synced: 7 days ago
JSON representation
Interview questions and answers preparation notes Angular, AWS, Data Structures and Algorithms, Database,Design Patterns, DevOps,Docker, Java, Java8, Multithreading, Kafka, Microservices, Miscellaneous, OOPS,React,Spring, Cucumber, GoodPractices, owasp
- Host: GitHub
- URL: https://github.com/sunilsoni/interview-docs
- Owner: sunilsoni
- Created: 2022-01-07T14:38:15.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-12-21T14:41:16.000Z (about 1 year ago)
- Last Synced: 2024-11-15T04:28:35.446Z (2 months ago)
- Topics: interview, interview-docs, interview-notes, interview-practice, interview-preparation, interview-questions, interviews
- Homepage: https://interview-docs.com
- Size: 24 MB
- Stars: 6
- Watchers: 3
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
---
layout: default
title: Home
nav_order: 1
resource: true
description: "Welcome to Interview Pages"
permalink: /
---## Welcome to Interview Pages
---
{% for cat in site.category-list %}
### {{ cat }}
-
{{ page.title }} — {{ page.desc }}
{% for page in site.pages %}
{% if page.resource == true %}
{% for pc in page.categories %}
{% if pc == cat %}
{% endif %}
{% endfor %}
{% endif %}
{% endfor %}
{% endfor %}
---
## How to contribute
Please feel free to raise issues if you can't get something to work, find a bug, or you have any ideas for improvements.
---
Dark color scheme
const toggleDarkMode = document.querySelector('.js-toggle-dark-mode');
jtd.addEvent(toggleDarkMode, 'click', function(){
if (jtd.getTheme() === 'dark') {
jtd.setTheme('light');
toggleDarkMode.textContent = 'Dark color scheme';
} else {
jtd.setTheme('dark');
toggleDarkMode.textContent = 'Return to the light side';
}
});