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
@sibelius
sibelius / EmbedBrowserOnly.tsx
Created November 30, 2022 00:56
Embed Browser Only for docusuarus
import React from 'react';
import BrowserOnly from '@docusaurus/BrowserOnly';
import { useColorMode } from '@docusaurus/theme-common';
const Embed = (props) => {
const { isDarkTheme } = useColorMode();
return (
<BrowserOnly>
{() => {
  1. Avoid large meetings Large meetings waste valuable time and energy.
  • They discourage debate
  • People are more guarded than open
  • There’s not enough time for everyone to contribute Don’t schedule large meetings unless you’re certain they provide value to everyone.
  1. Leave a meeting if you’re not contributing If a meeting doesn’t require your:
  • Input
@sibelius
sibelius / data_modeling.md
Created October 31, 2022 17:09
Data modeling

What is Data Modeling?

Data modeling is to decide where and how are you going to store your data.

You need to think in the shape of data.

In how many tables/collections should you separate your data?

What are the fields of each table/collection?

@sibelius
sibelius / zettelkasten-notion-sample.md
Last active October 23, 2022 21:13
one sample zettelkasten in my notion

Stuck on a Good Salary

Apprenticeship Patterns

Stuck on a Good Salary

You can easily get stuck on a "good" salary.

you feel that you are stuck

@sibelius
sibelius / Dockerfile
Created September 21, 2022 13:37
Dockerfie using yarn install
FROM node:lts-alpine
RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app
COPY yarn.lock /usr/src/app/
COPY package.json /usr/src/app/
RUN yarn install --production --frozen-lockfile
@sibelius
sibelius / Dockerfile
Created September 21, 2022 13:36
simple dockerfile node
FROM node:lts-slim
RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app
ENV PORT=5001
EXPOSE ${PORT}
COPY ./.env.example /usr/src/app/
@sibelius
sibelius / woovi_job.md
Last active February 27, 2024 00:13
Woovi Job Description
@sibelius
sibelius / edital.md
Created July 3, 2022 21:11
edital TI
  • Ciência de Dados Aprendizado de máquina > Técnicas de classificação
  • Ciência de Dados Aprendizado de máquina > Técnicas de regressão
  • Ciência de Dados Aprendizado de máquina > Técnicas de agrupamento
  • Ciência de Dados Aprendizado de máquina > Técnicas de redução de dimensionalidade
  • Ciência de Dados Aprendizado de máquina > Tecnicas de associação
  • Ciência de Dados Aprendizado de máquina > Sistemas de recomendação
  • Ciência de Dados Aprendizado de máquina > processamento de linguagem natural PNL
  • Ciência de Dados Aprendizado de máquina > Visão computacional
  • Ciência de Dados Aprendizado de máquina > Deep learning
  • Ciência de Dados Big Data > Fundamentos
@sibelius
sibelius / woovi_challenge.md
Last active May 2, 2024 03:03
Woovi Challenge
@sibelius
sibelius / useMutationPromise.tsx
Created June 25, 2022 14:35
Relay useMutationPromise.tsx
import { useState, useRef, useEffect } from 'react';
import type {
GraphQLTaggedNode } from 'relay-runtime';
import {
commitMutation as relayCommitMutation,
} from 'relay-runtime';
import { useRelayEnvironment } from 'react-relay';
type UseMutationPromiseArgs = {