The technical content that I want to watch or watched to
This file contains hidden or 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 java.awt.*; | |
import java.awt.event.*; | |
public class IntroducaoAoSwingEAwt { | |
public static void main(String[] args) { | |
Frame frame = new Frame("Login"); | |
Label lUsuario = new Label("Nome de usuário"); | |
TextField tUsuario = new TextField(); |
This file contains hidden or 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
bsky.app | |
youtube.com | |
www.youtube.com | |
instagram.com | |
twitch.tv | |
www.twitch.tv |
The technical contents that I wanna read or read to
This file contains hidden or 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
{ | |
/* -- Security -- */ | |
"security.workspace.trust.untrustedFiles": "newWindow", | |
/* -- Fonts -- */ | |
"editor.fontSize": 18, | |
"editor.tabSize": 2, | |
"editor.lineHeight": 28, | |
"terminal.integrated.fontSize": 16, | |
"editor.fontFamily": "JetBrains Mono", | |
"editor.fontLigatures": true, |
This file contains hidden or 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
/* Autores: | |
* Kauê | |
* Gabriel | |
* Raphael | |
* Felipe | |
*/ | |
import java.util.Scanner; | |
class joguinho { | |
public static void main(String[] args) { |
This file contains hidden or 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
# Remember to indent with tabs | |
BINARY_FOLDER=bin | |
BINARY_NAME={} | |
debug: | |
go build -o debug/${BINARY_NAME} ./src/main.go | |
./debug/${BINARY_NAME} |
This file contains hidden or 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
type WhoIsLogging = 'SERVER' | 'MIDDLEWARE' | 'API' | 'DATABASE'; | |
// ANSI escape code | |
const reset = '\x1b[0m'; | |
// Foreground colors | |
const red = '\x1b[31m'; | |
const green = '\x1b[32m'; | |
const yellow = '\x1b[33m'; |
This file contains hidden or 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
#include <windows.h> | |
#include <thread> | |
namespace screen { | |
const int WIDTH = 1280; | |
const int HEIGHT = 720; | |
} | |
int main() { | |
// Seeding with current time |
NewerOlder