Code Monkey home page Code Monkey logo
Hasindu Senarathna photo

hasiya2004 Goto Github PK

followers: 4.0 following: 11.0 repos: 63.0 gists: 0.0

Name: Hasindu Senarathna

Type: User

Company: lazuno

Bio: C#.NET, Java ,JS , Python developer. Building robust apps. Let's collaborate on exciting projects! πŸš€πŸ’»πŸ€ #SoftwareDeveloper #cpp #Java #Python

Twitter: Hasinduse

Location: Sri lanka

#[derive(Debug, PartialEq)]
struct Bio {
    name: String,
    designation: String,
    company: String,
    base: String,
    blog: String,
}

impl Bio {
    fn new() -> Self {
        Bio {
            name: String::from("Hasindu Senarathna"),
            designation: String::from("Data Scientist n Developer"),
            company: String::from("Lazuno"),
            base: String::from("Warakapola , Sri Lanka "),
            blog: String::from("----------------------"),
        }
    }
}

#[derive(Debug, PartialEq)]
struct Stack {
    languages: Vec<String>,
    databases: Vec<String>,
    misc: Vec<String>,
    ongoing: Vec<String>,
}

impl Stack {
    fn new() -> Self {
        Stack {
            languages: vec![
                String::from("Python"),
                String::from("Go"),
                String::from("Shell"),
                String::from("rust"),
                String::from("java"),
                String::from("php"),
                String::from("html"),
                String::from("css"),
                String::from("js"),
            ],
            databases: vec![
                String::from("MySQL"),
                String::from("PostgreSQL"),
                String::from("Mongo"),
                String::from("Redis"),
            ],
            misc: vec![
                String::from("Docker"),
                String::from("Celery"),
            ],
            ongoing: vec![
                String::from("Django"),
                String::from("GraphQL"),
            ],
        }
    }
}

#[derive(Debug, PartialEq)]
struct Social {
    twitter: String,
    linkedin: String,
}

impl Social {
    fn new() -> Self {
        Social {
            twitter: String::from("Hasinduse"),
            linkedin: String::from("Hasindu Senarathne"),
        }
    }
}

fn main() {
    let bio = Bio::new();
    let stack = Stack::new();
    let social = Social::new();

    println!("Bio: {:?}", bio);
    println!("Stack: {:?}", stack);
    println!("Social: {:?}", social);
}


⭐️ From [Hasindu](https://github.com/hasiya2004)

Hasindu Senarathna's Projects

Hasindu Senarathna doesn’t have any public repositories yet.

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.