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
| <?php | |
| // Enable CORS | |
| header("Access-Control-Allow-Origin: *"); | |
| header("Access-Control-Allow-Methods: POST, GET, OPTIONS"); | |
| header("Access-Control-Allow-Credentials: true"); | |
| header("Access-Control-Allow-Headers: Origin, Content-Type, Authorization, X-Requested-With"); | |
| // Parse input data | |
| $requestBody = file_get_contents("php://input"); | |
| $isJsonRequest = 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
| var d = L.tileLayer.wms(" https://wms.geo.admin.ch/", { | |
| layers: "ch.swisstopo.amtliches-gebaeudeadressverzeichnis,ch.swisstopo.amtliches-strassenverzeichnis,ch.kantone.cadastralwebmap-farbe", | |
| SERVICE: "WMS", | |
| REQUEST: "GetMap", | |
| format: "image/png", | |
| transparent: true, | |
| attribution: "map.geo.admin.ch", | |
| }); |
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
| {"version":1,"resource":"file:///home/strukturart/Desktop/Pages/feedolin/application/assets/css/qr-reader.css","entries":[{"id":"60Ko.css","timestamp":1678710238761}]} |
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/bash | |
| #Author: perry | |
| #sendsms script by speeduploop | |
| HORIZONTALLINE="=================================" | |
| clear |
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
| ////////////////////////// | |
| ////KEYPAD TRIGGER//////////// | |
| ///////////////////////// | |
| function handleKeyDown(evt) { | |
| switch (evt.key) { |
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
| ////////////////////////// | |
| ////KEYPAD TRIGGER//////////// | |
| ///////////////////////// | |
| function handleKeyDown(evt) { | |
| switch (evt.key) { |
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
| { | |
| "wikipedia_languages": [ | |
| { | |
| "language": "English", | |
| "local_name": "English", | |
| "code": "en" | |
| }, | |
| { | |
| "language": "Cebuano", | |
| "local_name": "Cebuano", |
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
| function notify(param_title,param_text,param_silent) { | |
| var options = { | |
| body: param_text, | |
| silent: param_silent | |
| } | |
| // Let's check if the browser supports notifications | |
| if (!("Notification" in window)) { |
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
| function notify(param_title,param_text) { | |
| var options = { | |
| body: param_text | |
| } | |
| // Let's check if the browser supports notifications | |
| if (!("Notification" in window)) { | |
| alert("This browser does not support desktop notification"); | |
| } |