Posts

Showing posts from June, 2020

How to make a folder completely hidden

Image
Through this trick your folder will not be shown even after you have enabled the show hidden files. Go to the location where your folder is present Now click on the address bar and type cmd in it and press enter Now type the command attrib +s +h folder_name To make the folder visible again type the command:   attrib -s -h folder_name Now your folder will get visible again.  

How to create nameless folder in windows

Image
Right click on the empty space in the screen. Click on New and then select Folder Now press  Alt and hold it and then press 0160 form NumPad. Then release the Alt button and then again press the Alt  and hold it and press 0160 from NumPad . A nameless folder will be created.

How to show the emojis in windows

Image
Emojis are very popular nowadays 😃, 😭 . Originally meaning pictograph , the word  emoji  comes from Japanese  e  ( çµµ , "picture")  +  moji ( 文字 , "character") ; Emojis are the great way of expressing thoughts.They make the text communication more effective. Win + . To show the emojis in the windows we can press "Win +  ."   This will open the emoji box for you through which you can choose the desired emoji.

KeyBoard Shortcuts that everyone must know

Image
General Shortcuts Win + prt                    To  can take the screenshot of the entire screen. Win + d             To display or hide the window. Win + e             To open the Filer Explorer Win + l             To lock the system Win + m             To minimize all the windows opened Win + p             To choose the window presentation mode Win + r                     To open the run dialog box Win + s                     Open the Search Charm to open the windows and web Win + x                     To open the Quick Link Menu Win + shift + m                      To restore the minimized window Win + shift + (1-9)                     You can choose any number from 1 to 9.It will open the desktop and open the app.                      that is pinned in the taskbar in that position Win  +  tab                     To cycle through the app. that are recently used Win + Ctrl + b                     To open the application whose notification is just arrived Win + "+"          

How to generate fake email address

Image
Fake email address are used to remain anonymous over the internet.They are helpful in getting verify over the certain websites. Through these email you can easily signup to the websites.You can create unlimited accounts in a websites by using these email address. Click on the link given below https://generator.email/inbox2/  There are lot of available domain present you can choose any one among them. click on the refresh button to check any mail is received or not. There are lot of other websites which can provide you the temporary email address. https://temp-mail.org/en/ https://email-fake.com/ https://www.fakemail.net/

How to download youtube videos using python

Requirements ·          pip install pytube3 pytube   is a lightweight, Pythonic, dependency-free, library (and command-line utility) for downloading YouTube Videos .   Pytube provide us the facility to download the youtube videos  effortlessly.   Steps 1 ⇒ firstly we have to import the Youtube class  from the pytube module . from   pytube   import   YouTube     2 ⇒ we will give the link or url of the video which we want to download. url=" https://www.youtube.com/watch?v=Y9VgmhxtJFk "   3 ⇒ Now we will create Youtube class object as youtube youtube  =  YouTube( url )   4 ⇒   To print the title of the video         print(youtube.title)      ⇒   To see the thumbnail of the video. print(youtube.thumbnail_url)   5 ⇒To see all the media format available for the video.                print(youtube.streams.all()) 6⇒If you want to choose the first stream to download.                stream=youtube.streams.first()     ⇒you can also choose the video by its itag nu

How to activate windows 10

Image
Method1: In this method we will activate the windows using the windows Activator. Download the windows activator from the link given below https://sites.google.com/site/hackingsnippet/datat Now extract the zip file now turn off your firewall Now open the Windows Activator in administrator mode Click on the Activate Windows After taking few seconds your will windows will get activated Method 2 copy the code below @echo off title Activate Windows 10 ALL versions for FREE!&cls&echo ============================================================================&echo #Project: Activating Microsoft software products for FREE without software&echo ============================================================================&echo.&echo #Supported products:&echo - Windows 10 Home&echo - Windows 10 Home N&echo - Windows 10 Home Single Language&echo - Windows 10 Home Country Specific&echo - Windows 10 Professional&echo - Windows 10 Professional N&ec

How to shutdown the system using python

Warning --please close all the running application before executing the code because it will immediately shutdown the system ,otherwise your unsaved work might get lost. Shutdown # Python Program to Shutdown the Computer import os #if the user press y then the system will get shutdown value = input ( "Do you Want to shutdown your computer ? (y/n): " ) if value == 'y' : os.system( "shutdown /s /t 1" ) else : exit () Shutting down the system at a particular time # Python Program to Shutdown the Computer at a given time import os from datetime import datetime #input the time in 24 hr format if your computer timing is in 24 hr format #example 16:36 or 10:04 value = input ( "Input the time : " ) while ( True ): #it will fetch the current time now = datetime.now() #to extract the time in hour and minutes current_time = now.strftime( "%H:%M" ) if value == current_time: os.system( "shutdown /s /t 1

How to reset windows password using cmd

Image
Here in this trick you will learn how to change the user password without knowing its actual password. Step1: open the command prompt in the administrator mode. Step2:  type command → net user This command will display you the name of all the user of that system. Step3: Type command → net user username Here username is the name of the user whose password you want to change. Here Dstar is the username and "hello123" is the new password.

How to take screenshot using Python

Image
Requirements pip install pyautogui time Pyautogui This module is used to take the screenshot , save the files and to locate the images within the screen. Time This module provides various time-related functions. We will use this module to provide the time in  seconds after which the program can take the screenshot.   Screenshot() Function This function returns the image object and we can pass the filename and path to it as a argument. code import pyautogui , time #to take specify name of the screenshot screenshot_name= input ( "enter the name" ) #through this we can specify the time after which screenshot can be taken time.sleep( 1 ) #screenshot will be taken and saved to the specified location img=pyautogui.screenshot( r"E:\webtech\Screenshot" + " \\ " +screenshot_name+ ".jpg" ) #screenshot will be displayed img.show() Output

How to hack wifi password using cmd

Image
step1: type window+r and type  cmd step2: type → netshwlan show profiles the above command will display you all the wifi networks which you were connected earlier step3: type→netsh wlan show profiles wifi_profile_name key=clear ex:netsh wlan show profiles Gionee key=clear In the Key content: you will see the wifi password

How to generate QR code using Python

Image
Modules Required pip install pyqrcode pip install pypng pyqrcode pyqrcode module is used to generate the QR code and it is written in pure python. This module is compatible with Python 2.6 , 2.7 and 3.x. pypng pypng module is used to save the code in the PNG format. code import pyqrcode import png from pyqrcode import QRCode #text which we want to put inside the QR code text= "https://hackingsnippet.blogspot.com/" #to create the QR code QR_code = pyqrcode.create(text) #to save the QR code QR_code.png( 'code.png' , scale = 6 ) #to show the QR code generated QR_code.show() Output

Java

Image
Java  is a high-level programming language developed by Sun Microsystems. ... Instead,  Java  programs are interpreted by the  Java  Virtual Machine, or JVM, which runs on multiple platforms. This means all  Java  programs are multiplatform and can run on different platforms, including Macintosh, Windows, and Unix computers. Java is a general-purpose programming language that is class-based, object-oriented, and designed to have as few implementation dependencies as possible. P rinting in Java System.out.println("Hello World");

Python

Image
Python is an interpreted, high-level, general-purpose programming language. Created by Guido van Rossum and first released in 1991, Python's design philosophy emphasizes code readability with its notable use of significant whitespace What is Python used for? Python  is a general purpose and high level programming language. You can use  Python  for developing desktop GUI applications, websites and web applications. Also,  Python , as a high level programming language, allows you to focus on core functionality of the application by taking care of common programming tasks. Printing in python print("Welcome To Python")