Posts

Showing posts with the label windows

How to upolad python script to heroku and run it

Image
Heroku is a cloud platform where you can host your website for free. Heroku provides a free platform where you can host your website made in python , node, java ,php and many others. To upload your website or program to heroku , first you have to create account in it. Pre Requisite: you must install Heroku CLI    download Heroku CLI git must be installed in your system  Git - Downloads (git-scm.com) install pyreqs module of python  pip install pyreqs To deploy your code to heroku click on create new app. Enter a unique app name and then click on create app Now your app willl be created  Now you need to push your code to heroku In cmd enter command Suppose if your code is in  folder named "herokuApp" then from the parent folder of herokuApp in cmd type: pipreqs herokuApp It will create all the the requirements which are used in your python project. Note In some cases requirement file can be empty if your project doesn't contain any other downloaded module wh...

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...

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 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.