Jumat, 20 Oktober 2017

Too many WhatsApp images, videos making your phone slow and full? Here is a fix

Too many WhatsApp images, videos making your phone slow and full? Here is a fix


Here is how to stop WhatsApp from downloading annoying memes, videos, photos on phone. 



WhatsApp has over 1 billion daily active users today. The increasing popularity of the chat app has made it synonymous to the messaging. SMS sounds old and obsolete now. These days SMS box is opened only to view OTPs, telecom's promotional messages and your bank transaction details. WhatsApp has become an indispensible part of our lives. The app has made it fast and easier to stay connected with our friends.
However, it can be little annoying at times when the chat app automatically download all those stupid memes, audio files, videos and photos. This not just makes the phone's gallery look like a complete mess, it also eats up you mobile data. Here is a fix to this to this problem.

For Android phones:

If you are an Android user, open your WhatsApp, go to Settings>Data and storage usage>Media auto download. Now uncheck all the three boxes under the Media auto download- when using mobile data, when connected on Wifi and when roaming.

For iPhones:

iPhone users can also de-clutter their phone from annoying audio file, videos and photos.  Open WhatsApp>Settings>Data and storage usage.
Now check the Never box for photos, videos, audio and documents.
Low data usage for WhatsApp calls
WhatsApp also has an option to lower the amount of data it uses during WhatsApp voice calls. Open WhatsApp>Settings>Data and storage usage> Low data usage.

Few quick points to  save mobile data and phone storage when using the WhatsApp:

-- Stop auto-download of heavy files. Videos are entertaining but hog a lot of space on your phone. You can always set the auto-download for such videos when on WiFi.
-- Allow chat back up but only on WiFi. WhatsApp stores all your text chats and images. While this is an important feature as it allows you to retrieve your photos later from Cloud, backing up on mobile data can eat up your mobile data. So try doing it only on WiFi.
-- WhatsApp has an option where you can view your contacts and how much space each is taking. Go to WhatsApp> Storage and data usage>Storage usage.
Now you will see all your recent chats along with the space each is consuming on your phone. Select the chat>Manage messages>Clear messages.

Minggu, 08 Oktober 2017

How to Install Free SSL From Let’s Encrypt on Shared Hosting - Cpanel

Introduction

Let’s Encrypt introduced free SSL certificates quite some time ago. It made possible for website owners to offer encrypted HTTPS connection for their visitors totally free of charge. Before Let’s Encrypt, the only way to get a valid SSL certificate was to purchase it from a seller.

Update: 
Hostinger, now offers cheap SSL certificates for a lifetime. It’s worth to check this offer, if you are serious about the protection of your website and don’t want to deal with tricky SSL installation and setup. 
Let’s Encrypt SSL certificate can be installed with just a few lines of code on a VPS or dedicated server, however, installation on shared hosting accounts is still a bit complicated (unless it uses cPanel).
Hostinger doesn’t yet have an auto-installer for Let’s Encrypt SSL certificates (we are working on this), but there is a workaround – it can be installed manually using ACME client written in PHP and composer.
This tutorial shows how to install free SSL from Let’s Encrypt on Hostinger shared hosting.
Table of Contents
  • What you’ll need
  • Step 1 – Enabling SSH Access
  • Step 2 – Installing ACME client and Composer
  • Step 3 – Generating SSL Certificate
  • Step 3 – Installing Certificate via Hostinger members area
  • Step 4 – Checking expiration date and renewing SSL certificate
  • Conclusion

What you’ll need

Before you begin this guide you’ll need the following:
  • Hostinger Premium or Business account.
  • SSH client.

Step 1 – Enabling SSH Access

SSH access is required in order to install SSL on shared Hostinger account. By default it’s disabled, but you can easily enable it by following these steps:
  1. Access Hostinger control panel and navigate to SSH section.
    Hostinger SSH Section
  2. Click on Disabled to change status to Enabled. Hit Update button.
    Hostinger Enable SSH
  3. The page will refresh and you should see information required to connect via SSH. Write it down as you will need it in the next step.
    Hostinger SSH Information

