How to see all devices / PC connected on your network
In this video I have shown how we can see all devices / PC in same network. I have shown 2 ways to check the devices, 1. Using CMD – Command Prompt The command will NET VIEW show all devices connected in network. net view . Now to see all the active IP address in …
How to load images dynamically (or lazily) when users scrolls them into view
In this video I have shown how to load images lazily when user scrolls into the view of page. This is the basic method all online shopping websites are using. Source Code. <html> <head> <script src=”https://cdn.jsdelivr.net/npm/lazyload@2.0.0-beta.2/lazyload.js”></script> <script> window.addEventListener(“load”, function(event) { lazyload(); }); </script> </head> <body> <img class=”lazyload” src=”load.gif” data-src=”img/1.jpg” width=”765″ height=”574″ /> <img class=”lazyload” src=”load.gif” …
Simple java program code to convert Image to Text
You can convert any image file to text by Optical Character Recognition using the below java program. The API we are using here is the Tesseract OCR which is free licensed. Before running the below program you have to download and install Tesseract in your PC. Visit the below link to get the installation file, …
Java – Generate PDF using Java Itextpdf, Mysql database dynamically
In this video I have shown how we can generate PDF with help if Itext pdf API, Also take value from MySQL database and generate PDF according to the data in MySQL database.
How to add Responsive google Map in Webpage
In the video I have shown how you can integrate a responsive google map in web page. Source code. <style> .google-maps { position: relative; padding-bottom: 75%; // This is the aspect ratio height: 0; overflow: hidden; } .google-maps iframe { position: absolute; top: 0; left: 0; width: 100% !important; height: 100% !important; } </style> <div …
JAVA – Facebook graph API-Get user Posts
In this video, I have shown how you can generate Access token dynamically. And use the dynamic access to get facebook user and facebook user posts using facebook graph API. Here is the steps what you have to follow. 1. Login to facebook developers site and get an APP id by creating a facebook APP. …
JAVA – Integrate Login with Facebook using graph API
In this video I have shown how you can generate Access token dynamically. And use the dynamic access to get facebook user info using facebook graph API. Here is the steps what you have to follow. 1. Login to facebook developers site and get an APP id by creating a facebook APP. 2. Grant permission …
JAVA- Integrate login with Facebook using restfb API
In this video I have shown how you can integrate Login with facebook in web projects using restfb API. All the documentations are available in restfb.com documentation section. Here is the steps what you have to follow. 1. Login to facebook developers site and get an APP id by creating a facebook APP. 2. Grant …
Can’t Load URL: The domain of this URL isn’t included in the app’s domains [Solved]
In this video I have shown step by step how you can solve the below facebook APP error, Can’t Load URL: The domain of this URL isn’t included in the app’s domains. To be able to load this URL, add all domains and subdomains of your app to the App Domains field in your app …
How to generate QR code with Image using JAVA
In this video I have shown how you can create a QR Code with logo in side the QR. We are using 2 jar files which should be added in ClassPath to create the QR file. The jars are, 1 . javase-2.2.jar 2 . zxing-core-2.0.jar QR_Generate.java package com.chillyfacts.com; import java.awt.AlphaComposite; import java.awt.Graphics2D; import java.awt.image.BufferedImage; import …