Skip to main content

Posts

Google Docs not working offline [ QUICK FIX ]

Step 1 :- Install Google Docs App from chrome store ( link ) Step 2 :- Now go to chrome://apps Step 3 :- Right Click on DOCS icon and select "create shortcut"  Step 4 :- Desktop shortcut must be created now. Click on the DOCS icon. After it is opened click on 3 lines present on top left corner. Go to settings and see if offline mode is enabled. Step 5 :- Now turn off the internet and close the current DOCS window and reopen it from Desktop, see if it works offline. If it works then u r good to go and if it doesn't then follow below steps. Step 6 :- Turn on ur internet and go to chrome settings and search for cookies.  Step 7 :- Goto to site Settings and scroll down to cookies and site data Step 8 :- Scroll Down and click on Add button And add "  docs.google.com " . Close current tab and turn off internet and open DOCS again. It should load now.
Recent posts

Wifi automatically disconnecting on Ubuntu

I'm currently using KDE neon and only issue I faced is wifi turning of automatically.  So today I will tell you how to fix this issue. This is happening because of power saving mode turned on for wifi adapter. So we will disable it. Open your terminal and type : sudo nano /etc/NetworkManager/conf.d/default-wifi-powersave-on.conf After typing above command you will taken to config file Just change the the number from 3 to 2 If this does not solve your problem then you should try restarting network adapter sudo systemctl restart network-manager

root Certificate ERROR while installing .NET Framework

Recently I was trying to install a application in windows, well the installation went without any error. But while opening that application the app kept crashing and when I read FAQ for that application, they said specific version of .NET framework is required. So I downloaded that framework and tried installing.  But it gave me some root certification error. Like this So, in this blog I will fix this problem. As you can see this error is occured due to certificate which is missing from your system. So we will install this certificate  Download the certificate from given link  . Right click on the certificate and install it Keep clicking next until this screen appears Select second option "Place all certificates .......". Now click on Browse And select "trusted root certificate authorities" and press OK. And keep pressing next and atlast on this prompt select "yes" That its  Now try installing your .NET framework 

How to install mpv player on Windows with lua scripts and custom configs

If you are reading this blog then I dont need to explain why mpv is best media player across platforms. And today I will guide you how to install this awesome player on windows. 1. Download the latest stable build from this link https://sourceforge.net/projects/mpv-player-windows/files/64bit/ 2. Extract it 3. Go to installer folder 4. Right click on mpv-install.bat and click run as admininstrator. Installation will take some time. After installation is done don't delete that folder coz the folder itself itself is installation directory. 5. For lua scripts create a folder in installation directory named scripts and paste your script in that folder. 6. And copy mpv.conf file in this directory C:\Users\user\AppData\Roaming\mpv 7. That's it 

Slow update speed on Kali Linux

How to fix slow update speed on Kali Linux ? Not only you but most people face this problem after installing Kali Linux. Though the solution is much simpler than you think. You just have to update your mirrors in Kali Linux Open terminal and type sudo nano /etc/apt/sources.list You can use any text editor you want (like vim) After this your sources.list file will open  deb https://mirrors.ocf.berkeley.edu/kali kali-rolling main non-free contrib deb-src https://mirrors.ocf.berkeley.edu/kali kali-rolling main non-free contrib Just add above two lines. Delete any previous sources (if exist) otherwise you will get duplicate sources error when you will run update command next time.

Extract option missing

Extract option missing in contextual menu You just have to install ark to fix this issue. Ark is a graphical file compression/decompression utility with support for multiple formats, including tar, gzip, bzip2, rar and zip, as well as CD-ROM images. Ark can be used to browse, extract, create, and modify archives. sudo apt-get install ark This will install ark and add options in your contextual menu

Screen Tearing in Linux

How to solve screen tearing issue in Linux Unfortunately for Linux fans, screen tearing is, and has been, a persistent annoyance that doesn’t seem to be going anywhere. Though most of the distributions don't face this kind's of problem. But, some of the distributions still face such kind of problems. NVIDIA This isn’t the only solution for NVIDIA, and there are certainly situations that it doesn’t apply to, but it’s one of the better options, and it doesn’t rely on NVIDIA’s graphical utility that doesn’t always play nice with desktop environment configurations. To start, you’ll need to enable setting for the NVIDIA DRM module (modsetting). Start by making a configuration file in the modprobe directory. sudo touch / etc / modprobe.d / nvidia-nomodset.conf Open that file with your favorite text editor, and insert the following line: options nvidia-drm modset = 1 Update your kernel’s initramfs to apply your change. sudo update-initramfs -u When