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 new_foo LIKE foo; | |
RENAME TABLE foo TO old_foo, new_foo TO foo; | |
DROP TABLE old_foo; |
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
var email = "YOU_EMAIL_WITHOUT_GMAIL_GOES_HERE"; | |
var emailList = []; | |
for(let i = 1; i < email.length - 1; i++){ | |
for(let x = 1; x <= email.length; x++){ | |
if(i+1 !== x && i != x) { | |
let splitEmail = email.split(""); | |
splitEmail.splice(i, 0, '.'); | |
splitEmail.splice(x, 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
sendKeys(document.getElementById("SELECTOR_GO_HERE"), "My cool message to type", 'input'); |
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
service: sample-lambda-alb | |
provider: | |
name: aws | |
runtime: nodejs14.x | |
stage: ${opt:stage, 'dev'} | |
region: ${opt:region, 'us-west-2'} | |
profile: crazy | |
alb: | |
targetGroupPrefix: tg-${opt:stage, 'dev'}- # this is the name for the target group |
OlderNewer