Skip to content
View iamshreeram's full-sized avatar
  • US

Organizations

@10bytes @isomr @garageio
Block or Report

Block or report iamshreeram

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
iamshreeram/README.md

Shreeram - banner
About me
Shreeram

hor-colored-line

I work as an SRE and I am a Python / Golang developer. I am driven by my passion for turning seemingly impossible ideas into tangible solutions through software.

Shreeram-banner

About me

  • 🔭 I’m currently working on Webassembly, Text to speech, MLOperations, P2P networks, (Mostly on Rust, Golang)
  • 🌱 I’m currently learning Low resource computing
  • 👯 I’m looking to collaborate on Distributed systems and decentralized applications
  • 💬 Ask me about Philosophy of Cyber Engineering (Hardware/Software)

hor-border

Automatic digital assistant Coding Rocks

Utilities written

| gender-detection | p2p-chat | app-mon | slack-sender |
| go-kafka-stream | bill-reader | cert-checker | executor-service (faas) |





hor-border



biotech

Other Favourite Topics

| Genome Sequencing | Networking | Peer to Peer | Blockchain |
| Photography | Digital Forensics |


hor-border

My Projects

human-gender-detection go-kafka-stream app-mon simple-portfolio-page jmeter-plugin-slack-sender twitter-senti-analyzer executor-service php-ssl-installer mini-domain shreeram

Pinned

  1. Installing SSL certificate in hostinger Installing SSL certificate in hostinger
    1
    # Installation of SSL Certificate 
    2
    
                  
    3
    ## Enable SSH :
    4
    ssh x123011738@31.170.164.22 -p 65002
    5
    
                  
  2. Install Kali Nethunter in Nexus 9 Install Kali Nethunter in Nexus 9
    1
    # Steps to install Kali Nethunter in Nexus 9
    2
    
                  
    3
    1. Root your device
    4
    2. Download Nethunter
    5
    3. Install `adb` to your computer
  3. Tomcat validation without Sleep Tomcat validation without Sleep
    1
    # Prostart the script
    2
    
                  
    3
    #!/bin/bash
    4
    #set -x
    5
    
                  
  4. script to ssh into server script to ssh into server
    1
    # expect package needs to be installed
    2
    PKG_OK=$(dpkg-query -W --showformat='${Status}\n' expect |grep "install ok installed")
    3
    if [ "" == "$PKG_OK" ]; then
    4
            sudo apt-get --force-yes --yes install expect
    5
    fi
  5. Live monitor for any new file creati... Live monitor for any new file creation and copy them to destn location : Used for write-only back-up for new files
    1
    srcdir="/tmp"; inotifywait -e close_write --format "%f" --monitor $srcdir |
    2
      while IFS= read -r line
    3
      do
    4
        echo $line
    5
        cp "$srcdir/$line" . #this would not replicate directories
  6. craigslist-scrapper craigslist-scrapper Public

    Python Scrapper for best price finder in United States

    Python