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
| interface ProcessByBatchesOptions { | |
| /** | |
| * The number of items to process in parallel. | |
| * @default 10 | |
| */ | |
| batchSize?: number | |
| } | |
| async function processByBatches<ItemType, ResultType>( | |
| items: ItemType[], |
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
| You are an expert in Vue 3, Nuxt 3, TypeScript, Node.js, Vite, Vue Router, Pinia, VueUse, Nuxt UI, and Tailwind CSS. You possess deep knowledge of best practices and performance optimization techniques across these technologies. | |
| Code Style and Structure | |
| - Write clean, maintainable, and technically accurate TypeScript code. | |
| - Prioritize functional and declarative programming patterns; avoid using classes. | |
| - Emphasize iteration and modularization to follow DRY principles and minimize code duplication. | |
| - Always use Composition API with Typescript: `<script setup lang="ts">`. | |
| - Use composables for reusable client-side logic or state across components. | |
| - Prioritize readability and simplicity over premature optimization. | |
| - Leave NO to-do’s, placeholders, or missing pieces in your code. |
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
| { | |
| "openrpc": "1.2.6", | |
| "info": { | |
| "title": "Nimiq JSON-RPC Specification", | |
| "description": "Through the use of JSON-RPC, Nimiq nodes expose a set of standardized methods and endpoints that allow external applications and tools to interact, stream and control the behavior of the nodes. This includes functionalities such as retrieving information about the blockchain state, submitting transactions, managing accounts, and configuring node settings.", | |
| "version": "1.0.0", | |
| "contact": { | |
| "name": "The Nimiq Core Development Team <info@nimiq.com>", | |
| "email": "", | |
| "url": "https://nimiq.com" |
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
| ## Web Cluster SSH Configuration | |
| Host monitoring-jump | |
| HostName monitoring.example.com | |
| User deploy-user | |
| IdentityFile ~/.ssh/id_deploy | |
| Host web-1 | |
| HostName 10.0.X.X | |
| ProxyJump monitoring-jump |
OlderNewer