Step 2 – Installing ACME client and Composer

We will use ACME client written in PHP and composer to generate Let’s Encrypt SSL certificate.
First of all, you will have to connect to your hosting account via SSH and download all required components. If you are running macOS or Linux, you can use terminal to connect via SSH, Windows users can take advantage of Putty SSH client.
  1. Connect to your hosting account using SSH information from Step 1.3. In our example, it would be:
    ssh x123011738@31.170.164.22 -p 65002
  2. Clone acme client from github repository. Cloning can be done by executing the following command:
    git clone https://github.com/kelunik/acme-client
  3. Access ACME client directory:
  4. Download and install the composer:

Step 3 – Generating SSL Certificate

Once you have downloaded and installed ACME client and composer, you can proceed and generate free SSL from Lets Encrypt. Firstly, register an account by running this command:
php bin/acme setup --server letsencrypt --email your@email.com
Note that you need to change your@email.com to your actual email.
The process of generating SSL certificate is pretty straightforward. Execute the following command:
Change yourdomain.com to your real domain name and x123011738 to your actual username (you can check it on Step 1.3).
If certificate was issued successfully, you will see the following message:
ACME client generated certificate and private key files. Unfortunately, installation cannot be done via SSH due to security restrictions. Therefore, you first need to manually copy certificate and private key files to your computer. It can be done using simple copy / paste method. Firstly navigate to the directory where private key and certificate files are stored:
cd /home/x123011738/acme-client/data/certs/acme-v01.api.letsencrypt.org.directory/yourdomain.com
Use cat command to see contents of fullchain.pem file:
cat fullchain.pem
Copy the part marked in red and save it in a text file on your computer. Name the text file certificate.txt.
Let's Encrypt Certificate Copy
Now do the same with private key:
cat key.pem
Copy the private key (as shown in the screenshot) and save it in a text file as well. Name it privatekey.txt.
Let's Encrypt Key Copy
The hardest part is over. You can now proceed with the installation of SSL certificate.

Step 3 – Installing Certificate via Hostinger members area

At this step you should already have certificate and private key saved in txt files on your computer. The final step is to install SSL certificate on your hosting account. It can be done via SSL section:
  1. Access Hostinger members area and navigate to SSL section.
    Hostinger SSL Section
  2. Select the domain from the drop down menu for which you want to install SSL certificate.
  3. Paste contents from certificate.txt to Certificate:(CRT) and contents from privatekey.txt to Private Key:(KEY) fields. Press Install button once you are done.
    Installing SSL via SSL Section
  4. Once the installation is complete, you will see a success message.
    SSL Install Success
That’s it, you have successfully installed free SSL from Let’s Encrypt on shared hosting account. Your domain name will now work via HTTPS protocol.

Step 4 – Checking expiration date and renewing SSL certificate

Let’s Encrypt SSL certificates are set to expire every 90 days. You can check its expiration date via SSH using the following command:
You can also try to automatically renew Let’s Encrypt SSL certificate with a cron job. For example, in order to automatically renew SSL certificate, you can set cron job to run the following command every other month:
On Hostinger, cron jobs can be created on Advanced Cron Jobs section. You can use the following settings:Cron Job to Renew Let's Encrypt on Shared Hosting

  • Common Option(s) – Once a month (0 0 1 * *)
  • Minute(s) – :00 top of the hour (0)
  • Hour(s) – 12 a.m. Midnight (0)
  • Day(s) – 1st (1)
  • Month(s) – Every other month (*/2)
  • Weekday(s) – Every weekday (*)

Conclusion

Let’s Encrypt SSL certificates are great if you want to run your websites on HTTPS but don’t want to invest any money. This tutorial intended to show you a workaround you can use to install free SSL from Let’s Encrypt on shared hosting account.

Selasa, 03 Oktober 2017

