- JetBrains Mono
- Fira Code
- Monaspace
- Ubuntu Sans & Ubuntu Mono (with nerd fonts)
- Losevka
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
| const arr = ['A', 'B', 'C', 'D']; | |
| const k = 3; | |
| let current = 2; | |
| console.log(arr[current]); // 'C' | |
| for (let i = 0; i < k; i++) { | |
| current = (current + 1) % arr.length; | |
| } | |
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
| // $ bun init | |
| // $ bun run is-palindrome.ts | |
| function isPalindrome(word: string) { | |
| return word === word.split('').reverse().join(''); | |
| } | |
| console.log('[v1] Array<string>.reverse'); | |
| console.log('renner', isPalindrome('renner')); | |
| console.log('cachorro', isPalindrome('cachorro')); |
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(); |
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
| 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) { |
NewerOlder