Skip to content

Instantly share code, notes, and snippets.

View SamukaDEV's full-sized avatar
🎧
Focusing

Samuel Torres SamukaDEV

🎧
Focusing
View GitHub Profile
@SamukaDEV
SamukaDEV / HelperApp.js
Created January 22, 2025 05:33
PeerJS Wrapper Class "Helper"
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");
@SamukaDEV
SamukaDEV / gps.kt
Last active October 20, 2024 01:36
Kotlin GPS integration (not tested)
// 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 {
@SamukaDEV
SamukaDEV / url-encoded.json
Created October 29, 2021 18:25
URL Encoded Characters
{
"%08": "backspace",
"%09": "tab",
"%0A": "linefeed",
"%0D": "creturn",
"%20": "space",
"%21": "!",
"%22": "\"",
"%23": "#",
"%24": "$",
### 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\:\/\/.*$"