Article
In this guide, we'll take a look at how to style a PyQt application. If you're unfamiliar with PyQt, read our Guide to Working with Python's PyQT Framework We'll start with PyQt's default themes and how to change these, before moving forward to using different types of custom styling. Default...
Marko Kosmajac
As technology evolves and becomes more prevalent - including the evolution of large-scale service-oriented architectures, managing web security becomes more and more complex. There are many more edge cases now than there were before, and keeping personal user information secure and safe is becoming increasingly hard. Without proactive security measures,...
Arpendu Kumar Garai
Thymeleaf is a templating (server-side rendering) engine used by many Java software engineers within Spring-based web applications. An important feature of any web application is the support for dynamic URLs and path variables within those URLs. Most REST APIs extensively use path variables to specify the IDs of elements they're...
Guest Contributor
Accidentally committed something to the wrong branch? Perhaps, you just committed the new shining feature, and to your dismay, there's a typo in the user interface you haven't seen before, and you'd like to take the commit back to fix that as well? In some cases, you can fix it,...
David Landup
Matplotlib is one of the most widely used data visualization libraries in Python. Much of Matplotlib's popularity comes from its customization options - you can tweak just about any element from its hierarchy of objects. In this tutorial, we'll take a look at how to turn off a Matplotlib plot's...
End-to-end test automation is an important part of the development lifecycle of any web based application. Choosing the right tool for you and for your application is arguably even more important. In this guide, we'll take a look at end-to-end testing using Cypress. "End-to-end" testing refers to the...
Aleksandar Bursac
The in-memory data store - Redis is extensively used by developers as a database, cache layer, to manage job queues, and more. It comes in handy when you are building APIs with a job queue mechanism to handle tasks like running memory-intensive jobs in the background, counting page visits, or...
Sathiya Sarathi Gunasekaran
Counting sort is a sorting algorithm used to sort elements of an array in linear time. We usually use Counting Sort to sort integer arrays. Counting Sort is a stable, non-comparative algorithm. Non-comparative sorting algorithms perform sorting without any comparison between elements to be sorted. Stable sorting algorithms preserve the...
Dimitrije Stamenic
In this article, we will take a look at how to check if an element is hidden with JQuery. Here are the most common ways to check the visibility of an element: console.log($(myElement).is(":hidden")) console.log($(myElement).is(":visible")) console.log($(myElement).css(...
Ruslan Hasanov
© 2013-2025 Stack Abuse. All rights reserved.