Skip to content

Instantly share code, notes, and snippets.

View sibelius's full-sized avatar
🦈
give me a feedback https://entria.feedback.house/sibelius

Sibelius Seraphini sibelius

🦈
give me a feedback https://entria.feedback.house/sibelius
View GitHub Profile
@thenicolau
thenicolau / extensions.js
Last active August 19, 2023 21:40
desafio extensao numeros
const finalDezena = "enta";
const finalCentena = "entos";
const centena = (x) => `${x + finalCentena}`;
const dezena = (x) => `${x + finalDezena}`;
const algaritimos = {
0: "zero",
1: "um",
2: "dois",
3: "tres",
4: "quatro",
'use strict';
const {ROOT_DIR} = require('../../utils/config/index.js');
var fs = require('fs');
const OSS_DIR = `${ROOT_DIR}/xplat/js/RKJSModules/Libraries/Relay/oss`;
const COMPILER_TARGETS_FILE = `${ROOT_DIR}/fbcode/relay/oss/crates/relay-compiler/TARGETS`;
const COMPILER_CARGO_FILES = [
`${ROOT_DIR}/fbcode/relay/oss/crates/relay-compiler/Cargo.toml`,
`${ROOT_DIR}/fbcode/relay/oss/Cargo.oss.lock`,
];
@biantris
biantris / personal-investment.md
Last active December 6, 2022 13:28
personal investment by sseraphini discord server

(personal investiment thread)

Ítalo S. : Melhores investimentos que você fez em você?

sibelius :

  • books
  • community
  • crossfit
  • learn in public
  • sharing knowledge in public
@ddanielsantos
ddanielsantos / list.md
Last active September 14, 2022 17:21
graphql/relay-references
@KingOfGist
KingOfGist / login.js
Last active June 24, 2022 21:38
Login com GitHub no seu app em 1 minuto
/*
If you're using ReactJS, React Native, Vanilla Js or any other web client/framework
call the function login
In the comment section below the prints to setup your app on firebase and github app dashbaord
*/
import { getAuth, signInWithPopup, GithubAuthProvider } from "firebase/auth"
const login = ()=>{
@JLarky
JLarky / .prettierrc.js
Last active February 13, 2024 12:18
Use prettier formatting with Astro (pnpm)
/**
* @type {import('prettier').Options}
*/
module.exports = {
plugins: [require.resolve('prettier-plugin-astro')],
overrides: [
{
files: '**/*.astro',
options: { parser: 'astro' }
@marcelgsantos
marcelgsantos / documentacao-arquitetura-de-sistemas.md
Last active March 12, 2024 19:03
Documentação de Arquitetura de Sistemas - Compilado de Perguntas e Respostas Feitas na Comunidade

Questões sobre Documentação da Arquitetura de Sistemas

1. Perguntas

Fiz algumas perguntas nas redes sociais e ferramentas de comunicação como Twitter, LinkedIn, Slack, Discord e Telegram sobre como as pessoas costumam documentar a arquitetura de sistemas.

  1. Vocês costumam desenhar diagramas para documentar a arquitetura dos sistemas que vocês constroem?

  2. O que vocês costumam representar: código, infraestrutura ou ambos?

@biantris
biantris / javascript-base.md
Last active November 8, 2022 15:58
javascript-base

Um pouco dos conceitos que é esperado você dominar de js antes de ir para o react

  • Manipulação do DOM (manipulação de eventos, click, etc)
  • Estrutura de dados (arrays, objetos, vetores, estrutura de dados em json)
  • Map, Filter e Reduce
  • for in e o for of
  • Javascript ES6
  • Assincronismo (promisse, async/await, API fecth, requisições)
@DanB91
DanB91 / README.txt
Last active November 28, 2022 04:57
Playdate Zig starting point
THIS GIST IS OUT OF DATE! Please use my new project template here to get started with Zig on Playdate:
https://github.com/DanB91/Zig-Playdate-Template
The rest of this is preservied for historical reasons:
This is a small snippet of some code to get you started for developing for the Playdate on Zig. This code should be used as a starting point and may not compile without some massaging. This code has only been tested out on macOS and you'll need to modify the addSharedLibrary() portion of build.zig to output a .dll or .so instead of a .dylib, depending on you platform.
This code will help you produce both an executable for the Playdate simulator and also an executable that actually run on the Playdate hardware.
@wesleynepo
wesleynepo / node.yaml
Last active May 20, 2022 14:57
node.yaml
name: Tests
on:
push:
branches:
- master
pull_request:
branches:
- master