Skip to content
View 0ex-d's full-sized avatar
💭
Engr. management
💭
Engr. management
  • Irgendwo, Irgendwohin (100% remote)

Block or report 0ex-d

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 Loading

  1. 0ex-d.github.io 0ex-d.github.io Public

    Get to know me

    HTML

  2. Some_Live_Software_Solutions.md Some_Live_Software_Solutions.md
    1
    # My Apps
    2
    
                  
    3
    1. [C'8 Coordinate](https://www.c8coordinate.com): An international disaster aid coordination platform connecting first responders, volunteers, aid givers, and disaster victims to facilitate direct, transparent, and efficient aid distribution. **Technologies:** Python, JQuery/Vanilla Javascript, Socket.IO websockets, Google Cloud.
    4
    
                  
    5
    2. [AUOSIS Online](https://auosis-online.web.app): A student virtual platform developed during the COVID-19 used in my school. **Technologies:** Golang, React Native, Expo SDK.
  3. I inverted a Binary Tree "once" so y... I inverted a Binary Tree "once" so you don't have to anymore ;(
    1
    
                  
    2
    fn main() -> Result<(), std::process::ExitCode> {
    3
      invert_binary_tree_once(Some(🌳));
    4
      Ok(std::process::ExitCode::SUCCESS)
    5
    }
  4. Poking the Rust 🦀 Borrow Checker. Poking the Rust 🦀 Borrow Checker.
    1
    // ❌ snippet_a
    2
    // This wouldn't work in Rust compiler because we're trying to change immutable data in memory
    3
    // https://doc.rust-lang.org/book/ch03-01-variables-and-mutability.html#variables-and-mutability
    4
    // Look at the fix in *snippet_b*
    5
    let mut_data:Vec<(),()> = Vec::new();
  5. Vim easy command mappings Vim easy command mappings
    1
    # (Vi)m Commands
    2
    
                  
    3
    **_By David Akin_**
    4
    
                  
    5
    Create and open a new file