modules

ac-apps-minimal-api-airtable

api/airtable.js

Makes it easy to work with the Airtable API and perform tasks such as fetching and updating records. Fetches all records if page number not provided.

Example:
app.api.woo.getProducts(options);
app.api.woo.updateProduct(options, product);

A module for ac-bundle-app, published by ac-bundle-module. namespace: ac-apps-minimal

Available Methods: getRecords

Blog

rclone – compress and backup full disk to remote or cloud storage

This is the command which will do the magic: dd if=/dev/sda1 | gzip | rclone rcat db-disks:/path/to/backup.gzip This command will read full disk contents and will stream it to gzip command for compression and which in turn stream to rclone. We are guiding rclone to rcat (remote cat) those contents to the desired remote path. …

Blog

How to archive emails on using Mac OSX and any IMAP provider

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 …

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 …

Blog

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 …

Blog

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 …

Blog

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!