Skip to content

Instantly share code, notes, and snippets.

View AlbinoDrought's full-sized avatar
🇨🇦
Use AGPL

Sean AlbinoDrought

🇨🇦
Use AGPL
View GitHub Profile
@AlbinoDrought
AlbinoDrought / wtf.go
Created February 17, 2022 06:49
Why is nil != nil in Go sometimes
package main
import "log"
// some random interface
type User interface {
Name() string
}
// some implementation of that interface
@AlbinoDrought
AlbinoDrought / PAGTR-031-6.md
Last active November 29, 2023 05:13
PAGTR-031-6 ASK OOK Data

PAGTR-031-6

  • 433.99MHz
  • ASK/OOK
  • Baud approx 4860

Messages

Model Channel Button Action Hex
@AlbinoDrought
AlbinoDrought / PAGTR-011.md
Last active January 16, 2022 08:13
PAGTR-011 ASK OOK Data

PAGTR-011

Messages

Model Channel Button Action Hex RawBits DecodedBits
@AlbinoDrought
AlbinoDrought / README.md
Created August 13, 2021 00:09
Working around `bufio.ErrTooLong`: "bufio.Scanner: token too long" with and without Logrus

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
@AlbinoDrought
AlbinoDrought / index.js
Created February 17, 2021 17:20
Persistent cachios + lru-cache usage for https://github.com/AlbinoDrought/cachios/issues/59
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"
@AlbinoDrought
AlbinoDrought / issue.md
Created November 20, 2020 23:32
Laravel Nova Custom Tool / Card / Dashboard unknown plugin error babel

Laravel Nova Custom Tool / Card / Dashboard Unknown Plugin Error

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>)
@AlbinoDrought
AlbinoDrought / expressions
Created November 4, 2020 05:31
Dirty conversion of protobuf_config.py from https://github.com/mildsunrise/protobuf-inspector to .proto
Replace
"([^"]+)": ?\{
With
message $1 {
Replace
},
With
}
@AlbinoDrought
AlbinoDrought / gitBash_windows.md
Created July 6, 2020 17:49 — forked from evanwill/gitBash_windows.md
how to add more utilities to git bash for windows, wget, make

How to add more to Git Bash on Windows

Git for Windows comes bundled with the "Git Bash" terminal which is incredibly handy for unix-like commands on a windows machine. It is missing a few standard linux utilities, but it is easy to add ones that have a windows binary available.

The basic idea is that C:\Program Files\Git\mingw64\ is your / directory according to Git Bash (note: depending on how you installed it, the directory might be different. from the start menu, right click on the Git Bash icon and open file location. It might be something like C:\Users\name\AppData\Local\Programs\Git, the mingw64 in this directory is your root. Find it by using pwd -W). If you go to that directory, you will find the typical linux root folder structure (bin, etc, lib and so on).

If you are missing a utility, such as wget, track down a binary for windows and copy the files to the corresponding directories. Sometimes the windows binary have funny prefixes, so

@AlbinoDrought
AlbinoDrought / codes-canada.csv
Created April 9, 2020 22:00
Country Region Codes
Name Code
Alberta AB
British Columbia BC
Manitoba MB
New Brunswick NB
Newfoundland and Labrador NL
Northwest Territories NT
Nova Scotia NS
Nunavut NU
Ontario ON