Skip to content
View jgnacio's full-sized avatar
🇻🇪
🇻🇪
  • Holberton student
  • Uruguay

Highlights

  • Pro
Block or Report

Block or report jgnacio

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
jgnacio/README.md

Hi I am
░░▀ █▀▀▀ █▀▀▄ █▀▀█ █▀▀ ░▀░ █▀▀█
░░█ █░▀█ █░░█ █▄▄█ █░░ ▀█▀ █░░█
█▄█ ▀▀▀▀ ▀░░▀ ▀░░▀ ▀▀▀ ▀▀▀ ▀▀▀▀

Linkedin: jgnacio GitHub followers

C Python Lua MySQL Opengl
JavaScript React Talwind CSS
GNU Bash Neovim Visual Studio Code Git

A little more about me...

#include <stdio.h>
#include <stdlib.h>

struct developer {
    char *name;
    char *education;
    char *skills;
    char *interests;
    char *misc;
};

void free_developer(struct developer *d);

int main() {
    struct developer jgnacio;

    jgnacio.name = malloc(16 * sizeof(char));
    if (jgnacio.name == NULL) {
        printf("Error: failed to allocate memory for name.\n");
        return 1;
    }
    strcpy(jgnacio.name, "Ignacio Gómez");

    jgnacio.education = malloc(58 * sizeof(char));
    if (jgnacio.education == NULL) {
        printf("Error: failed to allocate memory for education.\n");
        free_developer(&jgnacio);
        return 1;
    }
    strcpy(jgnacio.education, "I am a software engineering student at Holberton School.");

    jgnacio.skills = malloc(16 * sizeof(char));
    if (jgnacio.skills == NULL) {
        printf("Error: failed to allocate memory for skills.\n");
        free_developer(&jgnacio);
        return 1;
    }
    strcpy(jgnacio.skills, "C, Python, Lua");

    jgnacio.interests = malloc(102 * sizeof(char));
    if (jgnacio.interests == NULL) {
        printf("Error: failed to allocate memory for interests.\n");
        free_developer(&jgnacio);
        return 1;
    }
    strcpy(jgnacio.interests, "Keeping up with the latest trends in the technology industry and exploring new programming projects.");

    jgnacio.misc = malloc(43 * sizeof(char));
    if (jgnacio.misc == NULL) {
        printf("Error: failed to allocate memory for misc.\n");
        free_developer(&jgnacio);
        return 1;
    }
    strcpy(jgnacio.misc, "opengl, moderngl, nextjs, reactjs, prisma");

    printf("Hi, my name is %s and %s\n", jgnacio.name, jgnacio.education);
    printf("Most programming languages I use: %s\n", jgnacio.skills);
    printf("My interests include: %s\n", jgnacio.interests);
    printf("Miscellaneous skills: %s\n", jgnacio.misc);

    free_developer(&jgnacio);

    return 0;
}

void free_developer(struct developer *d) {
    free(d->name);
    free(d->education);
    free(d->skills);
    free(d->interests);
    free(d->misc);
}

GitHub stats


jgnacio jgnacio jgnacio

Pinned

  1. landing_app_engine landing_app_engine Public

    Next.js Application on Google App Engine

    TypeScript 2

  2. node-prisma-workload-manager node-prisma-workload-manager Public

    TypeScript 1

  3. jgit jgit Public

    Tool to upload your git files easier ;)

    Shell 3

  4. holbertonschool-printf holbertonschool-printf Public

    C 1

  5. holbertonschool-simple_shell holbertonschool-simple_shell Public

    A proyect of Holberton Schoool. Write a simple UNIX command interpreter.

    C 1 1

  6. holbertonschool-higher_level_programming holbertonschool-higher_level_programming Public

    Python 1