Skip to Content

MysteryCoder

The goal of this website is to provide users legitimate information on software engineering without including garbage from AI generation or clickbait content.

MysteryCoder

The goal of this website is to provide users legitimate information on software engineering without including garbage from AI generation or clickbait content.

  • Home
Software Engineering

Create a RabbitMQ Docker Container for C# .NET Core application on Windows

Owner 2024-11-05 1 Comments

Install Docker / Docker Desktop. Run a command (using Powershell or cmd): docker run -d --hostname rmq --name rabbit-server -p 8080:15672 -p 5672:5672 rabbitmq:4-management- Hostname: --hostname rmq- Container name: --name…

Software Engineering Software Specification

OCL: Ultimate Object Constraint Language using OCLE guide, cheatsheet

Owner 2024-06-03 3 Comments

From the wikipedia: The Object Constraint Language (OCL) is a declarative language describing rules applying to Unified Modeling Language (UML) models developed at IBM and is now part of the…

Information System Security

McCumber Cube usage for information security in real life with examples

Owner 2024-02-27 1 Comments

The McCumber Cube is a model that helps analyze and assess the security aspects of information systems. This security model is depicted as a three-dimensional Rubik's Cube-like grid. It consists…

Blog

Solving N-Queens multi-threading problem with level based solution and OpenMP

Owner 2023-12-12 0 Comments

The N-Queens problem involves placing N chess queens on an N×N chessboard without any queen threatening another. It is typically solved using backtracking algorithms. Multi-threading is employed to enhance efficiency,…

Blog

N-Queens problem solved with C#. Recursive, non-recursive and multithreading solutions.

Owner 2023-11-13 0 Comments

Recursive solution Recursive solution. Should be called using SolveNQueens(int N) method. public class NQueensAlgorithm { List<List<string>> ans; List<List<char>> board; public List<List<string>> SolveNQueens(int N) { ans = new List<List<string>>(); board =…

Concepts Software Engineering

Demystifying Idempotence: A Beginner-Friendly Guide

Owner 2023-10-08 0 Comments

When it comes to understanding idempotence, the information found on the most popular web pages can be overwhelmingly complex. However, fear not! This comprehensive guide has been crafted to demystify…

Recent Posts

  • Create a RabbitMQ Docker Container for C# .NET Core application on Windows
  • OCL: Ultimate Object Constraint Language using OCLE guide, cheatsheet
  • McCumber Cube usage for information security in real life with examples
  • Solving N-Queens multi-threading problem with level based solution and OpenMP
  • N-Queens problem solved with C#. Recursive, non-recursive and multithreading solutions.

Recent Comments

  1. XRlog on Create a RabbitMQ Docker Container for C# .NET Core application on Windows
  2. XRlog on OCL: Ultimate Object Constraint Language using OCLE guide, cheatsheet
  3. XRumer23log on McCumber Cube usage for information security in real life with examples
  4. X22log on OCL: Ultimate Object Constraint Language using OCLE guide, cheatsheet
  5. X22log on OCL: Ultimate Object Constraint Language using OCLE guide, cheatsheet

Archives

  • November 2024
  • June 2024
  • February 2024
  • December 2023
  • November 2023
  • October 2023

Categories

  • Blog
  • Concepts
  • Information System Security
  • Software Engineering
  • Software Specification

MysteryCoder

The goal of this website is to provide users legitimate information on software engineering without including garbage from AI generation or clickbait content.

Copyright © All rights reserved | mysterycoder.com 2023.