Posts

Quantum Internet Benefits

Image
  The quantum internet is a network of quantum computers that are connected together using quantum communication. It has the potential to revolutionize many industries, including: Secure communications: The quantum internet would be inherently secure, as it would be impossible to eavesdrop on quantum communications without being detected. This could be used for applications such as secure financial transactions, government communications, and military applications. Quantum computing: The quantum internet would allow quantum computers to be connected together, which would allow them to solve problems that are currently impossible for classical computers. This could be used for applications such as drug discovery, financial modeling, artificial intelligence, and materials science. Quantum sensors: The quantum internet could be used to connect quantum sensors together, which would allow them to create a global network of sensors that could be used to monitor the environment, detect earthq

3AaaS - AI Automation Architecture as a Service's Common Functionalities

Image
3AaaS Common functionalities Simple Functionalities are 1. Adding or Saving 2. Removing or Deleting  3. Updating  4. Viewing individual and group of datas  5. Sort Functionalities 6. Searching Functionalities  Intermediate Functionalities are 1. Mapping 2. Merging 3. Advanced searching  Complex Functionalities are,  1. Tree structure view of all simple and Intermediate Functionalities. 2. Graph structure view of all simple and Intermediate Functionalities. Previous linkedin posts and snapshots

Satellite systems GEO vs LEO vs MEO

GEO - Geostationary/ Geosynchronous  orbit - Satellites round trip 1 time per day !! MEO - Mid Earth Orbit - Satellites round trip 2 time per day !! LEO - Low Earth Orbit - Satellites round trip 18 times per day !!  Morr information will soon updated year like distance measurements!! 

Digital Marketing SEO Analytics and Digital Transformation via Google Analytics Part 1 Video Podcast

Image
 

Issue Resolve: While uninstall or Remove or Install Software from Linux Terminal "unmet dependencies"

Unmet dependencies usually cause that installed  software already holding a lock inside cache folder. Hence to come over  this kind of issues, the following commands will help while uninstalling packages or installing packages. Step 1. Remove the lock sudo rm /var/cache/apt/archives/lock Step 2. Update apt-get sudo apt-get update Step 3. Now Install the software    sudo apt-get install [package or software] Remove/Uninstall software sudo apt-get remove [package or software]

Generalized Formula For Consecutive Square Number’s Arithmetic Progression in Hyper Dimension or Multi Dimension [ Both Tamil and English version ] [பல பரிமாணத்தில் அமைந்துள்ள இரண்டாம் அடுக்கு வர்க்க தொடர் எண்களின் கூட்டு தொடர் காணும் பொதுவான சூத்திரம்]

Image
Update Condition : H(n) = R * C* Face upto 3rd dimension; For other dimension like 4th dimension 5th dimension, still in progress ; But still it works for other dimensions. For example 4th dimension Sum up individual 3 Dimension cubes Slide Shows Generalized formula for Square Numbers in Hyper Dimensions from Kumaran K பல பரிமாணத்தில் அமைந்துள்ள இரண்டாம் அடுக்கு வர்க்க தொடர் எண்களின் கூட்டு தொடர் காணும் பொதுவா� from Kumaran K Still it is in progress, It works upto 3 Dimensions For other dimensions it works separately like if 4th dimension then club and sum up all the individual 3 dimensions 

Google App Engine Hello world

Image
In this article,I am going to show how to deploy J2EE Google Web Application in Google App Engine  Step 1: Install Google App Engine in Eclipse Market Place. Step 2: Create Google Web Application in Eclipse and Create  Google Web Application Name from Google App Engine Dashboard Page  https://appengine.google.com/ Screen Shots Project Folder Explorer Screen Shot   App Engine Xml Configuration <?xml version="1.0" encoding="utf-8"?> <appengine-web-app xmlns="http://appengine.google.com/ns/1.0">   <application>jspexample123</application>   <version>1</version>   <!--     Allows App Engine to send multiple requests to one instance in parallel:   -->   <threadsafe>true</threadsafe>   <!-- Configure java.util.logging -->   <system-properties>     <property name="java.util.logging.config.file" value="WEB-INF/logging.properties"/>

Input Text Validation using BootStrap CSS and JQuery

Image
HTML Code: <!DOCTYPE html> <html> <head> <script src="http://code.jquery.com/jquery.min.js"></script> <link href="http://maxcdn.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet" type="text/css" /> <script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">   <meta charset="utf-8">   <title>Text Input Validation</title> </head> <body>   <strong>Enter any Data:<strong><br/> <input type="text" class="btn-lg btn-default" id="test"/>   <span id='testvalid'></span> </body> </html> JQuery Script Code $(document).ready(function(){       //Blur Event checks the input field when it loses focus      $('#test