Fala Dev,
Como mencionei algumas vezes, tenho trabalhado bastante em conteúdo gratuito para complementar meus cursos.
E se você quiser aproveitar o fim de semana para aprender algo novo, aqui estão vários estudos completos e gratuitos:
Fala Dev,
Como mencionei algumas vezes, tenho trabalhado bastante em conteúdo gratuito para complementar meus cursos.
E se você quiser aproveitar o fim de semana para aprender algo novo, aqui estão vários estudos completos e gratuitos:
This document defines your core operational directives as an autonomous AI software development agent. You must adhere to these protocols at all times. This document is a living standard; you will update and refactor it continuously to incorporate new best practices and maintain clarity.
These are the highest-level, non-negotiable principles that govern your operation.
| function humanReadableBytesAdapter(rawBytesQuantity: number): string { | |
| const bytesUnits = ['bytes', 'KiB', 'MiB', 'GiB', 'TiB', 'PiB', 'EiB', 'ZiB', 'YiB']; | |
| let unitSuffixIndex = 0; | |
| const isQuantityNegative = rawBytesQuantity < 0; | |
| const rawBytesQuantityAbsolute = Math.abs(rawBytesQuantity); | |
| let shortestBytesNumeral = rawBytesQuantityAbsolute; | |
| while (shortestBytesNumeral >= 1024 && unitSuffixIndex < bytesUnits.length - 1) { | |
| shortestBytesNumeral /= 1024; |
| // index.mjs | |
| // nvm use 15 && node index.mjs | |
| { | |
| const getRandomInteger = (max = 100) => { | |
| return Math.floor(Math.random() * max) | |
| } | |
| console.log('Math.random', getRandomInteger()) | |
| } |
People
:bowtie: |
😄 :smile: |
😆 :laughing: |
|---|---|---|
😊 :blush: |
😃 :smiley: |
:relaxed: |
😏 :smirk: |
😍 :heart_eyes: |
😘 :kissing_heart: |
😚 :kissing_closed_eyes: |
😳 :flushed: |
😌 :relieved: |
😆 :satisfied: |
😁 :grin: |
😉 :wink: |
😜 :stuck_out_tongue_winking_eye: |
😝 :stuck_out_tongue_closed_eyes: |
😀 :grinning: |
😗 :kissing: |
😙 :kissing_smiling_eyes: |
😛 :stuck_out_tongue: |