https://drive.google.com/drive/folders/1cFUQUeNTBypOjx8EScJ2sn0i2e6GbQ5Y?usp=drive_link
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
| <html> | |
| <head> | |
| <link href="https://unpkg.com/video.js@7.13.1/dist/video-js.min.css" rel="stylesheet" /> | |
| <script src="https://unpkg.com/video.js@7.13.1/dist/video.min.js"></script> | |
| <script src="https://cdn.jsdelivr.net/npm/videojs-contrib-eme@3.8.1/dist/videojs-contrib-eme.min.js"></script> | |
| <script src="/uaparser.min.js"></script> | |
| <script> | |
| /* var userAgent = new UAParser(); | |
| alert(JSON.stringify(userAgent.getBrowser())); */ | |
| </script> |
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
| <html> | |
| <head> | |
| <link href="https://unpkg.com/video.js@7.13.1/dist/video-js.min.css" rel="stylesheet" /> | |
| <script src="https://unpkg.com/video.js@7.13.1/dist/video.min.js"></script> | |
| <script src="https://cdn.jsdelivr.net/npm/videojs-contrib-eme@3.8.1/dist/videojs-contrib-eme.min.js"></script> | |
| <script src="uaparser.min.js"></script> | |
| <style type="text/css"> | |
| .vjs-matrix.video-js { | |
| color: #fcca50; | |
| } |
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
| syntax = "proto3"; | |
| package github.com.codeedu.codepix; | |
| option go_package = "protofiles/pb"; | |
| service ProductService { | |
| rpc CreateProduct (CreateProductRequest) returns (CreateProductResponse) {}; | |
| rpc FindProducts(FindProductsRequest) returns (FindProductsResponse) {}; | |
| } |
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
| // Cliente | |
| const MAX_ATTEMPTS = 3; // Número máximo de tentativas | |
| let currentAttempts = 0; // Contador de tentativas | |
| let currentInterval = 1000; // Intervalo inicial entre chamadas (em milissegundos) | |
| function longPolling() { | |
| fetch('/server-endpoint') | |
| .then(response => response.json()) | |
| .then(data => { | |
| if (data && data.length > 0) { |
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
| @MessagePattern('/orders.*/', { flags: 'i' }) |
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
| package queues | |
| import ( | |
| "log" | |
| "github.com/streadway/amqp" | |
| ) | |
| var conn *amqp.Connection |
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
| <html> | |
| <head> | |
| <link | |
| rel="stylesheet" | |
| href="https://cdn.bitmovin.com/player/web/8.31.0/bitmovinplayer-ui.css" | |
| /> | |
| </head> | |
| <body> | |
| <div id="video"></div> | |
| <script |
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
| <html> | |
| <head> | |
| <link href="https://unpkg.com/video.js@7.13.1/dist/video-js.min.css" rel="stylesheet" /> | |
| <script src="https://unpkg.com/video.js@7.13.1/dist/video.min.js"></script> | |
| <script src="/videojs-contrib-eme.min.js"></script> | |
| <script src="/uaparser.min.js"></script> | |
| <style type="text/css"> | |
| .vjs-matrix.video-js { | |
| color: #fcca50; | |
| } |
NewerOlder