Skip to content
View indira-lima's full-sized avatar
💻
Coding
💻
Coding

Block or report indira-lima

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

Hello, fellow coder!

Wellcome to my personal page! I'm a trans non-binary person that spends lots of time either using my computer or playing boardgames with friends haha

autocomplete

Top Langs

There's nothing special here, I'll just add some shortcuts for my personal works and keep a updated resume of what I do in general. Thanks for reading!

Github suggested these topics, so I'll use it:

  • 🔭 I’m currently working on web and mobile development, focused on React and React Native
  • 🌱 I’m currently learning Shell Scripting and Linux Ricing. I use linux 95% of the time for years, but I'm still a regular user with just some basic knowledge, so I try to learn a little more everyday and, when there's something I always do in the terminal, I try to write simple scripts for it. Currently I (try to) use Bash, but I'm looking forward to learn more Python and write more complex scripts with less effort haha Checkout my Linux Utils and dotfiles repositories!
  • 🤔 I’m looking for help with writing my own projects from ground. It's still a hard challenge for me to start and finish projects on my own, so help in the process is always wellcome!
  • 💬 Ask me about JavaScript, React, Front-end and Linux Ricing, these are the things I know most. But I can try to help you with Python and Shell Scripting too, as with some other languages like Java, C and PHP, and some Electronics stuff :D
  • 😄 Pronouns: 🇺🇸 She/her; 🇧🇷 Ela/dela
  • âš¡ Fun fact: I like to play board-games in my free time, and pretend to code some of them in the future. We can play together in Board Game Arena

Code shortcuts

  • Check if is root
if [ "$EUID" -ne 0 ]
  then echo "Please run as root"
  exit
fi
  • Ask for confirmation (yes/no)
# simple way, with read command
read -p "Are you sure? " -n 1 -r
echo   # (optional) move to a new line
if [[ ! $REPLY =~ ^[Yy]$ ]]
then
    exit 1
fi

# sofisticated way, with select command
echo "Do you wish to install this program?"
select yn in "Yes" "No"; do
  case $yn in
    Yes ) make install;;
    No ) exit;;
  esac
done
  • Linux usage utils
# see disk usage
du -sh <file or directory>

# real time system monitoring
top
  • Bcrypt hash for '1234' password (very userful for test users)

    $2a$12$Jn6GUP9IxhsMNNSN5gLiPuOD4YeXP4jGjThLFw532PPqKSzXMl9UC

Pinned Loading

  1. react-manager-web react-manager-web Public

    A startpoint for management applications made with ReactJS, Vite and MUI. It includes CRUD screens for Users, Profiles and Themes, with a permissions system totally integrated with the API.

    TypeScript

  2. react-manager-api react-manager-api Public

    A startpoint for management applications made with NodeJs,AdonisJs and Lucid. It includes CRUD routes for Users, Profiles, Themes and Permissions.

    TypeScript

  3. Space_Invaders Space_Invaders Public

    A simple space invaders clone made with Js using de P5.js library

    JavaScript

  4. sua-ficha sua-ficha Public

    A system to create and share RPG characters and campaigns, based on the Avatar: The Last Airbender show

    TypeScript

  5. linux-utils linux-utils Public

    Bash functions to include into your Linux terminal's config file (.bashrc, .zshrc etc)

    Shell 1

  6. republica-munchkin republica-munchkin Public

    A level counter for Star Munchkin

    TypeScript 3 1