Skip to content
View rimaout's full-sized avatar

Highlights

  • Pro

Organizations

@CS-Swap
Block or Report

Block or report rimaout

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

About Me

from typing import Tuple, List, Dict

class rimaout:
    pass

class Attributes(rimaout):

    @property
    def contact(self) -> Tuple[str, str]:
        matrix  = "@rimaout:matrix.org"
        email   = "oettam.do@tuta.io"
        
        return matrix, email

    @property
    def life(self) -> Tuple[List[str], List[str], int]:
        uni   = ['Sapienza Rome', 'Computer Science'] 
        langs = ['English', 'Italian']
        age   = 21
        
        return uni, langs, age
    
    @property
    def coding(self) -> Tuple[Dict[str, List[str]], List[str], List[str]]:
        skills = {
            'expert'      : [None],
            'intermediate': ['Python'],
            'learning'    : ['Java', 'Rust']
        }
        tools = ['Visual Studio Code', 'Obsidian']

        return skills, tools

    @property
    def public_work(self) -> Dict[str, str]:
        work_links = {
                'uni_notes'      : 'https://notesinpublic.xyz',
                'latest_project' : 'https://github.com/rimaout/flac2mp3'
            }

        return work_links

Pinned

  1. flac2mp3 flac2mp3 Public

    Python-based audio format converter specifically designed for FLAC to MP3 conversions.

    Python

  2. RSSPod-dl RSSPod-dl Public

    Python CLI tool for downloading and managing podcast from RSS feeds.

    Python

  3. Password-Generator Password-Generator Public

    This is a simple app that let’s you generate random passwords

    Python

  4. pomodoRU pomodoRU Public

    CLI Pomodoro Timer for productive geeks

    Makefile

  5. Obsidian-Configuration Obsidian-Configuration Public

    This is how I set up and use Obsidian for University and Programming note taking

    HTML

  6. Terminal-Setup Terminal-Setup Public

    This is my terminal setup for kitty on macos

    Shell 2