• (KOR) N과 M(2)

    Problem – ⭐️⭐️⭐️⭐️⭐️ https://www.acmicpc.net/problem/15650 Solution Key Points Use StringBuilder to print all outputs instead of System.out.println Backtracking removes the case that we already checked Read more

  • (KOR) N과 M(1)

    Problem – ⭐️⭐️⭐️⭐️⭐️ https://www.acmicpc.net/problem/15649 Solution Key Points Use StringBuilder to print all outputs instead of System.out.println Backtracking removes the case that we already checked Backtracking is used when we have to print all or get all cases. Read more

  • What is a Docker container?

    What is a Docker container?

    A container is a sandbox that isolates either process or application from others. Unless you explicitly connect with other containers, process under a container sees only the other processes inside the same container. It offers a logical packaging mechanism that abstracts applications from the environments. This allowed applications to be deployed easily and consistently. Docker… Read more

  • What is Nginx?

    Nginx is an open source software for web serving, reverse proxying, load balancing, caching and more. It started as a web server designed to improve the bottlenecks of Apache. (To check comparison between Nginx and Apache, refer to this blog) What is different from other web servers? Unlike other traditional web servers that uses a… Read more

  • What is a Web Server and how it works

    What is Web Server? A web server is server software/hardware that can satisfy client requests on the Web. It is a HTTP server that stores and delivers the content of a website to client(e.g. web browser, mobile). The content can be either static (e.g. text, images) or dynamic (e.g. a computed list of items). To… Read more

  • Threads in Operating System

    Threads in Operating System

    What is Thread? Thread is a flow of execution through the process code. Thread lives within a process, and one process can contain multiple threads. Thread has its own Program counter – Keeps track of which instruction to execute next System register – Current working variables Stack – Stores execution history And shares a few… Read more