Skip to content
View rhobro's full-sized avatar
🧠
Trying to get computers to think.
🧠
Trying to get computers to think.

Block or report rhobro

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

You know that all the good projects are on private repositories. Nevertheless, here's a recap of those and the ones I'm working on.

Good stuff:

(In development) Neighbourhood got robbed. CCTV doesn't work anymore. Making a drone-based deterrent system. The "sentry" uses existing CCTV infrastructure and computer vision to locate intruders. I'm designing it to be efficient enough to run on old phones as well. The "controller" allows me to programmatically control my drone. In this case, it can instruct the drone to fly to the location, start filming and following them while calling the police simultaneously. They won't have seen that coming. Long term project - this one.

(In development) DIY Ring doorbell using old phone. Using CV to identify those outside, audio to know when lurking and not knocking. Passthrough of peephole video feed.

System allowing me to play sound from files or microphone across multiple computers in a network. Building turned into a giant speaker, basically.

Rust crate which interfaces to a decentralised crypto exchange. Using whole shebang in cryptography because it's a Dex. You can guess what I want to use it for :)

Neighbour's cat keeps trying to get into the house. Actually got in one time and hid inside the sofa. Mum's allergic. Making a computer-vision powered cat deterrent which uses sound. (Update: cat died :( so stopped development)

Rapid proxy-switiching privacy alternative to Tor. Used free online proxy lists with a testing system.

Quick app to allow me to sign in and out of school from my phone. Uses geofences for verification.

Kahoot bot :) (and other random experiments like for 2048, Wordle, rider, pianotiles)

Interface to a service allowing me to store unlimited amounts of MP4 video online and stream it anywhere for free anonymously. You can see why I wouldn't release that.

https://latinvocab.herokuapp.com/ - CLC Latin vocab tester, but Heroku free dyno plan stopped?

Pinned Loading

  1. Python script to train a Dense neura... Python script to train a Dense neural network on the MNIST dataset
    1
    import torch as T
    2
    from torch import nn
    3
    import torch.nn.functional as F
    4
    from torchvision import datasets, transforms
    5
    
                  
  2. Java class to encrypt/decrypt string... Java class to encrypt/decrypt strings using the AES 256 bit encryption algorithm
    1
    package tech.neurobyte.dev.crypt;
    2
    
                  
    3
    import org.jetbrains.annotations.Contract;
    4
    import org.jetbrains.annotations.NotNull;
    5
    import org.jetbrains.annotations.Nullable;
  3. gorchitect gorchitect Public

    Tool to compile Go programs into a directory for every GOOS and GOARCH combination.

    Go 1

  4. Go script to download crypto dump da... Go script to download crypto dump data at https://gz.blockchair.com with(out) an API key for faster downloading)
    1
    package main
    2
    
                  
    3
    import (
    4
    	"compress/gzip"
    5
    	"errors"
  5. sigma sigma Public

    A JavaFX GUI tool to handle basic accounts

    Java