Skip to main content

Posts

Geegpay Writing Challenge: The Story of Amina

  Geegpay Writing Challenge Prompt: Life throws us lemons, and sometimes it's hard to make lemonade out of them. Amina, a 25-year-old aspiring photographer, is struggling to make ends meet while juggling freelance gigs and caring for her ageing mother. She feels invisible, undervalued, and on the verge of giving up. But then, an unexpected encounter with a renowned artist reignites her passion and inspires her to take control of her own narrative. Write a 300-word short story from Amina's perspective, showing her journey from despair to determination. Write about the challenges she faces, the things she learns about herself and how she finds the strength to turn things around.     Life throws us lemons, and sometimes it's hard to make lemonade out of them. My Story Starts Here:   Amina was walking down a crowded street with a heavy bag of cameras on her shoulder and a lot on her mind. 25 years old, she was feeling crushed by the pressures of life. She was struggling...
Recent posts

All About The Hidden Wiki (Darknet)

The Hidden Wiki is a website that operates as a directory for the dark web, listing various websites and services that are otherwise difficult to find through regular search engines. The term "dark web" refers to parts of the internet that are not accessible through traditional browsers and are not indexed by search engines. The Hidden Wiki itself is a Tor hidden service, meaning that it is only accessible through the Tor network, which allows users to access the web anonymously. The Hidden Wiki was first launched in 2007 and has since become a popular resource for those looking to explore the dark web. While the existence of dark web sites and their content is a matter of debate, the Hidden Wiki has several potential benefits for those who use it. One of the main advantages of the Hidden Wiki is its anonymity. The Tor network allows users to access the web without revealing their identity or location, which can be useful for individuals who live in countries with strict cens...

How To install Kali Linux (nethunter) On Android (Without root) via proot-distro and install Kali Linux Xfce Desktop On Android using Termux

What is kali linux? Kali Linux is a Debian-derived Linux distribution designed for digital forensics and penetration testing. It is maintained and funded by Offensive Security , This tutorial isn't only about learning how to install Kali Linux. Okay let's run down what we will be doing                        Table Of Content •Installing Kali Linux Terminal •Installing Kali Linux Desktop •Installing Default packages  •Creating vncserver port •Closing vncserver port •Closing multiple vncserver ports  •Reseting Kali Linux •Uninstalling Kali Linux  Okay!!!! Let's Begin Requirements: • Termux  : Click Here To Download Termux   Installation:   Please you can also copy and paste the commands below    The First thing we have to do is to make sure our repositories are up to date, to do that type the command  pkg update   It is essent...

How To install Windows 10 in Termux(Without rooting your Android phone)

   Hello guys what's up, Today we are going to see how easily we can run Windows 10 Operating System on Android Phone just by running few commands on Termux and if you will like this post I will also show you how to run the Windows 8.1 and Kali Linux GUI(Without root) on Android using Termux only in an upcoming post so just comment down below if you are interested. This method is quite interesting as this will make you understand how powerful a Linux terminal can be so without wasting any more time let’s start this tutorial. Below you will find all the resources you need and their download links so Download all the files, install, and copy it to your smartphone's Internal or External Storage. Requirements: •ZArchiver : Click Here To Download ZArchiver • Termux  : Click Here To Download Termux • AVNC :  Click Here To Download AVNC • Windows 10 : Click Here To Download The Windows 10 File After download the windows 10 file you need to Install termux and AVNC server...

Introduction To Python Programming

  Python is a powerful programming language that has gained immense popularity over the years due to its simplicity, flexibility, and versatility. Python is used in a wide range of applications, from web development to data analysis and machine learning. In this article, we'll provide an introduction to Python programming, covering the basics of the language and its key features. History Of Python Python was first created in the late 1980s by Guido van Rossum, a Dutch programmer. Its design philosophy emphasized code readability and simplicity, making it easy for new programmers to learn and use. Python was first released in 1991 and has since become one of the most popular programming languages in the world.   Why Python? Python is a popular programming language for several reasons. Firstly, it is a high-level language, which means that it is easy to read and write. Python code is often more concise and readable than other programming languages, making it easier to maintain a...

Learn All About Machine Learning

  INTRODUCTION TO MACHINE LEARNING The field of machine learning is a big one, and it's not limited to just computer science students. In fact, you can learn all about machine learning by reading this page We'll go over what machine learning is and why it's important for technology. Then we'll break down types of machine learning and how they work in everyday life. Finally, we'll look at some examples where AI has changed our lives for the better—from healthcare to education—and why more people should be interested in this topic! What is Machine learning Machine learning is a type of artificial intelligence that allows computers to learn from data, make predictions and decisions. It's used in many different ways, such as: 1.) To make predictions about future events based on past experience 2.) To automate tasks so the computer can perform them without human intervention or assistance 3.) To improve the user experience by recommending products or services based o...

C++ Variables and Operators

  Variable A variable in C++ is a name for a piece of memory that can be used to store information. There are many types of variables, which determines the size and layout of the variable's memory; Variable names   we can use any combination of letters and numbers for Variable and function names but it must start with a letter. We can use Underscore (_) as a letter in variable name and can begin with an underscore But Identifiers beginning with an underscore are reserved, And identifiers beginning with an underscore followed by a lower case letter are reserved for file scope identifiers Therefore using underscore as starting letter is not desirable. Akki and akki are different identifiers because upper and lower case letters are treated as different identifiers  Variable Types There are many 'built-in' data types in C. short int -128 to 127 (1 byte) unsigned short int 0 to 255 (1 byte) char 0 to 255 or -128 to +127 (1 byte) unsigned char 0 to 255 (1 byte) signed char -128...