Python

161 Articles 5 Followers


Python | Face Detection

1 Mar 2023 3 minute read 0 comments Casper_x

Face Detection Artificial intelligence is a technology that has evolved significantly in recent years. One of its most popular application areas is facial recognition, which allows for the detection and identification of human faces in images and vid...

Python | QR Code Generator

27 Feb 2023 2 minute read 0 comments Casper_x

QR Code Generator    QR codes have become increasingly prevalent in our world and are rapidly replacing the traditional barcode. This trend is likely to continue as QR codes offer a more efficient way of storing and retrieving information. Are you re...

Python | Scrabble Helper

25 Feb 2023 2 minute read 5 comments Casper_x

How to use the 'Scrabble Helper' Python script   Are you a Scrabble enthusiast looking to take your game to the next level? Look no further than the "Scrabble Helper" Python script! This script is designed to help you find the best words to play in S...

Kivy Python canvas

22 Dec 2022 2 minute read 1 comment Sthappened

Today, we will look at canvas. You can operate with canvas in .py file using with self.canvas:; or in .kv file using canvas:. What is canvas Canvas is a place which contains some objects. For example: Rectangle RoundedRectangle Color Ellipse We'll...

Notes on Cryptography for Dummies (Part 1)

19 Dec 2022 7 minute read 0 comments Great White Snark

I know a little about cryptography and related practices (encryption & decryption, hashing, encoding & decoding). However, my knowledge is limited to how to use certain libraries in certain programming languages (AES in PHP and JavaScript, Bouncy Cas...

Ai adoption

14 Dec 2022 4 minute read 0 comments Stylianos Kampakis

On this article I'm going to discuss the topic of AI adoption. I'm going to talk about a couple of ways which organizations and companies can use in order to adopt AI more easily. More specifically, I'm going to talk about two areas of machine learni...

Kivy Layouts and widgets

12 Dec 2022 2 minute read 0 comments Sthappened

Before doing anything in Kivy it is important to understand what Layouts and Widgets are and how to work with them. What is a widget? Widget is any visual object which you can create with Kivy. For example Button, Label, TextInput... You can place th...

What is Kivy?

11 Dec 2022 1 minute read 0 comments Sthappened

Kivy is an open-source Python framework used to create a cross-platform GUI (graphical user interface) apps. Why should you choose Kivy? Kivy has lots of different options, despite this, it is relatively simple. If you want to create an app with GUI...

Web3 Development - First Contact (Python)

11 Dec 2022 5 minute read 0 comments santra

Welcome to the Python branch of my Web3 Development series. This is the first section, where we'll walk through some basic use cases of web3.py, Ethereum's Web3 library for Python. We'll create a short script to accomplish the following: Get the lat...

How to bypass CAPTCHA in python

24 Nov 2022 4 minute read 0 comments Dspyt

You may have already solved a number of captchas while filling out a form or registering for a website. The basic goal of Captcha is to determine whether the user is human or a bot. Captcha is an abbreviation for "Completely Automated Public Turing T...