Git Product home page Git Product logo

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

Dahan Schuster's Projects

bike-ifs-ci icon bike-ifs-ci

Versão CodeIgniter do Bike IFS: Sistema WEB para validação e controle de acesso de bicicletários.

homecoffee icon homecoffee

Home's Coffe CWB - Dashboard e cardápio em React

linux-utils icon linux-utils

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

mbc-enrollment icon mbc-enrollment

My first cannister using Motoko and ICP, made for enrollment into the Motoko Bootcamp

react-manager-api icon react-manager-api

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

react-manager-web icon react-manager-web

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.

react-task-app icon react-task-app

Simple task list web app made with React.js, Node.js and GraphQL

space_invaders icon space_invaders

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

sua-ficha icon sua-ficha

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

tindev icon tindev

Semana OmniStack: Tinder para desenvolvedores [Node.js, React JS e React Native]

ts-utils icon ts-utils

Set of Typescript utililities like React hooks, Components and functions

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.