上一页 1 ··· 73 74 75 76 77 78 79 80 81 ··· 496 下一页
摘要: Principle 1 Write clear and specific instructions clear !== short Clear and specific instructions for a model will guide it towards the desired output 阅读全文
posted @ 2023-04-28 14:07 Zhentiw 阅读(110) 评论(0) 推荐(0)
摘要: logger.ts // .env LOGGER_LEVEL=debug // logger.ts import * as winston from "winston"; export const logger = winston.createLogger({ level: process.env. 阅读全文
posted @ 2023-04-26 15:47 Zhentiw 阅读(32) 评论(0) 推荐(0)
摘要: import * as dotenv from "dotenv"; const result = dotenv.config(); if (result.error) { console.log('Error loading environment variables, aborting.') pr 阅读全文
posted @ 2023-04-26 15:35 Zhentiw 阅读(30) 评论(0) 推荐(0)
摘要: Check the adapter pattern https://www.tutorialspoint.com/design_pattern/adapter_pattern.htm Client: Call the common entry public class AdapterPatternD 阅读全文
posted @ 2023-04-26 02:38 Zhentiw 阅读(28) 评论(0) 推荐(0)
摘要: Both JSON.parse(JSON,strigify())& structuredClone doesn't work with Dateand function. var foo = {name: 'foo', bar: () => 'bar'} var foo2 = structuredC 阅读全文
posted @ 2023-04-18 13:36 Zhentiw 阅读(75) 评论(0) 推荐(0)
摘要: Original code: import { CSSProperties } from "react"; const useStyled = <TTheme = {}>(func: (theme: TTheme) => CSSProperties) => { // Imagine that thi 阅读全文
posted @ 2023-04-17 14:45 Zhentiw 阅读(32) 评论(0) 推荐(0)
摘要: Service: fromObservable & fromSignalcan transform observable to and from signals. import { HttpClient, HttpErrorResponse } from '@angular/common/http' 阅读全文
posted @ 2023-04-13 13:56 Zhentiw 阅读(114) 评论(0) 推荐(0)
摘要: This the following code example, test have passed for both run time and compile time: import { expect, it } from 'vitest'; import { Equal, Expect } fr 阅读全文
posted @ 2023-04-11 21:09 Zhentiw 阅读(31) 评论(0) 推荐(0)
摘要: export const inferItemLiteral = <T>(t: T) => { return { output: t, }; }; const result1 = inferItemLiteral("a"); // ? {output: string} /* vs */ export 阅读全文
posted @ 2023-04-10 21:31 Zhentiw 阅读(26) 评论(0) 推荐(0)
摘要: There are two options doing the same things. const makeSafe = <TParams extends any[], TReturn>(func: (...args: TParams) => TReturn) => ( ...args: TPar 阅读全文
posted @ 2023-04-10 21:16 Zhentiw 阅读(35) 评论(0) 推荐(0)
上一页 1 ··· 73 74 75 76 77 78 79 80 81 ··· 496 下一页