- 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
- How would you design Credit on top of Pix?
deliverables: markdown + excalidraw (your RFC proposal)
check this https://developers.celcoin.com.br/docs/plataforma-de-cr%C3%A9dito
Read this to understand https://blog.pragmaticengineer.com/scaling-engineering-teams-via-writing-things-down-rfcs/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 = { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = { | |
projects: [ | |
'<rootDir>/jest.frontend.config.js', | |
'<rootDir>/jest.server.config.js', | |
], | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PID 10891 received SIGSEGV for address: 0x0 | |
0 segfault-handler.node 0x000000010727534c _ZL16segfault_handleriP9__siginfoPv + 288 | |
1 libsystem_platform.dylib 0x00000001bf8714c4 _sigtramp + 56 | |
2 node 0x0000000102f0a190 _ZN12v8_inspector19V8DebuggerAgentImpl15ScriptCollectedEPKNS_16V8DebuggerScriptE + 136 | |
3 node 0x0000000102b2d3ec _ZN2v88internal13GlobalHandles4Node31PostGarbageCollectionProcessingEPNS0_7IsolateE + 128 | |
4 node 0x0000000102b2df5c _ZN2v88internal13GlobalHandles31PostGarbageCollectionProcessingENS0_16GarbageCollectorENS_15GCCallbackFlagsE + 204 | |
5 node 0x0000000102b6d790 _ZN2v88internal4Heap14CollectGarbageENS0_15AllocationSpaceENS0_23GarbageCollectionReasonENS_15GCCallbackFlagsE + 2264 | |
6 node 0x0000000102b75bcc _ZN2v88internal4Heap36FinalizeIncrementalMarkingIfCompleteENS0_23GarbageCollectionReasonE + 216 | |
7 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = { | |
projects: [ | |
'<rootDir>/jest.frontend.config.js', | |
'<rootDir>/jest.server.config.js', | |
], | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const nameIt = (name, cls) => ({ [name]: class extends cls {} }[name]); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pragma solidity ^0.5.0; | |
contract DelegateProxy { | |
address internal implementation; | |
function() external payable { | |
address addr = implementation; | |
assembly { | |
calldatacopy(0, 0, calldatasize()) | |
let result := delegatecall(gas(), addr, 0, calldatasize(), 0, 0) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pragma solidity ^0.5.0; | |
contract Charity { | |
function() external payable { | |
// React to receiving ether | |
} | |
} |