Disclaimer – The application has to be vulnerable (e.g. gets, scanf, strcpy) for an overflow attack. – Modern compilers are
Continue readingCategory: Technology
RL methods for ANN’s (Selection)
This article is about two common methods of reinforcement learning (RL) for artificial neural networks (ANN’s). Backpropagation … Based on
Continue readingAnalysing more complex data types (GDB)
Code Analysis Info: The used version of Python Pretty-Printer (used by GDB) couldn’t handle ‘print pastries’.
Continue readingProblems happening with multithreading (C++)
The two most common problems that are happing when dealing with multithreading are the deadlock and the race condition. Follow
Continue readingCommon reasons for program crashes (C++)
1. Illegal memory access 2. Allocating to much memory 3. Unsolved error handling
Continue readingVisitor (Design pattern)
The purpose of that behavioral design pattern is to add a new operation without adding it to the existing object
Continue readingDependency injection (Design pattern)
As the name of this creational design pattern already shows dependencies are getting injected (as parameter) instead of creating them
Continue readingComposite (Design pattern)
That structural design pattern allows to create trees of objects and to interact with them as they are just a
Continue readingImaging techniques (Medicine)
Computed Tomography (CT) Used technology: X-ray radiation Good contrast: Bones Advantages: Fast Disadvantages: Radiation exposure! Functionality: Electrons are emitted from
Continue readingCompiler optimization
A compiler with enabled optimization (via flags) will take more time for the generation, but the execution of generated binary
Continue reading