Coder Social home page Coder Social logo
#include <iostream>
#include <string>

using namespace std;

struct Person
{
    char *firstname;
    char *lastname;
    string fullname = string(firstname) + " " + string(lastname);
    char *email;
    char *desc;
    struct social
    {
        char *github;
        char *linkedin;
        char *instagram;
    } social;
    struct skill
    {
        char *name;
    } skills[15];
};

int main()
{
    Person p;

    // personal
    p.firstname = "Wahyu Cahyanto";
    p.lastname = "Bayu Agung";
    p.email = "[email protected]";
    p.desc = "I am a Informatics Engineering Student at the University of Trunojoyo Madura";

    // social
    p.social.github = "wchynto";
    p.social.linkedin = "wahyu-cahyanto-bayu-agung-54b61022a";
    p.social.instagram = "@wchynto.dev";

    // front-end
    p.skills[0]
        .name = "HTML";
    p.skills[1].name = "CSS";
    p.skills[2].name = "Javascript";
    p.skills[3].name = "Vue.js";

    // back-end
    p.skills[4].name = "PHP";
    p.skills[5].name = "Laravel";
    p.skills[6].name = "Node.js";
    p.skills[7].name = "Express.js";

    // database
    p.skills[8].name = "MySQL";
    p.skills[9].name = "MongoDB";

    // devops
    p.skills[10].name = "Git";
    p.skills[11].name = "Docker";
    p.skills[12].name = "Linux";
}

Wahyu Cahyanto Bayu Agung's Projects

growup-projectgabut icon growup-projectgabut

GrowUp adalah project permainan dimana benda akan semakin besar jika memakan/meyentuh benda lain.

laravel-fp icon laravel-fp

Laravel package for connect and get data from finger print Solution X100-C, X304, X302-S, X401, X601, C1

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.