- 433.99MHz
- ASK/OOK
- Baud approx 4860
Model | Channel | Button | Action | Hex |
---|
#!/bin/bash | |
# Get the remote URL and extract the GitLab project path | |
remote_url=$(git remote get-url origin) | |
# Convert SSH URL to HTTPS URL | |
if [[ $remote_url == [email protected]:* ]]; then | |
# Extract the path after '[email protected]:' | |
project_path=${remote_url#[email protected]:} | |
# Remove .git suffix if present |
// ==UserScript== | |
// @name SlitherIO Zoom 2025 | |
// @description Slither.io working cheat 2025, no zoom glitch, no zoomout glitch, simple code without any obfuscation | |
// @grant none | |
// @match *://slither.com/* | |
// @match *://slither.io/* | |
// ==/UserScript== | |
var targetZoom = null; |
package main | |
import "log" | |
// some random interface | |
type User interface { | |
Name() string | |
} | |
// some implementation of that interface |
Model | Channel | Button | Action | Hex | RawBits | DecodedBits |
---|
You can avoid a bufio.ErrTooLong
error ("bufio.Scanner: token too long"
) by using something like this as your scanner.Split()
function:
const maxTokenLength = bufio.MaxScanTokenSize / 2
func scanLinesOrGiveLong(data []byte, atEOF bool) (advance int, token []byte, err error) {
advance, token, err = bufio.ScanLines(data, atEOF)
if advance > 0 || token != nil || err != nil {
// bufio.ScanLines found something, use it
return
const axios = require('axios'); | |
const cachios = require('cachios'); | |
const LRU = require('lru-cache'); | |
const fs = require('fs'); | |
//// this part is for debugging purposes: | |
// build an axios client that logs outbound requests | |
const axiosClient = axios.create(); |
>>> \Carbon\Carbon::parse('2020-12-31T00:00:00Z')->subMonth()->toIso8601String() | |
=> "2020-12-01T00:00:00+00:00" |
Saving this solution for later, might be able to google it next time it happens
Error:
Module build failed: ReferenceError: Unknown plugin "transform-object-rest-spread" specified in "base" at 0, attempted to resolve relative to "/nova-components/unified-transaction-api/dist"
at /nova-components/NovaStuff/node_modules/babel-core/lib/transformation/file/options/option-manager.js:180:17
at Array.map (<anonymous>)
Replace | |
"([^"]+)": ?\{ | |
With | |
message $1 { | |
Replace | |
}, | |
With | |
} |