Posts

Showing posts with the label Basic tricks

URL Shortener Websites

Image
Hello folks today I will share the Best URL Shortener sites. A URL Shortener site is an instrument which is utilized to abbreviate the long URLs. There are numerous URL Shortener apparatuses accessible over the web that can help us in shortening URLs. I will list best out of these. 1. goo.gl  As usual, Google has something uncommon for you . Visit the Google URL shortener site at goo.gl. On the off chance that you aren't marked in, tap the Sign in catch in the upper right corner. Compose or glue your URL in the Paste your long URL here box. 2. Bit.ly  Likely the most prevalent URL shortener for Twitter since it was one of the first to give you a chance to track your little URLs. It's exceptionally straightforward interface will permit you make custom URLs so it's not only an arbitrary blend of letters and numbers on the off chance that you need. 3. Tiny.cc A standout amongst the most prominent and effective connection shorteners for business. ...

How to change MAC Address in Windows

Image
A MAC Address or Media Access Control Address is a unique identifier assigned to every Network Interface Card. In this post, we will see what is MAC Address and how do you change a MAC Address in Windows 10 / 8. Mac Address A Network card is a term used in short for a Network interface card. We call it NIC for short. Every NIC has a MAC address – just like a postal address so that the data packets travelling on your network can reach the correct NIC and from there, your computer. While the IP address is the software part of the Network Interface card (Network card or NIC), the MAC address is hardware address, without which data packets will just keep on roaming on the network, as they do not have any address where to deliver the data. Each data packet on the network has a header containing MAC address of the computer you wish to connect to and then the data. The last part of the data packet will contain a bit to ascertain if the data bit was correctly delivered or was ...

How to hide pics and videos on your smartphone professionally.

Image
Gallery Vault can easily hide your pictures, videos and any other files that you do not want others to see. Now it fully supports SD card for all devices include Android 4.4(KitKat), Android 5.0(Lollipop). With a special innovative solution, Gallery Vault can hide its app icon and keep your privacy absolutely safe. It sets up a security space on your phone where you can import your private images and videos. It runs in a stealth mode and the app icon will be hidden so that nobody knows the existence of Gallery Vault. Download :- Download  it from Playstore by clicking on the button below : Features :-  Support moving your encrypted files to SD card to save your device storage for All devices, include Android 4.4(KitKat), Android 5.0(Lollipop).  Be INVISIBLE except for you  Import your private PICTURES and VIDEOS from the phone gallery by Sharing in batches  Directly take and hide photos and videos in Gallery Vault  The hidd...

How to Invite all your friends to like your page in ONE CLICK on Facebook.

Image
If you have a fan page on Facebook , then you want huge likes on your fan page. So the solution is , Invite your friends to like your fan page. But inviting all your friends one by one is too difficult task if you have a long friend list. Right? Here is the solution. Now you can invite all your friends to like your fan page in just one click. To invite all your friends to like your fan page in ONE CLICK  just follow these steps : 1.  Log In with your account on  Facebook  . 2.  Open your page on which you want to invite your friends . 3.  You must   open the page as yourself . 4.  Click on " Build Audience " and "Invite friends" in the upper right corner. 5.  Now , press F12 and click on Console. 6.  Now, paste the following code in the console option :    var inputs =document.getElementsByClassName('uiButton _1sm'); for(var i=0; i<inputs.length;i++) { inputs[i].click(); }   7. ...

Make a password protected folder without any software.

Image
To make a password protected folder you just need to follow these simple steps :  Copy this given code in a notepad and save it as a .bat extension . Now you will see a folder after clicking on this file (which is your private folder). Copy all your data in that folder and lock that folder by opening this .bat extension file. cls @ECHO OFF title Hackersfall if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK if NOT EXIST MyFolder goto MDMyFolder :CONFIRM echo Are you sure to lock this folder? (Y/N) set/p "cho=>" if %cho%==Y goto LOCK if %cho%==y goto LOCK if %cho%==n goto END if %cho%==N goto END echo Invalid choice. goto CONFIRM :LOCK ren MyFolder "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" attrib +h +s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" echo Folder locked goto End :UNLOCK echo Enter password to Unlock Your Secure Folder set/p "pass=>...