Anthony Ma
Anthony Ma
I have a test for a class that revolves around MQTT: `MQTTHMIPlugin.ts` ```ts export class MQTTHMIPlugin { private clients: MqttClient[]; // Specifically not using a constructor for DI reasons init()...
I followed the docs [here](https://github.com/docker/build-push-action/blob/master/docs/advanced/cache.md) to use caching in my actions, but my job takes an extremely long time (300s on average) to prepare and export build cache to GitHub....
I'm using [Day.js](https://day.js.org) extensively in my application. The way to check for dayjs type is to check instanceof dayjs (the function): ```js import dayjs from "dayjs"; const date = dayjs();...
### Checklist - [X] I have used the search function for [open](https://github.com/Docile-Alligator/Infinity-For-Reddit/issues) **and** [closed](https://github.com/Docile-Alligator/Infinity-For-Reddit/issues?q=is%3Aissue+is%3Aclosed) issues to see if someone else has already submitted the same bug report. - [X] I...
I have these following types and function in which I tested this with: ```ts export const IRFIDTag = z.object({ id: z.number(), epc: z.string(), location: z.string(), createdAt: z.instanceof Dayjs>(dayjs as any),...
I have zeronsd installed on a parent server and it can access all nodes within its network via DNS. However, the children nodes cannot access each other with DNS. Am...
### Verify canary release - [X] I verified that the issue exists in the latest Next.js canary release ### Provide environment information Operating System: Platform: linux Arch: x64 Version: #1...
I'm using mariadb v10.4.25 with `mysql2` drivers. I have a class with an `afterInsert` hook as so: ```sql CREATE TABLE `production_job_status` ( `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, `job` varchar(30)...
I have 2 tables, one that holds device data, and the other stores status history of the devices: ``` CREATE TABLE `iot_device` ( `id` varchar(255) NOT NULL PRIMARY KEY, `type`...
I have a model like this, with the corresponding interface: ```ts export default class CIProject extends BaseEntity implements ICIProject { static tableName = TableNames.CI_PROJECT; id: number; projectNumber?: number; projectName: string;...