Skip to content
View RayElg's full-sized avatar
😎
😎

Organizations

@confluentinc
Block or Report

Block or report RayElg

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

Raynor Elgie

SWE @ Confluent

Projects

DBChat (SQL-integrated AI assistant)

Client & server for database-integrated AI assistant. Allows querying against your database with natural language.

chatwindow with AI assistant prompted to generate a report

Check it out

processor (Custom assembly language & interpreter)
    JNZ, 15, PAD, //Jump past characters
    b'h', b'e', b'l', //put 'helloworld!' in memory
    b'l', b'o', b'w',
    b'o', b'r', b'l',
    b'd', b'!', b'\n',
    LD_BYTE, 0, 3, //PTR=3
    LD_BYTE, 1, 15, //TARGET=15
    PRNTC_LOC, 0, PAD, //PRNT PTR
    INC, 0, PAD, //PTR++
    SUB, 0b0001_0000, 14, //DIFF = TARGET-PTR
    JNZ, 21 //Jump to PRNTC_LOC location if DIFF != 0

Taking some inspiration from x86, this is an assembly language and 16-register, 32-bit processor emulator.
Check it out

WikiPredict (NLP & ML Project) Prediction report

An NLP & Machine Learning model deployed with Django. Trained with data from movie dialogue & Wikipedia articles, it evaluates text for proper Wikipedia tone. Built using Spacy, Scikit-learn.

Try it out

PictureThis (Web image repository) images uploaded by raynor

An image repository that handles access control, authentication, searching, and automatic tagging (through an image classification API) Try it out

plotGeoJson (Heat map generator) plotmap

A python script that will generate a heatmap or plot features from a GeoJson file Check it out

Massives (N-Body simulation)

An N-Body physics simulation written with Rust and Python. Reads universe starting state from JSON, uses Rust to do the heavy lifting, and Python for the display. Check it out

Links, etc.

raynorelgie.com
Linkedin

Pinned

  1. processor processor Public

    Assembly language & emulator in Rust

    Rust 5

  2. DBChat-Client DBChat-Client Public

    Local client for GPTBlocks DBChat

    Python

  3. WikiPredict WikiPredict Public

    Machine Learning & NLP application to evaluate sentences for the Wikipedia "Encylopedia tone"

    Jupyter Notebook

  4. massives massives Public

    N-Body simulation written with Rust and Python

    Rust

  5. PictureThis PictureThis Public

    Image repository with access control, upload, searching, and feature tagging (using an API)

    PHP

  6. plotGeoJson plotGeoJson Public

    Creates a plot of GeoJson features

    Python