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
| CREATE TABLE [dbo].[AspNetUsers]( | |
| [Id] [nvarchar](128) NOT NULL, | |
| [Email] [nvarchar](256) NULL, | |
| [EmailConfirmed] [bit] NOT NULL, | |
| [PasswordHash] [nvarchar](max) NULL, | |
| [SecurityStamp] [nvarchar](max) NULL, | |
| [PhoneNumber] [nvarchar](max) NULL, | |
| [PhoneNumberConfirmed] [bit] NOT NULL, | |
| [TwoFactorEnabled] [bit] NOT NULL, | |
| [LockoutEndDateUtc] [datetime] NULL, |
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 waitFor = (ms) => new Promise(r => setTimeout(r, ms)) | |
| const asyncForEach = (array, callback) => { | |
| for (let index = 0; index < array.length; index++) { | |
| await callback(array[index], index, array) | |
| } | |
| } | |
| const start = async () => { | |
| await asyncForEach([1, 2, 3], async (num) => { | |
| await waitFor(50) |
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
| // Marca o video esta sendo assistido | |
| // E carrega a legenda dinamicamente com atributo data-* | |
| // | |
| $(function() { | |
| var thumb = $( '.video-item a' ), | |
| mask = $( '.video-item a .mask' ).hide(); | |
| // Reload Thumb | |
| thumb.on('click', function(e) { | |
| e.preventDefault(); |
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
| Realidade Aumentada é trazer um ambiente virtual para um ambiente real. | |
| 1 Passo detectar o getUSerMedia | |
| 2 - Reproduzir o conteudo da webcam numa tag <video> | |
| 3 - Rastrear um padrao de pixels <canvas> | |
| Hello World Tracking JS | |
| - Importar o core da lib tracking.js | |
| - Importar o modulo de rastreamento de cor. |