Free Cloud Storage Services

Cloud Storage is really a buzz word for people who are facing troubles for backups and data loss. Cloud Storage can provide tension free management of data on the fly. You can choose any cloud program below as free storage. I really like Dropbox, it is available for all devices 😉 Dropbox – Free for … Read more

Create Website Thumbnails using PhantomJS

Hope you read my old article “Create WebThumb using LAMP”, it used for creating web thumbnails from Xvfb virtual framebuffer that is more time and resource consuming. Shell Script with Xvfb try to open web browsers in real remote server to capture web-thumbs… That whole setup might take a full day and image quality is … Read more

Free Cloud Server Hosting

Benefits of Free Cloud Hosting * Self-Managed with Console * Free storage * Easy application deployment * Production ready apps * Cloud hosts (IaaS) * Automatic backup & recovery * Server resizing * Migration facility * Portability * Cloud portability * Free bandwidth * Enhanced performance * High availability of resources * Data storage redundancy … Read more

Responsive One Page HTML5 Templates

I was searching one single page responsive HTML5 template for my product’s website. To sell your products you must have a introductory video and basic features on home page, that can help you to attract more customers.. You might include these items on home page… – Top Navigation – Introductory Video / Images – Offer … Read more

Upload Large Files from Amazon S3 Bucket to Dropbox Folder

Dropbox Uploader is a BASH script (only needs cURL) which can be used to upload, download, list or delete files from Dropbox, an online file sharing, synchronization and backup service. Usage: ./dropbox_uploader.sh COMMAND [PARAMETERS]… Secure:It’s not required to provide your username/password to this script, because it uses the official Dropbox API for authentication process. START … Read more

How to Watch Movies Online For Free? (Telegram 2021)

Hey, Everyone need to spend their weekends with family & friends… I always watch movies on Saturdays. I know you are also searching for free movies online. I have few Telegram Channels where you can spend your best time to search best blockbuster movies. Movie HD Channel Movie HD Channel enables you to download the … Read more

Build your business on Google Cloud Platform

Hope you already read my old article “Application Setup on Google App Engine” Google Cloud Platform allows to build applications and websites, store and analyze data on Google’s infrastructure. Features of Google Cloud Platform * Scale your app – Take advantage of the speed and scale of Google’s applications. * Focus on building – Deal … Read more

Cross Browser Flash Detection in Javascript

Option 1: <script type=”text/javascript”> $(document).ready(function(){ if (navigator.mimeTypes [“application/x-shockwave-flash”] == undefined) { alert(“Flash is not insalled on your Web browser.”); } else { alert(“Flash is insalled on your Web browser.”); } }); </script>   Option 2: JavaScript Flash Detection Library (Flash Detect) <script src=”flash_detect.js”></script> <script type=”text/javascript”> if(!FlashDetect.installed){ alert(“Flash is not insalled on your Web browser.”); }else{ … Read more