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
| // ==UserScript== | |
| // @name 1кг-цена Впрок | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.1 | |
| // @description Показывает цену за 1кг на сайте Впрок | |
| // @author You | |
| // @match https://www.vprok.ru/* | |
| // @match http://www.vprok.ru/* | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=vprok.ru | |
| // @grant none |
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
| Конфигурационный код для управления кондиционером Centek CT-65Z10. Файл aux_ac_custom_component.h скачать здесь https://github.com/GrKoR/esphome_aux_ac_component | |
| substitutions: | |
| # Именование платы | |
| dev_name: ac_centek_ct65z10 | |
| board_name: "AC Centek CT-65Z10" | |
| mdns_name: "AC Centek CT-65Z10" | |
| esphome: | |
| name: ${dev_name} |
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 a loading bar in your Google Sheet using Google Apps Script | |
| // Author: Al Chen (al@coda.io) | |
| // Last Updated: April 13th, 2021 | |
| // Notes: Assumes you are using the V8 runtime (https://developers.google.com/apps-script/guides/v8-runtime) | |
| // Example Google Sheet: https://docs.google.com/spreadsheets/d/1ngvYKEMunqCVufR10rlK42iENAERp-uyiPN_aiq-MKo/edit?usp=sharing | |
| SOURCE_SHEET_ID = 'YOUR_GOOGLE_SHEETS_ID' | |
| SOURCE_WORKSHEET_NAME = 'YOUR_WORKSHEET_NAME' | |
| function loop() { |
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
| input_select: | |
| radio: | |
| name: Радио | |
| options: ['-'] | |
| icon: mdi:radio | |
| python_script: # https://github.com/AlexxIT/PythonScriptsPro | |
| automation: | |
| trigger: |
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
| //Sample email that is received and whose details are extracted: | |
| /* | |
| *Someone* just submitted your form named Online Course Booking from your | |
| website | |
| https://www.abcd.com/ | |
| Message Details | |
| Full Name: Mohamed Ali | |
| Email Address: abcd123@gmail.com | |
| Phone Number: 009725991122334 |
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 ui = SpreadsheetApp.getUi(); | |
| function onOpen(e){ | |
| ui.createMenu("Gmail Manager").addItem("Get Emails by Label", "getGmailEmails").addToUi(); | |
| } | |
| function getGmailEmails(){ | |
| var input = ui.prompt('Label Name', 'Enter the label name that is assigned to your emails:', Browser.Buttons.OK_CANCEL); | |