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

How to download google chrome browser in linux using terminal command?

Image
Step 1: Download Google Chrome For 32 bit version $ wget https://dl.google.com/linux/direct/google-chrome-stable_current_i386.deb For 64 bit version $ wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb Step 2: Install .deb file For 32 bit version $ sudo dpkg -i google-chrome-stable_current_i386.deb For 64 bit version $ sudo dpkg -i google-chrome-stable_current_amd64.deb Issues: if you get any error while installing or downloading just use this below command to clear the issues 1. $ sudo apt-get update 2. $ sudo apt-get upgrade 3. $ sudo apt-get -f install After installation check it google chrome in linux dash home search:

How to check CPU usage in Linux OS?

Image
Generally top is a command to check CPU usage on any OS. top command htop Command In Linux Terminal command to CPU usage htop is another to do the task but before install htop as:  Sudo apt-get install htop  in terminal then after use htop command other than iostat,  /proc/meminfo,mpstat are the commands to be used to check CPU  and memory usages

Compress Data using ASCII Values and Decompress data to get back original ASCII

public class StrAscii {          public static void main(String[] args)     {               StrAscii.stringToBytesASCII("Apple");     }          public static byte[] stringToBytesASCII(String str) {  byte[] b = new byte[str.length()];  for (int i = 0; i < b.length; i++) {      System.out.println("Before Ascii "+i+" ="+b[i]);   b[i] = (byte) str.charAt(i);   System.out.println("After Ascii "+i+" ="+b[i]);   StrAscii sa=new StrAscii();      System.out.println("Compressed data Bytes "+i+" ="+sa.compressbyte(b[i]));   System.out.println("Compressed data Slots "+i+" ="+sa.compressslot(b[i]));   System.out.println("Decompressed data "+i+" ="+ (sa.compressbyte(b[i])*9+sa.compressslot(b[i])));  }  return b; }  public long compressslot(long x)  {      x = x%9;      return x;  }  public long compressbyte(long y)  {      y = y/9;      return y;  }

Four Sequential or series Squared Numbers Formula's in two cases

Image
In this I've observed and innovated new shortcut Math formula of Four Sequential or series Squared Numbers Formula's in two cases; Case 1: Only applicable for positive numbers; Case 2: it will be applicable both negative and positive numbers in those series; Condition : d- difference must be unique; See below pictures that I've made it in two formulas

Login and Registration forms in C# windows application with Back end Microsoft SQL Server for data access

Image
In this article, I'm gonna share about how to make login and register form with MS SQL database; 1. Flow Chart Logic 2. Normal Features 3. Form Designs Login Form Design Sign in Form Design Password Retrieve Form 4. Database Design and SQL queries and Stored Procedure Create new Database as "schooldata" create table registerdata (  ID int identity,  Username nvarchar(100),  Password nvarchar(100),  Fullname  nvarchar(100),  MobileNO nvarchar(100),  EmailID nvarchar(100)  ) select * from registerdata create procedure regis (  @Username as nvarchar(100),  @Password as nvarchar(100),  @Fullname as nvarchar(100),  @MobileNO as nvarchar(100),  @EmailID as nvarchar(100)  ) as begin insert into registerdata (Username, Password, Fullname, MobileNO,EmailID) values (@Username, @Password, @Fullname, @MobileNO, @EmailID) end 5. App.config Settings <?xml versio