Skip to content
View vigneshganesan008's full-sized avatar
🛸
Searching for life
🛸
Searching for life

Highlights

  • Pro
Block or Report

Block or report vigneshganesan008

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
vigneshganesan008/README.md

Pinned

  1. Chat-Room Application using socket p... Chat-Room Application using socket programming with user authentication - Python
    1
    import socket 
    2
    import select 
    3
    import sys 
    4
    import uuid
    5
    
                  
  2. Stream songs in multiple client devi... Stream songs in multiple client devices from a central server.
    1
    import pyaudio
    2
    import socket
    3
    import pickle
    4
    
                  
    5
    audio = pyaudio.PyAudio()
  3. ELibrary_with_Reader ELibrary_with_Reader Public

    An ebook reader with an inbuild elibrary developed using Java and Orcale DB.

    Java 1

  4. Implementing Two's complements subtr... Implementing Two's complements subtractor using quantum gates. (Qiskit library used)
    1
    # %% [markdown]
    
    2
    # Implementing Two's complements subtractor using quantum gates.
    
    3
    
                  
    4
    # %%
    
    5
    from qiskit import QuantumRegister, ClassicalRegister, QuantumCircuit, Aer, execute
    
  5. Programming_Microcontrollers_Wirelessly Programming_Microcontrollers_Wirelessly Public

    Updates the firmware on an Arduino UNO using an ESP8266. Also provides a web app for updating the firmware on the ESP8266 easily.

    C++ 1

  6. A program that does encyption/decryp... A program that does encyption/decryption in parallel using GPU cores.
    1
    #include <iostream>
    2
    #include <iomanip>
    3
    #include <cuda_runtime.h>
    4
    #include <openssl/des.h>
    5