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

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

  1. Duoligot is a NLP class that uses va... Duoligot is a NLP class that uses various language processing toolset to convert your spoken words to text. Can be used in audio transcription, voice commands e.t.c
    1
    __doc__ = """
    2
    NLP module to convert speech-to-text, can be used
    3
    for extracting audio files, voice commands.
    4
    requires speech_recognition toolset for NLP.
    5
    Only works with English Language
  2. 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();
  3. 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
  4. 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
    }