Skip to content
View solanto's full-sized avatar
🌞
🐸πŸŒ₯️🌟πŸͺ΄πŸŸ
🌞
🐸πŸŒ₯️🌟πŸͺ΄πŸŸ
Block or Report

Block or report solanto

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

Pinned

  1. ultrasonic-scanner ultrasonic-scanner Public

    πŸ“‘ realtime environment mapping aboard a portable, low-resource ultrasonic device

    C++ 1

  2. Trusty.jl Trusty.jl Public

    πŸŒ‰ truss analysis made convenient!

    Julia 3

  3. whee.py whee.py Public

    🧢 an interactive visualization of a GY-521's gyroscope data as recorded by an Arduino

    Python 4

  4. covid-19-mapped covid-19-mapped Public

    😷 a user-friendly COVID-19 dashboard written for Shiny, featuring on-the-fly map switching and digestible summaries

    R 1

  5. garden garden Public

    🌱 my personal website, built on 11ty

    SCSS 3

  6. tiny js functions.js tiny js functions.js
    1
    // some one-liner functions i wrote and condensed as far as i could :)
    2
    // warning! some of these pollute the global namespace!
    3
    
    
    4
    // palindrome checker - 51 chars - string => boolean
    5
    ([...s])=>s.reduce((a,v,i)=>a*=s.reverse()[i]==v,1)