A basic use of web speech synthesis.
Support in Chrome Canary/Dev Channel and Safari
| AWSTemplateFormatVersion: '2010-09-09' | |
| Transform: 'AWS::Serverless-2016-10-31' | |
| Description: An app that includes a DynamoDB table, Lambda function that writes to DynamoDB, and CloudWatch Event trigger | |
| Resources: | |
| LambdaWriteToDynamoDB: | |
| # A function that writes to a DynamoDB table on a schedule | |
| Type: 'AWS::Serverless::Function' | |
| Properties: | |
| FunctionName: LambdaWriteToDynamoDB |
| // HttpClient and how to use Headers, Content-Type and PostAsync | |
| // http://d-fens.ch/2014/04/12/httpclient-and-how-to-use-headers-content-type-and-postasync/ | |
| // Copyright 2014-2015 Ronald Rink, d-fens GmbH | |
| // Licensed under the Apache License, Version 2.0 (the "License"); | |
| // you may not use this file except in compliance with the License. | |
| // You may obtain a copy of the License at | |
| // http://www.apache.org/licenses/LICENSE-2.0 |
| // Generate unique IDs for use as pseudo-private/protected names. | |
| // Similar in concept to | |
| // <http://wiki.ecmascript.org/doku.php?id=strawman:names>. | |
| // | |
| // The goals of this function are twofold: | |
| // | |
| // * Provide a way to generate a string guaranteed to be unique when compared | |
| // to other strings generated by this function. | |
| // * Make the string complex enough that it is highly unlikely to be | |
| // accidentally duplicated by hand (this is key if you're using `ID` |
| //Look for other responsivevoice instances | |
| /*if (window.parent != null) { | |
| var iframes = window.parent.document.getElementsByTagName('iframe'); | |
| for (var i = 0; i < iframes.length; i++) { | |
| //iframes[i].style.width = "300px" | |
| } | |
| }*/ | |
| if (typeof responsiveVoice != 'undefined') { | |
| console.log('ResponsiveVoice already loaded'); |
| USE database_name; | |
| GO | |
| -- Truncate the log by changing the database recovery model to SIMPLE. | |
| ALTER DATABASE database_name | |
| SET RECOVERY SIMPLE; | |
| GO | |
| -- Shrink the truncated log file to 1 MB. | |
| DBCC SHRINKFILE (database_name_Log, 1); | |
| GO | |
| -- Reset the database recovery model. |
| import random | |
| import tkinter as tk | |
| from tkinter import ttk | |
| import tkinter.messagebox | |
| root = tk.Tk() | |
| """ *** Memory *** """ | |
| board2 = [["0", "1", "2"], ["3", "4", "5"], ["6", "7", "8"]] | |
| a = ["X"] |
| { | |
| "git.autofetch": true, | |
| "git.enableSmartCommit": true, | |
| "vscode_custom_css.imports": ["file:///F:/vscode-custom.css"], | |
| "vscode_custom_css.policy": true, | |
| "workbench.iconTheme": "vscode-icons", | |
| "vsicons.dontShowNewVersionMessage": true, | |
| "git.confirmSync": false, | |
| "javascript.updateImportsOnFileMove.enabled": "always", | |
| "extensions.ignoreRecommendations": true, |
| <template lang="pug"> | |
| v-text-field( | |
| ref='field', | |
| :prefix='prefix', | |
| v-model='model', | |
| @focus='onFocus', | |
| @keyup='onKeyUp', | |
| :error-messages='errorMessages', | |
| v-bind='$attrs', | |
| @change='onChange' |
| Visual Studio 2019 Enterprise | |
| BF8Y8-GN2QH-T84XB-QVY3B-RC4DF | |
| Visual Studio 2019 Professional | |
| NYWVH-HT4XC-R2WYW-9Y3CM-X4V3Y |