Git Product home page Git Product logo

trait Summary {
    fn new(name: &'static str, attributes: Attributes) -> Self;
}

#[derive(Debug)]
struct Environment {
    editor           : &'static str,
    window_manager   : &'static str',
    operating_system : &'static str,
}

#[derive(Debug)]
struct Programming {
    expert       : [&'static str; 3],
    intermediate : [&'static str; 6],
    learning     : [&'static str; 3],
}

#[derive(Debug)]
struct Attributes {
    interest           : [&'static str; 5],
    natural_langauge   : [&'static str; 2],
    environment        : Environment,
    technical_language : Programming,
}

struct Person {
    name       : &'static str,
    attributes : Attributes,
}

impl Summary for Person {
    fn new(name: &'static str, attributes: Attributes) -> Person {
        Person {
            name,
            attributes,
        }
    }
}

fn main() {

    let environment = Environment {
        editor           : "vim",
        window_manager   : "dwm",
        operating_system : "linux",
    };

    let programming = Programming {
        expert       : [ "python", "c#", "bash" ],
        intermediate : [ "c", "c++", "vimscript", "lua", "haskell", "java" ],
        learning     : [ "rust", "wasm", "typescript" ],
    };

    let my_attributes = Attributes {

        interest           : [
            "Distributed-Systems",
            "Software-Architecture",
            "Web3-stack",
            "Algorithms",
            "Backend-Engineering"
        ],
        natural_langauge   : [ "English", "Indigenous" ],
        environment,
        technical_language : programming,
    };

    let my_name = "zipyx";
    let person: Person = Person::new(
        my_name,
        my_attributes,
    );

}

Skills

zipyx's Projects

adv360-pro-zmk icon adv360-pro-zmk

Production repository for the all-new Advantage360 Professional using ZMK engine

aespy-image-encryption icon aespy-image-encryption

AES encryption, taking an image, encrypting it's contents and storing it within a JPEG image file

clam-ebook-upload-library icon clam-ebook-upload-library

An EBooks Library web-host for storing common file extension books for personal use. Books are separated into categories and can be searched for if needed be.

clam-host icon clam-host

Centralized project hosting site displaying projects created and added to the database and if possible to display the content of the project in live view

clam-music-upload-library icon clam-music-upload-library

A Simple home-like music library that displays tracks recommended to you with an algorithm, each track can be searched for based on substring, name, or genre.

clam-std-library icon clam-std-library

A .NET Standard portable library package displaying a code-first approach with entity framework and custom properties

dot-files icon dot-files

Collection of my dot files used in my dev environment

dwm-dwmblocks-st icon dwm-dwmblocks-st

Windows manager set up using DWM and the dependencies for arch linux set up.

hypr icon hypr

Config files for Hyprland

ignite-chat-mapper-android icon ignite-chat-mapper-android

A Simple Android Chat Application that uses Firebase Authentication and Firebase Database to store the chat between users.

regex-patt-rs icon regex-patt-rs

Add regex + normalization technique to establish control of strings parsed through authentication

security-penetration-scripts icon security-penetration-scripts

A list of simple penetration tools used and tried with the intent of educating myself in other fields of the tech industry

server-hosting icon server-hosting

This is a project with simple CRUD operations. The operations work with a physical drive located on an Ubuntu Server. The operations of the host serves files to the client requesting those files. This was intended for uni purposes as I often always left things on my computer and so I thought I would store these files to be hosted live with a simple security interface storing credentials in the MYSQL database.

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.