Skip to content
View sylaht's full-sized avatar
🎯
Focusing
🎯
Focusing
  • Econverse
  • São Paulo - Brazil

Block or report sylaht

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.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. 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
sylaht/README.md

Hey there!

#include <stdio.h>
#include <time.h>

typedef struct {
    char name[50];
    int age;
    char hobbies[100];
    char current_role[50];
} SoftwareDeveloper;

SoftwareDeveloper software_developer() {
    SoftwareDeveloper me;

    snprintf(me.name, sizeof(me.name), "Thalys Leite");

    time_t now = time(NULL);
    struct tm *t = localtime(&now);
    int current_year = t->tm_year + 1900;
    me.age = current_year - 2000;

    snprintf(me.hobbies, sizeof(me.hobbies), "Travel to incredible (or not so incredible) places.");

    snprintf(me.current_role, sizeof(me.current_role), "Software Developer");

    return me;
}

int main() {
    SoftwareDeveloper me = software_developer();

    printf("Name: %s\n", me.name);
    printf("Age: %d\n", me.age);
    printf("Hobbies: %s\n", me.hobbies);
    printf("Current Role: %s\n", me.current_role);

    return 0;
}

Technologies

Frontend stack:

Javascript Typescript React React Native Next.js

Sass Tailwind Styled components

Backend stack:

NodeJS ExpressJS Fastify

Databases:

PostgreSQL MySQL

DevOps & Cloud:

Docker Google Cloud

Languages:

C C# PHP

Pinned Loading

  1. elucid elucid Public

    C

  2. async-pubsub async-pubsub Public

    TypeScript

  3. advent-of-code advent-of-code Public

    C

  4. gym gym Public

    TypeScript

  5. dodger dodger Public

    C

  6. TCC-LocPet TCC-LocPet Public

    🐕 the locpet project dedicated to locating lost and abandoned animals

    JavaScript 1