Giter VIP home page Giter VIP logo

Hi there! 👋

use std::println;

struct Developer {
    name: String,
    age: u32,
    location: String,
    languages: Vec<String>,
}

impl Developer {
    fn new() -> Developer {
        Developer {
            name: String::from("Zylo"),
            age: 21,
            location: String::from("Samut Sakorn, Thailand"),
            languages: vec![
                String::from("JavaScript"),
                String::from("TypeScript"),
                String::from("C#"),
                String::from("Python"),
                String::from("Go"),
            ],
        }
    }

    fn say_hello(&self) {
        println!("Hello there! I'm {}!", self.name);
        println!("I'm a {}-year-old developer from {}.", self.age, self.location);
        println!("I'm proficient in the following languages:");
        for language in &self.languages {
            println!("- {}", language);
        }
    }
}

fn main() {
    let zylo = Developer::new();
    zylo.say_hello();
}

👨‍💻 What I do

I enjoy working with various technologies and tools, including:

  • Languages: JavaScript, TypeScript, C#, Python, Go, Rust
  • Frameworks/Libraries: Next.js, React, Svelte, Vue.js, Tailwind CSS, Shadcn UI
  • Databases: MongoDB, PostgreSQL, MySQL, Firebase, Supabase, Prisma
  • Tools: Git, Docker, VS Code, GitHub, Vercel, Netlify

📈 GitHub Stats

Zylo's GitHub Stats GitHub Streak

Custom Activity Graph

📫 Get in touch

Zylo's Projects

discord-typescript-bot icon discord-typescript-bot

A simple Discord bot template in TypeScript using Discord.js, featuring command handling, type safety, and easy customization.

dotfiles icon dotfiles

Customized configurations for terminal and PowerShell environments.

mimir-db icon mimir-db

Simple in-memory database library for JavaScript/TypeScript applications, offering table creation, row insertion, selection, updating, and deletion.

nextjs-template icon nextjs-template

A simple Next.js project with TypeScript, ESLint, Prettier, Husky, and lint-staged configurations.

npm-template icon npm-template

An npm project template with a basic structure, common configurations, and helpful scripts for seamless npm package development.

register icon register

Grab your own sweet-looking '.is-a.dev' subdomain.

zylo23 icon zylo23

Hey there, I'm Zylo — a passionate full stack developer based in Thailand.

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.