103 Unknown Useful Websites Everyone Should Know About - (Updated)

103 Unknown Useful Websites Everyone Should Know About - (Updated)

With so many websites available, sometimes its difficult for some of them to rank high,  These are some exceptional sites on the web everyone should know about.



103 Unknown Useful Websites Everyone Should Know About - (Updated)



1. spypig.com | now get read receipts for your email.
2. iconfinder.com | the best place to find icons of all sizes.
3. join.me | share you screen with anyone over the web.
4. bounceapp.com | for capturing full length screenshots of web pages.
5. Goo.gl | shorten long URLs and convert URLs into QR codes.
6. whisperbot.com | send an email without using your own account.
7. wetransfer.com | for sharing really big files online.
8. localti.me | know more than just the local time of a city


9. copypastecharacter.com | copy special characters that aren’t on your keyboard.
10. screenr.com | record movies of your desktop and send them straight to YouTube.
11. topsyom.com | better search engine for twitter.
12. flightstats.com | Track flight status at airports worldwide.
13. encrypted.google.com | prevent your ISP and boss from reading your search queries.
14. office.com | download templates, clipart and images for your Office documents.
15. polishmywriting.com | check your writing for spelling or grammatical errors.
16. wolframalpha.com | gets answers directly without searching – see more wolfram tips.
17. printwhatyoulike.com | print web pages without the clutter.
18. lovelycharts.com | create flowcharts, network diagrams, sitemaps, etc.
19. fb.me/AppStore | search iOS app without launching iTunes.
20. chipin.com | when you need to raise funds online for an event or a cause.


21. e.ggtimer.com | a simple online timer for your daily needs.
22. coralcdn.org | if a site is down due to heavy traffic, try accessing it through coral CDN.
23. tinychat.com | setup a private chat room in micro-seconds.
24. timerime.com | create timelines with audio, video and images.
25. viewer.zoho.com | Preview PDFs and Presentations directly in the browser.
26. tubemogul.com | simultaneously upload videos to YouTube and other video sites.
27. google.com/dictionary | get word meanings, pronunciations and usage examples.
28. scr.im | share you email address online without worrying about spam.
29. translate.google.com | translate web pages, PDFs and Office documents.
30. sizeasy.com | visualize and compare the size of any product.
31. regex.info | find data hidden in your photographs – see more EXIF tools.
32. gtmetrix.com | the perfect tool for measuring your site performance online.
33. flightaware.com | live flight tracking service for airports worldwide.
34. awesomehighlighter.com | easily highlight the important parts of a web page.
35. virustotal.com | scan any suspicious file or email attachment for viruses.
36. onlineocr.net | recognize text from scanned PDFs and images – see other OCR tools.
37. imo.im | chat with your buddies on Skype, Facebook, Google Talk, etc. from one place.
38. mywot.com | check the trust level of any website.
39. sxc.hu | download stock images absolutely free.


40. tabbloid.com | your favorite blogs delivered as PDFs.
41. whichdateworks.com | planning an event? find a date that works for all.
42. downforeveryoneorjustme.com | find if your favorite website is offline or not?
43. tineye.com | this is like an online version of Google Googles.
44. alertful.com | quickly setup email reminders for important events.
45. historio.us | preserve complete web pages with all the formatting.
46. snopes.com | find if that email offer you received is real or just another scam.
47. google.com/history | found something on Google but can’t remember it now?
48. youtube.com/leanback | enjoy a never ending stream of YouTube videos in full-screen.
49. bubbl.us | create mind-maps, brainstorm ideas in the browser.
50. whatfontis.com | quickly determine the font name from an image.
51. aviary.com/myna | an online audio editor that lets record, and remix audio clips online.
52. similarsites.com | discover new sites that are similar to what you like already.
53. kuler.adobe.com | get color ideas, also extract colors from photographs.
54. followupthen.com | setup quick reminders via email itself.
55. livestream.com | broadcast events live over the web, including your desktop screen.
56. Filehippo.com | Download just about every free Apphomestyler.com | design from scratch or re-model your home in 3d.
57. tempalias.com | generate temporary email aliases, better than disposable email.
58. mailvu.com | send video emails to anyone using your web cam.
59. feedmyinbox.com | get RSS feeds as an email newsletter.
60. isendr.com | transfer files without uploading to a server.
61. typewith.me | work on the same document with multiple people.
62. privnote.com | create text notes that will self-destruct after being read.
63. bing.com/images | automatically find perfectly-sized wallpapers for mobiles.
64. boxoh.com | track the status of any shipment on Google Maps – alternative.


