Posts

Showing posts from August, 2022

Linux

Image
Linux (in English: Linux) is a family of free and open source operating systems, operating systems based on the Linux kernel are called Linux. Generally, there is a packaged Linux distribution or Linux distro for both desktop and server use. The defining component of a Linux distribution is the Linux kernel, which is an operating system kernel. Linus Torvalds first published it on September 17, 1991. Most Linux distributions use the term Linux with their operating system names, and the Free Software Foundation uses the term GNU/Linux to refer to this operating system family. Linux was originally developed for PCs based on the Intel X-86 architecture. But, currently it is ported/used on more platforms than any other operating system. Due to the dominance of Linux kernel based operating system Android in the smartphone world, Linux has the largest installed base than any other operating system. Linux is the only operating system used on Linux servers and other large hardwar

Ransomware

Image
Ransomware is a type of malware (Malware) i.e. it can be said to be a type of harmful virus that can hack any computer device and whose computer device does not allow him to enter the computer i.e. whose computer he cannot access himself. . All the data on the hard disk of the computer goes to the hackers (hacker) and if you do the computer you will see that you will be asked to pay some dollars through Bitcoin (Bitcoin) 300 dollars or 500 dollars to get those data back. Even if you give money, there is no guarantee that all the data of your computer will be returned to you, that is, there is no possibility of getting those data (such as photos, videos, important files, everything) back.

Karbala

Prior to his death, the Umayyad caliph Muawiyah I had nominated his son Yazid as his successor. Yazid's nomination was contested by the sons of a few prominent companions of Muhammad, including Husayn, son of the fourth caliph Ali, and Abd Allah ibn Zubayr, son of Zubayr ibn al-Awwam. Upon Muawiyah's death in 680 CE, Yazid demanded allegiance from Husayn and other dissidents. Husayn did not give allegiance and traveled to Mecca. The people of Kufa, an Iraqi garrison town and the center of Ali's caliphate, were averse to the Syria-based Umayyad caliphs and had a long-standing attachment to the house of Ali. They proposed Husayn overthrow the Umayyads. On Husayn's way to Kufa with a retinue of about 70 men, his caravan was intercepted by a 1,000-strong army of the caliph at some distance from Kufa. He was forced to head north and encamp in the plain of Karbala on 2 October, where a larger Umayyad army of 4,000[a] arrived soon afterwards. Negotiations failed after the Umay

Python

Image
Hi everyone I'm learning python on free code camp I was following the tutorial with my VScode but when I run the code def get_choices : player_choice = input ( " Enter a choice ( rock , paper , scissors : " ) computer_choice = ' paper ' choices = ( ' player ' : player_choice , ' computer " : computer_choice } return choices choices = get_choices ( print ( choices ) dict = ( ' name ' : ' beau ' , ' color ' : choices } The same code that in the picture . It runs , then I select Rock or any on my options I get a trece back but when I do on the same code in the web editor where freecodecamp is using , it works fine let's say I select rock again and don't get no traceback . Why ?