Learn how to code and develop a calculator using Python 3
Category Archives: Programing
Make a program that flips a coin in Python 3
Welcome back to another tutorial, today we will be making a script that flips a coin and randomly selects heads or tails. To start, make a new python file and name it CoinFlip, once you’ve done that you will need to import the random module. Add the following to the first line of code: import …
Continue reading “Make a program that flips a coin in Python 3”
bash make a simple email-bruter
welcome to hacking a rise I’m the Laughingman here to teach ya how to make a simple script for brute forcing emails using hydra it mite work it mite not work but the main thing is you are learning bash so lets go on …. What is bash Bash is a Unix shell and command …
Make an IP finder using python 3
Welcome Everyone, in today’s tutorial I will be teaching you how to make an IP finder using socket in Python. To start, fire up Pycharm and create a new file for this tutorial I named my file “IP”. next, we should import the socket module by adding the following to line 1: Import socket This …
Bash part one Hello Hacking a rise
welcome to hacking a rise in this post we going to show you some basic Bash (aka shell) scripting with a script called hello world we going to explain with bash is and with the functions are as we progress on this part the blog now instead reading this and get stuck in to this …
Python Tutorial 4 – Installing Modules
Welcome back to another tutorial, today I will be showing you how to install modules and add more functionality to your script. To start, make a new file and import the following import os import sys import time Once you’ve done that we’re going to install a module called “pyautogui” which allows for simple …
Python Tutorial 3 – Simple login
Welcome back to another Python tutorial, In this tutorial, I will show you how to make a simple login using if statements and strings. To start, make a new python file, name it what you like. Once created remember to type the following: import os import sys import time We won’t be using any …
Python tutorial 2 – if statements and Strings
Welcome back, in this tutorial you will learn how to use if statements and variables. Start off by creating a new file, name it whatever you wish. For this program, you don’t need to import anything but I would recommend you import os import sys import time as it’ll save time in the long …
Continue reading “Python tutorial 2 – if statements and Strings”
Python tutorial part 1 – Setting up
In this article, we will be setting up a Python workspace and learning to make a simple program. To start you need to download python, I recommend you go here as it is the official python website. After you’ve installed Python, go here to download PyCharm which is what I will be using during these tutorials. Once …
BASICS OF BASH SCRIPTING
Bash aka (shell) is used mostly in the Unix and Linux systems this the commands we use Example ls list files in a directory or are mostly use cd changes the shells current working directory. Bash is great to write scripts with as it easy to learn and faster to script so open your fav …