- Serviço de compras e entregas pela Internet
- Cadastro de prestadores de serviço
- Cadastro de usuários do serviço
- Chat entre usuário e o prestador de serviço
- Cadastro dos serviços
- Divulgação do serviço pelo usuário
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 <stdio.h> | |
| #define TAM_PALAVRA 20 | |
| #define QTD_PALAVRAS 10 | |
| #define DELIMITADOR '\n' | |
| // Define a estrutura da Pilha | |
| typedef struct { | |
| int pos; | |
| int pilha[TAM_PALAVRA]; |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file has been truncated, but you can view the full file.
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 playerPieces = [ | |
| [ 2, 20 ], [ 0.1, 5 ], | |
| [ 0.25, 20 ], [ 0.5, 200 ], | |
| [ 0.05, 5 ], [ 20, 0.25 ], | |
| [ 0, 2 ], [ 50, 200 ], | |
| [ 200, 5 ], [ 0.25, 0.5 ], | |
| [ 0, 20 ], [ 200, 0 ], | |
| [ 0.5, 0.05 ] | |
| ] | |
| const piecesObjective = [ [ 2, 10 ], [ 0.25, 10 ] ] |
A simple Node.js script to move messages between AMQP queues using the RabbitMQ Management API.
This script allows you to move messages from one queue to another in a RabbitMQ instance. It fetches messages from the origin queue and publishes them to the destination queue using the RabbitMQ HTTP API.