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
| startDemo() { | |
| let JUMPER_SERVICE = "cdeacb80-5235-4c07-8846-93a37ee6b86d"; | |
| let JUMPER_CHARACTERISTIC = "cdeacb81-5235-4c07-8846-93a37ee6b86d"; | |
| navigator.bluetooth.requestDevice({filters: [{services: [JUMPER_SERVICE]}]}) | |
| .then(device => device.gatt.connect()) | |
| .then(server => { | |
| console.log('Connected to device'); | |
| return server.getPrimaryService(JUMPER_SERVICE); | |
| }) |
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
| gith#include <Button.h> | |
| #include <ESP8266WiFi.h> | |
| #include <ESP8266WebServer.h> | |
| int motorPin = 14; | |
| int buttonPin = 4; | |
| static unsigned char motorState = LOW; |
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
| package com.gm.onstar.sdk.client; | |
| import com.gm.onstar.sdk.request.AlertRequest; | |
| import com.gm.onstar.sdk.request.UpdateVehicleDetailRequest; | |
| import defpackage.cxr; | |
| import defpackage.cyl; | |
| import defpackage.cyn; | |
| import defpackage.dap; | |
| import defpackage.daq; | |
| import defpackage.das; |
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
| # All Fonts | |
| yay -S all-repository-fonts |
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 | |
| # Tailscale Setup | |
| curl -fsSL https://pkgs.tailscale.com/stable/ubuntu/hirsute.noarmor.gpg | sudo tee /usr/share/keyrings/tailscale-archive-keyring.gpg >/dev/null | |
| curl -fsSL https://pkgs.tailscale.com/stable/ubuntu/hirsute.tailscale-keyring.list | sudo tee /etc/apt/sources.list.d/tailscale.list | |
| apt-get update | |
| apt-get install tailscale | |
| tailscale up | |
| # Docker Install |
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
| const fs = require('fs'); | |
| const { exec } = require('child_process'); | |
| const apktoolPath = 'apktool'; // Update this with the path to apktool if it's not in your PATH | |
| const rgPath = 'rg'; // Update this with the path to ripgrep if it's not in your PATH | |
| // Regular expression you want to search for | |
| const keyPattern = 'sk\\-[A-Za-z0-9]{32}'; | |
| // Execute a command and return a promise |
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
| SELECT | |
| "Order".id, | |
| C.name, | |
| A.line1, | |
| A.line2, | |
| A.city, | |
| A.zip, | |
| S.name, | |
| H.name as "hatchery_name", | |
| HA.line1 as "hatchery_line1", |
OlderNewer