65. faxzero.com | send an online fax for free – see more fax services.
66. fontsquirrel.com | a good collection of fonts – free for personal and commercial use.
67. warrick.cs.odu.edu | you’ll need this when your bookmarked web pages are deleted.
68. whoishostingthis.com | find the web host of any website.
69. wordle.net | quick summarize long pieces of text with tag clouds.
70. disposablewebpage.com | create a temporary web page that self-destruct.
71. snapask.com | use email on your phone to find sports scores, read Wikipedia, etc.
72. seatguru.com | consult this site before choosing a seat for your next flight.
73. truveo.com | the best place for searching web videos.
74. imo.im | chat with your buddies on Skype, Facebook, Google Talk, etc. from one place.
75. lmgtfy.com | when your friends are too lazy to use Google on their own.
76. dabbleboard.com | your virtual whiteboard.
77. everytimezone.com | a less confusing view of the world time zones.
78. scribblemaps.com | create custom Google Maps easily.
79. typingweb.com | master touch-typing with these practice sessions.
80. random.org | pick random numbers, flip coins, and more.


81. errorlevelanalysis.com | find whether a photo is real or a photoshopped one.
82. formspring.me | you can ask or answer personal questions here.
83. ge.tt | quickly send a file to someone, they can even preview it before downloading.
84. woorank.com | everything you wanted to know about a website.
85. pastebin.com | a temporary online clipboard for your text and code snippets.
86. stupeflix.com | make a movie out of your images, audio and video clips.
87. nutshellmail.com | Get your Facebook and Twitter streams in your inbox.
88. noteflight.com | print music sheets, write your own music online.
89. urbandictionary.com | find definitions of slangs and informal words.
90. techsmith.com/jing.html | captures anything you see on your computer screen, as an image or short video.
90. namemytune.com | when you need to find the name of a song.


91. pdfescape.com | lets you can quickly edit PDFs in the browser itself.
92. wobzip.org | unzip your compressed files online.
93. teuxdeux.com | a beautiful to-do app that looks like your paper dairy.
94. example.com | this website can be used as an example in documentation.
95. buzzfeed.com | never miss another Internet meme or viral video.
96. isnsfw.com | when you wish to share a NSFW page but with a warning.
97. vocaroo.com | record your voice with a click.
98. untiny.me | find the original URLs that’s hiding behind a short URLs.
99. sumopaint.com | an excellent layer-based online image editor.
100. joliprint.com | reformats news articles and blog content as a newspaper.
101. iwantmyname.com | helps you search domains across all TLDs.
102. Apphomestyler.com | design from scratch or re-model your home in 3d.
103. FunAppsFb.ga | Play Facebook Fun Apps And Many more Fun Tools.




Keyword :- most useful websites 2016,most useful websites 2017,useful websites for students,useful websites reddit,useful sites to learn new skills,useful websites in tamil,useful websites game,unuseful websites,interesting websites for adults,useful websites in tamil,interesting websites when bored,fun websites for adults,most useful websites,interesting websites 2017,useful sites to learn new skills,best websites design 2017,famous website names list,top websites list,list of all websites,top 10 websites in the world,most visited websites in us,indian all website list,list of websites for students,all website list free download,most visited websites in us,most visited websites in india,top 10 websites design,my most visited websites,most popular websites for college students,top website designs,list of all websites,most popular websites for men,