SkipTheDishes tracker(No longer used)- 🎊 Some ghetto NextCloud clone that I feel safe selfhosting (probably read only) (video version here, working and in use) (file version WIP)
- yet another IRC client for the 21st century
selfhosted screensharing thing (like rabb.it, but not)alternative exists: https://github.com/m1k1o/neko- a modern browser that isn't rounded
some way to import normal cams to unifyUnifi Video is losing support, moving to something like Shinobi instead(ctrl-f NVR)- foss modern feedback tracker thing (can io)
- visual dice rolling bot to make hard life choices for me
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 | |
| # 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 == git@gitlab.com:* ]]; then | |
| # Extract the path after 'git@gitlab.com:' | |
| project_path=${remote_url#git@gitlab.com:} | |
| # Remove .git suffix if present |
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
| // ==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; |
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 main | |
| import "log" | |
| // some random interface | |
| type User interface { | |
| Name() string | |
| } | |
| // some implementation of that interface |
- https://fcc.io/PAGTR-011
- 314.91MHz
- Baud approx 1800
- ASK/OOK
| 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
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 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(); |
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
| >>> \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>)
NewerOlder