Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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 }}


    {% for page in site.pages %}
    {% if page.resource == true %}
    {% for pc in page.categories %}
    {% if pc == cat %}

  • {{ page.title }} — {{ page.desc }}

  • {% 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';
}
});