Skip to content
View ajith05's full-sized avatar
🎯
Focusing
🎯
Focusing
  • North Carolina State University
  • Raleigh, NC, USA

Block or report ajith05

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

Hi there 👋

I am a graduate student studying for a Master of Computer Science (MCS) degree at North Carolina State University (NCSU), Raleigh, USA.

I worked for 3 years as a data scientist, a machine learning engineer, and a software engineer. My interests are in Artificial Intelligence (AI), Machine Learning (ML), Python, and Backend Engineering.

I worked at Elastiq as a software engineer where I implemented multiple applied AI solutions. Elastiq is an early-stage B2B AI startup focusing on both generative AI and applied AI solutions.

Before joining Elastiq, I was working at Mavenir Systems (India) as a Member of Technical Staff - I (R&D) where I implemented Reinforcement Learning (RL) solutions.

Pronouns: He/Him/His

Check out my personal website and my GitHub Gists

How to reach me:

Pinned Loading

  1. ajith05.github.io ajith05.github.io Public

    This is my personal website

    Python

  2. Fall24-SE-ASK/HW1 Fall24-SE-ASK/HW1 Public

    Python

  3. Fall24-SE-ASK/git-homework Fall24-SE-ASK/git-homework Public

    This repository represents our submission for CSC 510 SE Homework 5

    HTML

  4. This script is to clear all __pycach... This script is to clear all __pycache__ folders within all drives on a windows machine. This does not require any external libraries
    1
    '''
    2
    This is a helper script to delete all __pycache__ folders
    3
    '''
    4
    from ctypes import windll
    5
    from pathlib import Path
  5. Batch script to print ssh hosts defi... Batch script to print ssh hosts defined in both the user-specific and the system-wide ssh config files on windows
    1
    @echo off
    2
    setlocal
    3
    
                  
    4
    set user_config=%USERPROFILE%\.ssh\config
    5
    echo.
  6. Batch script to print the IP of an s... Batch script to print the IP of an ssh host given the name of host is known
    1
    @echo off
    2
    setlocal
    3
    
                  
    4
    if [%~1]==[] (
    5
        echo No input given to the script