This file contains 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
<TaskerData sr="" dvi="1" tv="5.9.3"> | |
<Task sr="task3"> | |
<cdate>1698849095157</cdate> | |
<edate>1698849122515</edate> | |
<id>3</id> | |
<nme>Temp</nme> | |
<pri>100</pri> | |
<Action sr="act0" ve="7"> | |
<code>547</code> | |
<Str sr="arg0" ve="3">%ssid</Str> |
This file contains 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
Task: Temp | |
A1: Variable Set [ | |
Name: %ssid | |
To: MySsid | |
Structure Output (JSON, etc): On ] | |
A2: Variable Set [ | |
Name: %password | |
To: MyPassword |
This file contains 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
{ | |
"en_US": ",", | |
"es_AR": ";", | |
"hy_AM": ";", | |
"en_AU": ",", | |
"az_AZ": ";", | |
"be_BY": ";", | |
"es_BO": ";", | |
"pt_BR": ";", | |
"bg_BG": ";", |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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 express = require('express'); | |
var app = express(); | |
var request = require('request'); | |
app.get('/', function(request, response) { | |
response.send("OK") | |
}); | |
//now you can go to domain.com/(URI ENCODED VERSION OF A URL) to access that page |