BLOG

Latest Articles

DevSecOps vs DevOps - Explaining the Difference

Although DevOps has been serving a phenomenal role in development processes for many years, it's been lacking one small aspect - security. Therefore DevSecOps

By admin · 4 min read · DevOPs

How to run memtest on Ubuntu? [SOLVED]

Memtester is a memory testing program designed to stress test and test the system's random access memory for errors by writing test patterns to most memory

By omercakmak · 5 min read · Ubuntu

How to print object in JavaScript? [SOLVED]

Everything in JavaScript is an object. So simply, in order to print objects in JavaScript, you will need to use the console.log() method. This method takes an

By olorunfemiakinlua · 3 min read · JavaScript

Golang slice append return value? [SOLVED]

In the previous chapter, we discuss how to use append function in Golang. append is a built-in function which appends elements to the end of a slice. If it

By tuannguyen · 4 min read · GOLANG Solutions

Python isupper() Method [with Examples]

python isupper shows whether a string of characters contains only capital letters or not. If at least one character is lowercase, it returns FALSE.

By bashiralam · 9 min read · Python