Skip to content
View JsExpertCoder's full-sized avatar
🔥
consistency
🔥
consistency

Highlights

  • Pro

Organizations

@tecnologiasarnaldo @Ubipper

Block or report JsExpertCoder

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
jsExpertCoder/README.md

Hi, I'm Fábio

I'm a Software Engineer. My specialty is developing Android and iOS Mobile Apps with React Native.
I also have knowledge in Backend development with Laravel.

📚 I am currently taking the Common Core (42-cursus) at School 42

This is me as a code

#include <unistd.h>
#include <stdlib.h>

void	ft_strcpy(char *dest, char *src)
{
	while (*src)
		*dest++ = *src++;
	*dest = 0;
}

int	main(void)
{
	char	*str;
	int		slogan_size;

	slogan_size = 20;
	str = (char *)malloc(sizeof(char) * (slogan_size + 1));
	if (!str)
	{
		write(1, "Memory allocation failed\n", 25);
		exit(0);
	}
	ft_strcpy(str, "I will never give up");
	write(1, str, slogan_size);
	free(str);
	return (0);
}

These are the languages and tools I've studied so far

C C++ Shell Git Github Docker NGINX PHP TypeScript Laravel Tailwind-css ReactJs HTML5 React Native Linux Markdown

These are my Github´s stats

JsExpertCoder

 JsExpertCoder

JsExpertCoder

Contact

Linkedin Badge Gmail Badge

Pinned Loading

  1. vim-cbase Public

    A Vim plugin to quickly add a starter template for C exercises.

    Vim Script 3 1

  2. nlw-unite-react-native Public

    NLW Unite <React Native /> - 2024

    TypeScript 2

  3. reverb-rn-chat Public

    Documentation about a real time chat divided in two repo.

    2

  4. rnative-chat Public

    Frontend chat-app for a real time laravel-reverb backend

    JavaScript

  5. lara-chat Public

    Backend for a real time chat using reverb

    PHP

  6. ft_study Public

    C 1

1,081 contributions in the last year

Skip to contributions year list
Contribution Graph
Day of Week September October November December January February March April May June July August
Sunday
Monday
Tuesday
Wednesday
Thursday
Friday
Saturday
Less
No contributions.
Low contributions.
Medium-low contributions.
Medium-high contributions.
High contributions.
More

Activity overview

Contributed to JsExpertCoder/ft_study, JsExpertCoder/nlw-pocket, JsExpertCoder/vim-cbase and 26 other repositories
Loading A graph representing JsExpertCoder's contributions from August 25, 2024 to August 28, 2025. The contributions are 91% commits, 5% pull requests, 3% code review, 1% issues. 3% Code review 1% Issues 5% Pull requests 91% Commits

Contribution activity

August 2025

Created 14 commits in 1 repository
Created 1 repository

Created an issue in ayogun/push_swap that received 2 comments

Integer limit validation

First of all, thank you for sharing your work! 🙌 I’m currently studying your algorithm to better understand the push_swap project (also reading your

2 comments
Opened 1 other issue in 1 repository
beatrizdile/42sp-push_swap 1 closed
160 contributions in private repositories Aug 5 – Aug 23
Loading