23brewert
23brewert
Explore posts from servers
NNuxt
Created by 23brewert on 3/26/2025 in #❓・help
Nuxt UI, Text Does not appear in light mode - iOS only?
turns out setting root in css to the dark mode fixed it!
:root {
--ui-text-dimmed: var(--ui-color-neutral-500);
--ui-text-muted: var(--ui-color-neutral-400);
--ui-text-toned: var(--ui-color-neutral-300);
--ui-text: var(--ui-color-neutral-200);
--ui-text-highlighted: var(--color-white);

--ui-bg: var(--ui-color-neutral-900);
}
:root {
--ui-text-dimmed: var(--ui-color-neutral-500);
--ui-text-muted: var(--ui-color-neutral-400);
--ui-text-toned: var(--ui-color-neutral-300);
--ui-text: var(--ui-color-neutral-200);
--ui-text-highlighted: var(--color-white);

--ui-bg: var(--ui-color-neutral-900);
}
7 replies
NNuxt
Created by 23brewert on 3/26/2025 in #❓・help
Nuxt UI, Text Does not appear in light mode - iOS only?
also here is the login page
<template>
<div class="h-screen flex items-center justify-center">
<div class="p-3 center mh-5 bg-slate-700 rounded-xl items-center text-center justify-center">
<div style="margin-top: -80px;" class="flex justify-center">
<img class="bg-slate-700" style="padding: 10px; border-radius: 100%; width: 150px; height: 150px;" src="~/assets/images/CADS_ICON.png" alt="">
</div>

<div v-if="errorCode" class="p-1 bg-red-500 rounded-md font-bold text-white justify-center text-lg bg-error"> Authentication error {{ errorCode }}. Please try again!</div>

<div style="font-weight: 700; font-size: 25pt;">Sign In</div>
<div>Please authenticate to continue.</div>
<div class="flex mt-2 mb-2
justify-center pt-4 pb-3 gap-2">
<UButton @click="signIn('discord')" size="xl" color="secondary" class="text-white" leadingIcon="ic:baseline-discord">Login with Discord</UButton>
</div>
<div class="font-extralight italic text-sm">By signing in you agree to our <a>TOS</a> and <a>Privacy Policy</a>.</div>

</div>
</div>
</template>
<template>
<div class="h-screen flex items-center justify-center">
<div class="p-3 center mh-5 bg-slate-700 rounded-xl items-center text-center justify-center">
<div style="margin-top: -80px;" class="flex justify-center">
<img class="bg-slate-700" style="padding: 10px; border-radius: 100%; width: 150px; height: 150px;" src="~/assets/images/CADS_ICON.png" alt="">
</div>

<div v-if="errorCode" class="p-1 bg-red-500 rounded-md font-bold text-white justify-center text-lg bg-error"> Authentication error {{ errorCode }}. Please try again!</div>

<div style="font-weight: 700; font-size: 25pt;">Sign In</div>
<div>Please authenticate to continue.</div>
<div class="flex mt-2 mb-2
justify-center pt-4 pb-3 gap-2">
<UButton @click="signIn('discord')" size="xl" color="secondary" class="text-white" leadingIcon="ic:baseline-discord">Login with Discord</UButton>
</div>
<div class="font-extralight italic text-sm">By signing in you agree to our <a>TOS</a> and <a>Privacy Policy</a>.</div>

</div>
</div>
</template>
7 replies
CDCloudflare Developers
Created by 23brewert on 10/28/2024 in #general-help
Zero Trust Access Gateway showing as disabled on Edge but enabled on Firefox
Bumping
3 replies
DIAdiscord.js - Imagine an app
Created by 23brewert on 8/13/2024 in #djs-questions
User Context Menu in group dms - not sending interaction to gateway
Thank you!
6 replies
DIAdiscord.js - Imagine an app
Created by 23brewert on 8/13/2024 in #djs-questions
User Context Menu in group dms - not sending interaction to gateway
so I can track it
6 replies
DIAdiscord.js - Imagine an app
Created by 23brewert on 8/13/2024 in #djs-questions
User Context Menu in group dms - not sending interaction to gateway
is there a issue posted somewhere?
6 replies
NNuxt
Created by 23brewert on 5/20/2024 in #❓・help
Issues running nuxt 3 with docker
here is my docker ignore file:
# Include any files or directories that you don't want to be copied to your
# container here (e.g., local build artifacts, temporary files, etc.).
#
# For more help, visit the .dockerignore file reference guide at
# https://docs.docker.com/go/build-context-dockerignore/

