Saturday, January 14, 2017

Cool Windows 10 Tips and Tricks

1. Create a GodMode in Windows 10:

God Mode is the file which lets you access to all the settings in a single page.
  • Create a new folder and rename it to "GodMode.{ED7BA470-8E54-465E-825C-99712043E01C}" without the ".
2. Microsoft Edge has a "Reading View" just like "Pocket" which helps you to get rid of all the unwanted contents and you can read the article only. In some sites it is not supported.

3. Win+G in Windows 10 can let you Record & Screenshot your GamePlay mainly but you can also record your screen. You can find the records in the "Video/Captures" folder.

4. Creating Virtual Desktops and Switching among them. It was a Linux thing but it has arrived to Windows finally.
  • Windows Key+Ctrl+D : Creates a New Virtual Desktop
  • Windows Key+Ctrl+Left Arrow : Switches to the Desktop on the Left
  • Windows Key+Ctrl+Right Arrow : Switches to the Desktop on the Right
  • Windows Key+Ctrl+F4 : Closes the Current Desktop
5. Snap Active Windows: If you want the window you are working to be Maximized, Minimized, Snapped to the right/left then you can do it using these shortcuts:
  • Windows Key+Left Arrow: Snap the window to the left.
  • Windows Key+Right Arrow: Snap the window to the right.
  • Windows Key+Up Arrow: Snap the window to the top/Maximize.
  • Windows Key+Down Arrow: Snap the window to the bottom/Minimize.

Saturday, January 7, 2017

10 Tips and Tricks For Computers. Be a Computer Pro and Prankster.

1. If you want to reopen the tab you just closed in a browser, just press "Control"  plus "Shift," plus "T,"

2. To make a copy of a file, you can press "Control" and then click and drag the file. When you find the appropriate folder for the copy you can then un-click and drop it there.

3. In Google Chrome, if you press "S" while right click on an image it gives you information about the image.

4. You can hit the space bar to pause a YouTube video, but sometimes this causes it to scroll down the page if you haven't already clicked on the video. If you press "K," this will play (or pause) the video every time. Hitting the "J" key will go back 10 seconds, while hitting the "L" key will go forward 10 seconds.

5. If you click the "Windows" key+right/left/up/down  arrow your window will go to the side of the arrow.



6. Clear cache in your browser by pressing Control+Shift+R. This will also refresh your page.

7. Press "Windows," plus  "L" to lock your computer quickly. You can also fool people by doing it.

8. Want to freak out your friends! If you press "Control" plus "Alt" plus one of the arrow keys, it will rotate your screen that way. It is way more fun.
ulto computer


9. If you want to bring up a basic text editor you can type in, just paste this into the address bar in your browser:
data:text/html, <title>Text Editor</title><body contenteditable style="font-size:3rem;font-family:arial;line-height:1.2;max-width:80rem;margin:1 auto;padding:5rem;">
text editor in browser


10. You can edit the webpage, write whatever you like with just a simple code. You need to paste it in the web browser (works on IE 7, Mozilla Firefox)
javascript:document.body.contentEditable='true'; document.designMode='on'; void 0

edit web text

For Google Chrome Users:
Press Ctrl Shift and J and paste it in there, then press Enter.









Sunday, January 1, 2017

File Compression

File Compression

ZIP files are very handy invention. It reduces the overall number of bits and bytes in a file so it can be transmitted faster and takes less space.
What file compression does is that it simply gets rid of the redundancy. For eg:-
Let's take example of J.F.K's quote:-
Ask not what your country can do for you - ask what you can do for your country.

Here there are:-

  • 17 - words
  • 61 - letters
  • 16 - spaces
  • 1 - dash
  • 1 - period
  • 79 - total memory units

Here "ask", "what", "your", "country", "can", "do", "for" and "you" appear two times.
Here's what LZ adaptive dictionary-based algorithm does. It indexes number to redundant words.
1.ask
2.what
3.your
4.country
5.can
6.do
7.for
8.you
Our sentence now is "1 not 2 3 4 5 6 7 8 - 1 2 8 5 6 7 3 4"
Here indexing takes 37 byte and sentence takes 37 byte taking overall 74 byte. It's not much but in reality the files take much more space and there is much more redundancy.

Here we take a look at repeated words but compression program sees it different. It doesn't know about separate words, it looks for patterns.
Here
1. "ask "
2. "what"
3. "you"
4. "r country"
5. " can do for you"
are repeated and the sentence can be made using these fragments.
1 not 2345 - 12354
Which decreased the total file size to 59 units