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
| // ============ OS and Editor Junk ============ | |
| .DS_Store | |
| ehthumbs.db | |
| Thumbs.db | |
| desktop.ini | |
| Icon? | |
| *.swp | |
| *.swo | |
| *.tmp | |
| ~$* |
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
| /*======================================== | |
| * ESP01 ESP8266 PROGRAM | |
| * UNTUK ON OFF RELAY MELALUI WIFI | |
| *======================================== | |
| */ | |
| #define BLYNK_PRINT Serial | |
| #define BLYNK_TEMPLATE_ID "TMPL60pRm_mpx" | |
| #define BLYNK_TEMPLATE_NAME "Smart Plug" | |
| #define BLYNK_AUTH_TOKEN "Qq1PRDAO5FvAefRGCRtRK9LUVzz0m_ys" |
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
| #include "Adafruit_MQTT.h" | |
| #include "Adafruit_MQTT_Client.h" | |
| #include <ESP8266WiFi.h> | |
| /************************* Definisi Pin *********************************/ | |
| #define Relay1 D0 | |
| /************************* Akses WiFi *********************************/ | |
| #define WIFI_ID "SSID" // Ganti sesuai nama WiFi |
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
| javascript: Promise.all([import('https://unpkg.com/turndown@6.0.0?module'), import('https://unpkg.com/@tehshrike/readability@0.2.0'), ]).then(async ([{ | |
| default: Turndown | |
| }, { | |
| default: Readability | |
| }]) => { | |
| /* Optional vault name */ | |
| const vault = ""; | |
| /* Optional folder name such as "Clippings/" */ |
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
| { | |
| "translationApi": "google", | |
| "deeplPlan": "deeplFree", | |
| "deeplAuthKey": "", | |
| "targetLang": "en", | |
| "secondTargetLang": "id", | |
| "ifShowCandidate": true, | |
| "whenSelectText": "showPanel", | |
| "ifCheckLang": false, | |
| "ifOnlyTranslateWhenModifierKeyPressed": true, |
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
| " ============================================ | |
| " Settings | |
| " ============================================ | |
| set autoupdategist | |
| set cncpcompletion | |
| set ignorecase | |
| set incsearch | |
| set smartcase | |
| set smoothscroll | |
| set typelinkhints |
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
| { | |
| "keymaps": { | |
| "0": { "type": "scroll.home" }, | |
| ":": { "type": "command.show" }, | |
| "o": { "type": "command.show.open", "alter": false }, | |
| "O": { "type": "command.show.open", "alter": true }, | |
| "t": { "type": "command.show.tabopen", "alter": false }, | |
| "T": { "type": "command.show.tabopen", "alter": true }, | |
| "w": { "type": "command.show.winopen", "alter": false }, | |
| "W": { "type": "command.show.winopen", "alter": true }, |
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
| #!/bin/sh | |
| # ad | |
| # Better way to create file or directory. | |
| # Inspired by: | |
| # - https://github.com/tanrax/terminal-AdvancedNewFile | |
| # - https://github.com/NNBnh/mk | |
| ad() { |