Django Django is a high-level web framework for building web applications in Python. It was designed to help developers take applications from concept to completion quickly. Django provides tools for building web applications, including a powerful and dynamic URL routing system, an Object-Relational Mapping (ORM) layer for interacting with databases, […]
Devamını Oku
Code review, or peer review, is a quality assurance activity in software development where one or several individuals examine parts of the code. The purpose of code review is to ensure that the code base is of good quality and to allow reviewers and authors to learn from each other. […]
Devamını Oku
Suhosin is an advanced protection system for PHP installations. It was designed to protect servers and users from known and unknown flaws in PHP applications and the PHP core itself. Suhosin is implemented as a PHP extension and offers several security features that can be fine-tuned through configuration options. Suhosin’s […]
Devamını Oku
Many tools and applications can help you with code review and quality control for your Python projects on GitHub. Some of the popular ones are: MultiQC: A tool aggregating quality control reports from multiple devices across many samples into a single report. It supports various Python tools such as FastQC, […]
Devamını Oku
SonarQube is an open-source platform developed by SonarSource for continuous inspection of code quality. It provides automated reviews with static code analysis to detect bugs and code smells in 29 programming languages. SonarQube offers reports on duplicated code, coding standards, unit tests, code coverage, code complexity, comments, bugs, and security […]
Devamını Oku
A helpful notation suggestion for purposes such as displaying commit messages properly in the repo, facilitating issue tracking, automatic changelog creation, and convenience in cherry-picking
Devamını Oku
Memory-safe languages incorporate features and mechanisms to prevent common memory-related errors, such as buffer overflows, dangling pointers, and memory leaks. These languages provide built-in safeguards and automated memory management to minimize the risk of memory-related vulnerabilities. Some of the prominent memory-safe languages include: Rust Rust is a systems programming language […]
Devamını Oku
In recent years, especially with the pandemic, everything has been moving very fast. The release of .NET 5 by Microsoft was only a year and a half ago (specifically on November 10, 2020) and we have to say goodbye to it. Sadly, Microsoft’s deadline for developers to migrate to .NET […]
Devamını Oku
The Zen of Python is a collection of 19 “guiding principles” for writing computer programs that influence the design of the Python programming language. Software engineer Tim Peters wrote this set of principles and posted it on the Python mailing list in 1999. Peters’s list left a 20th principle “for […]
Devamını Oku
The onion architecture is not as well known as the 3-tier architecture but is gaining a lot of attention during the microservices era. It structures your software so that it is easy to change technologies without impacting business logic. Coupled with DDD principles it offers a powerful way to build […]
Devamını Oku