Skip to content

Instantly share code, notes, and snippets.

View gabrielle-lima's full-sized avatar
🖥️
creating bugs

Gabrielle Lima gabrielle-lima

🖥️
creating bugs
View GitHub Profile
@psavelis
psavelis / must_have_engineering_skills.json
Last active April 7, 2026 14:46
Sumary of must have knowledge required for top engineering roles
{
"title": "Knowledge Framework for Senior-to-Staff Engineer+ Roles",
"overview": "This is the definitive, complete, and non-negotiable body of knowledge required for true Staff Engineer and Principal-level roles. Every topic has been significantly augmented with deeper strategic depth, elevated language reflecting org-wide leadership impact, expanded key_competencies (now 5 per topic), and a new consistent field 'org_impact' that explicitly articulates the business and platform-level outcomes expected at this level. The framework is now fully self-contained, exhaustive, and calibrated for large-scale, AI-augmented, globally distributed systems where Staff+ engineers set the technical bar across the entire organization.",
"requirements": [
{
"topic": "SOLID + GRASP",
"key_focus": "true responsibility assignment at scale",
"staff_level_mastery": "At Staff+ level, engineers demonstrate instinctive, org-wide mastery of SOLID principles (SRP, OCP, LSP, ISP, DIP) combined with all nine
@NatanR-dev
NatanR-dev / Dockerfile
Last active December 11, 2025 15:13
c webserver
# Usar imagem base com GCC pré-instalado
FROM n0madic/alpine-gcc:9.2.0
# Criar diretório de trabalho
WORKDIR /app
# Copiar o código-fonte para o container
COPY . .
# Compilar o programa
@takanuva
takanuva / agt.h
Last active December 15, 2025 00:29
Simple generic print() and scan() macros
/*******************************************************************************
* Copyright 2022 Paulo Torrens *
* *
* Permission is hereby granted, free of charge, to any person obtaining a copy *
* of this software and associated documentation files (the "Software"), to *
* deal in the Software without restriction, including without limitation the *
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or *
* sell copies of the Software, and to permit persons to whom the Software is *
* furnished to do so, subject to the following conditions: *
* *
@luisvonmuller
luisvonmuller / auto-invite-2021.js
Last active April 22, 2021 03:32
Simple auto invite code for LinkedIn.
var linkedinhoAutoInviter = class {
constructor(maxInvites, actionDelay, pageDelay, ScrollDelay) {
this.pageButtons = [];
this.alreadyInvited = 0;
this.maxInvites = maxInvites;
this.actionDelay = actionDelay;
this.pageDelay = pageDelay;
@alexandreaquiles
alexandreaquiles / _README.md
Created March 29, 2021 18:04
Como usar JSP com Spring Boot?

Como usar JSP com Spring Boot?

Passo a passo

No pom.xml, adicione as seguintes dependências:

<!-- JSP-->
<dependency>
 org.apache.tomcat.embed
@vepo
vepo / Formatter.xml
Last active April 2, 2026 03:25
My Eclipse Formatter for Java.
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<profiles version="23">
<profile kind="CodeFormatterProfile" name="MyFormatter" version="23">
<setting id="org.eclipse.jdt.core.formatter.insert_space_after_ellipsis" value="insert"/>
<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_enum_declarations" value="insert"/>
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_allocation_expression" value="do not insert"/>
<setting id="org.eclipse.jdt.core.formatter.parentheses_positions_in_for_statment" value="common_lines"/>
<setting id="org.eclipse.jdt.core.formatter.comment.new_lines_at_block_boundaries" value="true"/>
<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_constructor_declaration_parameters" value="insert"/>
<setting id="org.eclipse.jdt.core.formatter.comment.insert_new_line_for_parameter" value="do not insert"/>
@alexilyaev
alexilyaev / . README.md
Last active May 18, 2022 15:16
Setup ESLint with Prettier

ESLint with Prettier Setup

Basically, when using Prettier, all ESLint styling rules should be disabled.
This can be done with eslint-config-prettier.

See .eslintrc.js example below.
In prettier.config.js you can use anything you want (see example below).

Now the tricky part is how to run them...
Usually ESLint should run first, then Prettier.

@diego3g
diego3g / README.md
Created December 3, 2019 19:15
Criação de servidor Node.js

Configuração do servidor

  1. Configurar chave SSH
  2. Criar Droplet
  3. Realizar update e upgrade
  4. Crua usuário adduser deploy e usermod -aG sudo deploy
  5. Cria pasta .ssh pro deploy
  6. cp ~/.ssh/authorized_keys /home/deploy/.ssh/authorized_keys
  7. chown -R deploy:deploy .ssh/
  8. chmod 700 .ssh
@rafabarbosa
rafabarbosa / UsandoHooks.js
Created October 29, 2019 04:00
Aprendendo a consumir API usando hooks no ReactJS
import React, { useState } from 'react';
import axios from 'axios';
export default function Lista () {
const [cep, setCep] = useState({ cep: '' });
const [informacoes, setInformacoes] = useState({
cep: '',
logradouro: '',
complemento: '',
@domeniqque-pereira-deel
domeniqque-pereira-deel / cloudSettings
Last active October 26, 2020 21:36
Configuração básica do eslint em projetos react, by @Rocketseat
{"lastUpload":"2020-03-06T12:31:17.554Z","extensionVersion":"v3.4.3"}