window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'G-JYLJ7J3717');

Programming

A B C D F H L N P S U V Y
  • Adapter Pattern - Adapter Entwurfsmuster Programmieren lernen

Adapter Pattern

2023-12-10T19:27:22+01:00Tags: , , , , , , , , , |

The Adapter Pattern is a structural design pattern for software that allows objects with incompatible interfaces to work together. It converts the interface of a class into another interface so that this API then meets the functional requirements and is easily maintainable without changing the source code of the original class. The properties of the Adapter Pattern are always very useful when an API to be adapted is not within the sphere of influence of the software to be changed.

Authentication

2023-10-13T11:40:19+02:00Tags: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , |

Authentication is a multi-step process in identity management. Authentication in an IT system implements IT security functions that are realized by various security services and components.

  • Bootstrapping in der Softwareentwicklung

Bootstrapping

2023-12-15T16:09:26+01:00Tags: , , , , , , , , , , , , , , , , , , , |

What is bootstrapping? Bootstrapping is the technical way in which a software stack is defined, i.e. how an application is configured and started. Bootstrapping is therefore a typical deployment process.

  • Bridge-Pattern Konzept in der Softwareentwicklung - Softwarearchitektur Pattern

Bridge pattern

2023-12-22T08:04:55+01:00Tags: , , , , , , , , |

The bridge pattern is a design pattern for software that serves to decouple an abstraction from your implementation so that both software components can be changed independently of each other without influencing each other. Bridge patterns are useful tools for creating flexible, modular and easy-to-maintain systems.

  • Clustering Algorithmus - Algorithmen zum Clustern von Daten

Clustering algorithm

2023-12-08T09:52:05+01:00Tags: , , , , , , , , , , , , , , , , , , , , , , , , |

Would you like to know what a clustering algorithm is? Find out what the clustering algorithm is and what you can use it for. We explain how a clustering algorithm works in pseudocode.

  • Coden im Team - Warum gemeinsam programmieren so effektiv ist

Coding in a team: Why programming together is so effective

2023-12-06T10:06:40+01:00Categories: Learn programming, Software development|Tags: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , |

Coding in a team: How to realize better software and achieve better results with other developers. You'll learn why it pays to collaborate with other software developers & how to specifically improve your own skills.

  • Heap Baum - Ein vollstaendiger binaerer Baum der die Struktur eines Heaps repraesentiert. Die Wurzel hat die groesste Zahl fuer einen Max-Heap

Heap

2023-12-22T08:13:35+01:00Tags: , , , , , , , , , , , , , , , , , , , , , , , , |

What is a heap? The heap is a dynamic memory and therefore a memory area from which computers can request contiguous memory sections at program runtime and release them again in any order. This makes heap memory an alternative to local stack memory.

Go to Top