Skip to content
View jonas-scholz123's full-sized avatar
  • Imperial College London
  • London

Highlights

  • Pro
Block or Report

Block or report jonas-scholz123

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

Hi, I'm Jonas πŸ‘‹

I'm a German/Jordanian software engineer with a background in theoretical physics from Imperial College London. Currently interested in Rust, meta learning and quantum field theory.


πŸ”§ Tech & Tools


πŸ’» Projects

🚌 London Travel Time Heatmap

This heatmap tells you how long it takes to get to anywhere in London via public transport from one or more starting locations. Ideal for figuring out where to meet with your friends, or how well your potential new home is connected. The backend is written in rust and the frontend in react. Check it out here!. Travel time heatmap

πŸ’₯ Particles in a box and ascii animation

Particle Animation

Check out my ascii-animated, optimized C++ particle simulation here.


Audible vision

πŸ‘€ ➑️ πŸ‘‚ Hearing Images

Another project that I'm proud of is my hearing images application, in which live video data is converted to audio signals, which could function as a translater of visual information for visually impaired people. For a very quick intro, see the gif above. You can check it out (and try it out) here.


🧩 Cryptic Crossword Solver

Over the summer, I contributed to a compsci lecturer's project, a cryptic crossworld solver. It takes a clue from a cryptic crossword, comes up with the most likely solution and explains it to you. For example:

The clue is: County type pair mixed, holding runs (9)
I think the solution is "TIPPERARY"

Let me explain...
I think the answer is supposed to mean "county"
I think "holding" indicates the insertion of one word into another      β—€  helped with this 
   1: The text "runs" resolves to "r"
   2: I think "mixed" indicates an anagram                              β—€  helped with this 
         I think we have the concatenation of 2 sub-clues:
            1: "type" is verbatim text
            2: "pair" is verbatim text
         Joining the results together we get "type pair"
      The required anagram is "tippeary"
For the insertion, "r" needs to be inserted into "tippeary"
The result is "tipperary"

In particular, I worked on a classifier model based on word2vec embeddings, supposed to turn a word into all possible indicators it could represent. In the example above, this classifier evaluates "holding" as an insertion and "mixed" as an anagram indicator. Previously, indicator words were simply referenced against a list of indicators, but using the classifier, even previously unseen words can be classified.


🀝 Get in contact!

Let's make things less one-sided, message me on .

Pinned Loading

  1. do-my-taxes do-my-taxes Public

    Does my taxes

    JavaScript 1

  2. travel-time travel-time Public

    Input any number of locations in London via postcode, and it colours a map of london by how long it takes to get there via public transport from all locations.

    Rust 1

  3. particle-simulation particle-simulation Public

    This is an efficient O(n) simulation of n particles in a 3D box. I have built my own little ascii-console animation to show the particles!

    C++

  4. hearing-images hearing-images Public

    Allowing visually impaired users to hear images live as they are recorded by transforming greyscale image data into sounds by mapping brightness β†’ amplitude, pixels(x, y) β†’ frequency (using pseudo-…

    Python 1

  5. boomer-humour-exhumer boomer-humour-exhumer Public

    A PyTorch Image classifier that detects boomer humour.

    Python 1

  6. raytracer raytracer Public

    A basic rust CPU raytracer

    Rust