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
class HelpApp { | |
connection = null; | |
peer = null; | |
options = null; | |
constructor(options) { | |
this.options = options; | |
// check dependencies | |
if (globalThis.Peer === undefined) { | |
const tag = document.createElement("script"); | |
tag.setAttribute('src', "https://unpkg.com/peerjs/dist/peerjs.min.js"); |
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
// reference: https://stackoverflow.com/questions/46906017/getting-location-offline | |
/* | |
Android Permissions needed: | |
<uses-permission android:name="android.permission.INTERNET" /> | |
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" /> | |
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" /> | |
*/ | |
public class Location extends AppCompatActivity { |
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
{ | |
"%08": "backspace", | |
"%09": "tab", | |
"%0A": "linefeed", | |
"%0D": "creturn", | |
"%20": "space", | |
"%21": "!", | |
"%22": "\"", | |
"%23": "#", | |
"%24": "$", |
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
### all *js files ( e.g. Firefox user.js, prefs.js ) | |
## Old version | |
#syntax "jsfiles" "(\.|/|)js$" | |
#color green "//.*$" start="\/\*" end="\*\/" | |
#color blue "'(\\.|[^'])*'" | |
#color red ""(\\.|[^\"])*"" | |
#color brightgreen "\<(true)\>" | |
#color brightred "\<(false)\>" "http\:\/\/.*$" |