πΊπ«π· Shigu :3 πΊ
Aarktype
β’Created by TaQuanMinhLong on 4/2/2025 in #questions
Loose string schema
I tried a bunch of weird workarounds and the only one I got working was by making union with "string" (
type.or("string")
) and wrap that is a function that casts the return type.
so
though it is kinda sketchy20 replies
Aarktype
β’Created by TaQuanMinhLong on 4/2/2025 in #questions
Loose string schema
When you do
(string & {})
in a union of string literals it allows autocomplete while not rejecting other strings.20 replies
Aarktype
β’Created by L0xus on 3/16/2025 in #questions
Narrow type based on another property's value
what you are describing sounds more suited for a discriminated union and wouldn't need all this code
10 replies
NNuxt
β’Created by πΊπ«π· Shigu :3 πΊ on 4/24/2024 in #βγ»help
"Cannot write file '...' because it would overwrite input file" error in tsconfig.json
Thanks, I'll try when I get home
6 replies
NNuxt
β’Created by πΊπ«π· Shigu :3 πΊ on 4/24/2024 in #βγ»help
"Cannot write file '...' because it would overwrite input file" error in tsconfig.json
No
6 replies
NNuxt
β’Created by πΊπ«π· Shigu :3 πΊ on 4/24/2024 in #βγ»help
"Cannot write file '...' because it would overwrite input file" error in tsconfig.json
Reproducing the error
- Run
bunx nuxi@latest init nuxt-tsconfig-bug
- Which package manager would you like to use? bun
- Initialize git repository? No
- Run cd nuxt-tsconfig-bug
- Run bun add -D tailwindcss postcss autoprefixer && bunx tailwindcss init
- Write nuxt.config.ts
- Write tailwind.config.js
- Observe error in server/tsconfig.json
6 replies
DIAdiscord.js - Imagine an app
β’Created by adam π¦π± on 10/27/2023 in #djs-questions
Mass adding of roles
Also your command just sounds like API spam tbh
9 replies
DIAdiscord.js - Imagine an app
β’Created by adam π¦π± on 10/27/2023 in #djs-questions
Mass adding of roles
Wdym by "Discord take care of the rate limit"?
They enforce it. djs handles rate limits by queing requests.
9 replies
DIAdiscord.js - Imagine an app
β’Created by jr on 10/25/2023 in #djs-questions
Prevent link embeds while sending a message
This seems to be possible by adding the
SuppressEmbeds
flag to the message payload (so you have to define the message payload, add the flag explicitely before sending it).7 replies
DIAdiscord.js - Imagine an app
β’Created by π₯ Nα₯²tsα₯²rα§s on 10/14/2023 in #djs-questions
My code looks correct, but my bot is no longer detecting messages.
And you don't have the required intents to get
guildMemberUpdate
9 replies
DIAdiscord.js - Imagine an app
β’Created by π₯ Nα₯²tsα₯²rα§s on 10/14/2023 in #djs-questions
My code looks correct, but my bot is no longer detecting messages.
The event for a new message has been changed to
messageCreate
in v149 replies
DIAdiscord.js - Imagine an app
β’Created by GalaXd on 10/13/2023 in #djs-questions
Attachment
Also it's pretty sketchy to log messages that users have explicitly deleted...
17 replies
DIAdiscord.js - Imagine an app
β’Created by GalaXd on 10/13/2023 in #djs-questions
Attachment
When you receive the message on the
messageDelete
event, it doesn't exist anymore, you can only access its data if discord.js has cached it.17 replies