**/.classpath
**/.dockerignore
**/.env
**/.git
**/.gitignore
**/.project
**/.settings
**/.toolstarget
**/.vs
**/.vscode
**/.next
**/.cache
**/*.*proj.user
**/*.dbmdl
**/*.jfm
**/charts
**/docker-compose*
**/compose.y*ml
**/Dockerfile*
**/node_modules
**/npm-debug.log
**/obj
**/secrets.dev.yaml
**/values.dev.yaml
**/build
**/dist
LICENSE
README.md
# Include any files or directories that you don't want to be copied to your
# container here (e.g., local build artifacts, temporary files, etc.).
#
# For more help, visit the .dockerignore file reference guide at
# https://docs.docker.com/go/build-context-dockerignore/

**/.classpath
**/.dockerignore
**/.env
**/.git
**/.gitignore
**/.project
**/.settings
**/.toolstarget
**/.vs
**/.vscode
**/.next
**/.cache
**/*.*proj.user
**/*.dbmdl
**/*.jfm
**/charts
**/docker-compose*
**/compose.y*ml
**/Dockerfile*
**/node_modules
**/npm-debug.log
**/obj
**/secrets.dev.yaml
**/values.dev.yaml
**/build
**/dist
LICENSE
README.md
3 replies
NNuxt
Created by 23brewert on 5/20/2024 in #❓・help
Issues running nuxt 3 with docker
Here is my dockerfile [I got it from an article]
# use node 20 alpine image
FROM node:20-alpine

# create work directory in app folder
WORKDIR /app

# install required packages for node image
RUN apk --no-cache add openssh g++ make python3 git

# copy over package.json files
COPY package.json /app/
COPY package-lock.json /app/

# install all depencies
RUN npm ci && npm cache clean --force

# copy over all files to the work directory
ADD . /app

# build the project
RUN npm run build

# expose the host and port 3000 to the server
ENV HOST 0.0.0.0
EXPOSE 4000

# run the build project with node
ENTRYPOINT ["node", ".output/server/index.mjs"]
# use node 20 alpine image
FROM node:20-alpine

# create work directory in app folder
WORKDIR /app

# install required packages for node image
RUN apk --no-cache add openssh g++ make python3 git

# copy over package.json files
COPY package.json /app/
COPY package-lock.json /app/

# install all depencies
RUN npm ci && npm cache clean --force

# copy over all files to the work directory
ADD . /app

# build the project
RUN npm run build

# expose the host and port 3000 to the server
ENV HOST 0.0.0.0
EXPOSE 4000

# run the build project with node
ENTRYPOINT ["node", ".output/server/index.mjs"]
3 replies
DIAdiscord.js - Imagine an app
Created by Paras on 3/7/2023 in #djs-questions
how can i get mutual guild between user and bot?
5 replies
DIAdiscord.js - Imagine an app
Created by 23brewert on 7/18/2023 in #djs-questions
get client from interaction
thanks, [also figured it would be helpful to have in the forum for search]
5 replies
DIAdiscord.js - Imagine an app
Created by 23brewert on 2/28/2023 in #djs-voice
Audio Resource Playing on Client but not on server.
11 replies
DIAdiscord.js - Imagine an app
Created by 23brewert on 2/28/2023 in #djs-voice
Audio Resource Playing on Client but not on server.
11 replies
DIAdiscord.js - Imagine an app
Created by 23brewert on 2/28/2023 in #djs-voice
Audio Resource Playing on Client but not on server.
Checked the firewall and there is not blocked ports.
11 replies
DIAdiscord.js - Imagine an app
Created by 23brewert on 2/28/2023 in #djs-voice
Audio Resource Playing on Client but not on server.
I know it works on my PC because I can hear music when I join the voice channel with the bot...
11 replies
DIAdiscord.js - Imagine an app
Created by 23brewert on 2/28/2023 in #djs-voice
Audio Resource Playing on Client but not on server.
PC & Server: [email protected] PC Node: v16.16.0 Server Node: v16.19.0
11 replies
DIAdiscord.js - Imagine an app
Created by 23brewert on 12/14/2022 in #djs-questions
How to add additional information to Buttons other than customId
Discord.js Version: [email protected] Node Version v16.9.0
6 replies
DIAdiscord.js - Imagine an app
Created by 23brewert on 7/15/2022 in #djs-questions
Type DiscordAPIError [discord.js]
Alright noted, thanks.
4 replies
DIAdiscord.js - Imagine an app
Created by 23brewert on 7/15/2022 in #djs-questions
Type DiscordAPIError [discord.js]
ah okay, I used the discord-modals npm library and it displayed but then there was an error at the end and thought it would be better to change it back to discord.js. So I just thought discord.js supported it too.
4 replies