Nota: Ainda em construção!
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
/** | |
* Simple Kotlin Program for BIP-39 Mnemonic Generation and Key Verification | |
* | |
* This program performs two important functions: | |
* 1. It generates a 24-word mnemonic phrase from a 256-bit binary private key. | |
* 2. It converts that mnemonic phrase back into the original private key (displayed in hexadecimal). | |
* | |
* Why is this useful? | |
* ------------------------------------------ | |
* In Bitcoin and many other cryptocurrencies, private keys are essential for controlling your funds. |
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
// TOTALMENTE feito com IA (até o momento) | |
@file:OptIn(ExperimentalUnsignedTypes::class) | |
package com.lucasalfare.flplayer.player.main | |
import com.lucasalfare.flbinary.Reader // tá no meu repositório! | |
import java.io.File | |
import javax.sound.sampled.AudioFormat | |
import javax.sound.sampled.AudioSystem | |
import javax.sound.sampled.DataLine |
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
@file:Suppress("unused", "ArrayInDataClass", "PropertyName", "PrivatePropertyName", "MemberVisibilityCanBePrivate") | |
import kotlin.system.measureNanoTime | |
/** | |
* Maximum frequency rate of the clocks that MOS6502 can do. | |
* | |
* In the internet we have that this rate is 1..3MHz, then I set 3MHz 😳 | |
* | |
* This value is used to measure execution time of our Kotlin functions and see if |
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
[package] | |
name = "FLPoint-Rust" | |
version = "0.1.0" | |
edition = "2021" | |
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | |
[dependencies] | |
axum = "0.7.5" | |
axum-extra = { version = "0.9.3", features = ["typed-header"] } |
O resumo mostra o número do código, com seu título e uma breve indicação de uso do mesmo. Confira a lista a seguir:
-
100 Continue: Solicitação está OK, pode continuar enviando.
Use ao dividir uma solicitação grande em partes. -
101 Switching Protocols: Servidor aceitou mudar o protocolo.
Use ao alterar de HTTP para WebSockets, por exemplo.
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
@file:Suppress("unused", "MemberVisibilityCanBePrivate") | |
package study.math | |
import kotlin.math.cos | |
import kotlin.math.sin | |
/** | |
* Represents a 4x4 matrix used for various transformations in 3D space. | |
* |
Exames aqui são feitos no aparelho de hemograma.
- Exames:
HEM
(hemograma),PLA
(plaquetas) eCOA
(coagulograma).
Esse exame é coletado em tubo contendo anticoagulante (EDTA
) de cor roxa/lilás.
Esse exame fazemos usando o aparelho Mindray BC-5380
. Para usar o aparelho é necessário acessar o software (programa de computador) instalado no computador que está do lado. Para acessar o software é necessário colocar as seguintes credenciais:
- Usuário:
service
;
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
1. Importância da conversa pessoalmente: Acha que é melhor conversar sobre o assunto cara a cara, mas reforça que o apoio será incondicional. | |
2. Relação forte e apoio mútuo: Relembra que vocês fazem parte da vida um do outro, independentemente de estarem em bons ou maus momentos. Apoia qualquer decisão dela e valoriza muito a convivência que têm. | |
3. Preocupação com o futuro: Sente-se preso na situação atual, sem ver crescimento ou melhoria. Quer prover algo melhor para ela e para o Noah. | |
4. Sentimentos de ansiedade e insegurança: Fala sobre a ansiedade e agonia em relação ao futuro, especialmente em relação ao sustento da família. | |
5. Confiança em Deus: Reconhece que não tem garantias de sucesso e entrega os planos nas mãos de Deus, confiando que tudo acontecerá conforme a vontade Dele. |
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
{ | |
"workbench.startupEditor": "newUntitledFile", | |
"editor.fontSize": 15, | |
"editor.lineHeight": 1.8, | |
"javascript.suggest.autoImports": true, | |
"javascript.updateImportsOnFileMove.enabled": "always", | |
"editor.rulers": [ | |
80, | |
120 | |
], |
NewerOlder