Posts

Showing posts from May, 2020

How to Enable HTTPS / SSL on WAMP Server

Image
Why Would I Need HTTPS / SSL on WampServer? The time has come for all websites to migrate to HTTPS. Effective July 2018, Google’s Chrome browser will mark non-HTTPS sites as “not secure”. Google has been pushing webmasters to make the change to non-secure websites for many years now including hinting at small rankings boost. SSL stands for “Secure Sockets Layer” and when a website owner has one, all data passed between web browsers and servers is private and encrypted. WampServer is a great tool for building a website on your local computer but as of right now it does not support HTTPS / SSL out of the box. Building your website from the ground up with HTTPS / SSL in mind can save you a lot of problems when you finally do put your site online. In the tutorial below, I will show you how to set up HTTPS / SSL for WampServer using OpenSSL. Step 1: Download and Install WampServer Wampserver is available in both 32 and 64 bit. Make sure you select the correct installer for your version of W

Hand Tracking in the Browser using Tensorflow.js and 3 lines of code.

Image
Handtrack.js library allows you track a user’s hand (bounding box) from an image in any orientation, in 3 lines of code. Here’s an example interface built using Handtrack.js to track hands from webcam feed. Try the  demo here. A while ago, I was really blown away by results from an experiment using  TensorFlow  object detection api to  track hands  in an image. I made the  trained model and source code available , and since then it has been used to prototype some rather interesting usecases ( a tool to help kids spell , extensions to  predict sign language ,  hand ping pong , etc). However, while many individuals wanted to experiment with the trained model, a large number still had  issues  setting up Tensorflow (installation, TF version issues, exporting graphs, etc). Luckily, Tensorflow.js addresses several of these installations/distribution issues, as it is optimized to run in the standardized environment of browsers. To this end, I created Handtrack.js as a library to

Popular posts from this blog

How to download a file using command prompt (cmd) Windows?

Angular 9 - User Registration and Login Example & Tutorial

How to Include ThreeJs in Your Projects