I have been using FastMail since a long time now and inbox is getting bigger than 20GB and will soon reach a limit of 30GB. I gathered all emails from GMail, Yahoo, Apple etc. using IMAP into FastMail account and it is so good to have all emails in one account. But, as emails are …
Category: Blog
Amazon S3 Glacier Deep Archive storage class for $1/TB backups
Amazon S3 provides the most cost effective pricing of $1/TB for Glacier Deep Archive storage class. It is too good to be true. But, it comes with a drawback that when you need your data you will have to pay a lot. It is like a cheap hard drive on which you can easily store …
Dropbox best cloud storage
Always had problems with my file storage. Tried everything like Apple Time Capsule and other backup solutions, but Dropbox is the best way to backup your files. The best part is that if you fail to pay, Dropbox never deletes your files. They just downgrade your Dropbox account. I have been using Dropbox business since …
How to escape comma when importing WooCommerce products?
After spending some time on searching on Google and reading some WooCommerce forums I found out that it was much easier than expected. Do not use quotes or %2C. Just escape the comma using a backslash like \, That’s all! It will work like a charm. I had to replace all commas to \, on …
No library HTML+CSS+JS Confirm Dialog
Made an HTML+CSS+JS (JavaScript) confirm dialog today without using any external library. No jQuery! HTML: CSS: JS: CodePen Preview: See the Pen No library HTML+CSS+JS Confirm Dialog by Animated Creativity (@animatedcreativity) on CodePen. Hope it helps someone!
CSS Disable Checbox
Today, I needed to disable checkbox using CSS only without any HTML attribute. Here is the code: HTML: CSS: Here is a working example at CodePen. See the Pen CSS Disable Checkbox by Animated Creativity (@animatedcreativity) on CodePen.
How to install ZeroTier on Mac OSX?
I love ZeroTier because it has made my life simpler by putting everything on the same private network and now I can access any of my device from my other device. Like I can easily access my iMac from my iPad when I am not at home. There are apps for iOS & Android already …
How to instal L2TP server to connect from routers?
I have some old TP-LINK & D-LINK routers which have L2TP connection features on them. For network speed at my home, I had to buy a VPS in my city. I could easily install Squid proxy on the VPS and connect through it. But, this way I was required to set proxy on all of …
How to backup whole Linux server?
You can backup a whole VPS using the `rsync` command below. rsync -avP –exclude={“/dev/*”,”/proc/*”,”/sys/*”,”/tmp/*”,”/run/*”,”/media/*”,”/lost+found”} / /mnt/hdd/encrypted/vps-server-backup/ You can also backup to other server. rsync -avP –exclude={“/dev/*”,”/proc/*”,”/sys/*”,”/tmp/*”,”/run/*”,”/media/*”,”/lost+found”} / OTHER_SERVER_HERE:/mnt/hdd/encrypted/vps-server-backup/ You will first need to configure OTHER_SERVER_HERE in your ssh config file. You can check this for more info: https://linuxize.com/post/using-the-ssh-config-file/ You can add as many exclude parameters …
WordPress Admin was not showing add/deactivate/delete plugin options
A strange thing happened today. I wanted to manage plugins for one of my WordPress websites. But, I could not see any add/deactivate/delete plugin options on the Plugins page. Then I realised that I had WordPress Multi-Sites enabled as I installed it that way earlier. So, only Network Admin can do that. Just go to …