Find_/_Replace({'option':'Simple string','string':'""'},'"',true,false,true,false)
Find_/_Replace({'option':'Regex','string':'"CASE'},'CASE',true,false,true,false)
Find_/_Replace({'option':'Simple string','string':'}"'},'}',true,false,true,false)
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
| // https://ringcentral.github.io/ringcentral-embeddable/ | |
| function dialNumber(number) { | |
| const buttonSelector = "#viewport > div > div > div.sc-eIcdZJ.czoGgN > div.sc-BQMaI.bHaYic > div.sc-epqpcT.cBEqvY > div > div.sc-gvPdwL.lcuqyY > div.sc-ggqIjW.gfQTjQ > div > button:nth-child({index})"; | |
| const digits = number.toString().split(''); | |
| const delay = 500; // 50ms delay between each press | |
| digits.forEach((digit, index) => { | |
| setTimeout(() => { |
I'm gathering resources to help myself and others gain a deeper understanding of Amazon Connect, a platform I'm eager to explore. These resources will provide a useful reference point for learning.
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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Calendar Link Example</title> | |
| <style> | |
| /* Add some basic styling */ | |
| body { | |
| font-family: Arial, sans-serif; |
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
| ; Author: mark05e, Gemini/Bard (Large Language Model by Google) | |
| ; Description: Performs keyboard shortcuts to comment and uncomment nodes within XML Notepad. | |
| ; - Ctrl + / or Ctrl + K: Simulates menu key press followed by "h" and "o" keys (for commenting) | |
| ; - Ctrl + Shift + / or Ctrl + Shift + K: Simulates menu key press followed by "h" and "e" keys (for uncommenting) | |
| ; References: | |
| ; - https://www.reddit.com/r/AutoHotkey/comments/xrfk3c/mouse_right_click_and_select_an_action_from/ | |
| ; - https://github.com/microsoft/XmlNotepad/issues/396 | |
| ; - https://www.autohotkey.com/boards/viewtopic.php?t=38761 | |
| ; Hotkeys: | |
| ; - Ctrl + / |
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
| # https://stackoverflow.com/questions/43690336/powershell-to-read-single-value-from-simple-ini-file | |
| function Get-IniFile | |
| { | |
| param( | |
| # Required parameter specifying the path to the INI file. | |
| [parameter(Mandatory = $true)] [string] $filePath | |
| ) | |
| $anonymous = "NoSection" | |
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
| // Sheet 1 - Description,Category | |
| // Sheet 2 - CC Transactions. | |
| // Run main() with Sheet 2 active. | |
| function insertTitle(sheet, destinationColumnName, title) { | |
| console.log(destinationColumnName) | |
| var titleCell = sheet.getRange(destinationColumnName + "1"); | |
| titleCell.setValue(title); | |
| } |