Giter VIP home page Giter VIP logo

Hey there, I’m Gino de Graaff

On a quest to bring fun back to tech!

I'm a tech enthusiast straight out of the Netherlands. I have a genuine curiosity for the world of tech, which has led me to become a jack of all trades in various domains: Hardware, Software, API, Artificial Intelligence, Security, Gadgets, a bit of tweaking -- you name it!

But forget about labels; the best way to really get to know me is by reaching out and getting in touch.



Bio


struct Me {
    name: String,
    username: String,
    skills: Vec<String>,
}

impl Me {
    fn new(name: &str, username: &str, skills: &[&str]) -> Me {
        Me {
            name: name.to_owned(),
            username: username.to_owned(),
            skills: skills.iter().map(|&skill| skill.to_owned()).collect(),
        }
    }

    fn introduction(&self) -> String {
        format!("Hi, my name is {} but also known as {}.", self.name, self.username)
    }

    fn quote(&self) -> String {
        "The only way to do great work is to love what you do.".to_owned()
    }
}

fn main() {
    let gino = Me::new("Gino de Graaff", "GinoGit", &[
        "Creative", "Fullstack", "Hardware", "Software", "Artificial Intelligence", 
        "Security", "Gadgets", "a bit of tweaking",
    ]);

    println!("{}", gino.introduction());
    println!("{:?}", gino.skills);
    println!("{}", gino.qoute());
}

GitHub Stats



Architecture


> fetch

console.log(`
┌───────────┬──────────────────────────────────────────┐
│  OS       │   MacOS                                  │
│  Host     │   MacBook                                │
│  Terminal │   Ghostty                                │
│  Shell    │   Zsh                                    │
│  IDE      │   Zed                                    │
│  Theme    │   Dracula Pro                            │
│  Font     │   Berkeley Mono                          │
└───────────┴──────────────────────────────────────────┘
`);



© 2024 GinoGit. All rights reserved.

Designed and developed by GinoGit


GinoGit's Projects

uninbox icon uninbox

Modern email for teams and professionals. A replacement for outdated email technology and tools. Alt to hey.com, front.com, missive.com

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.