Skip to content

Instantly share code, notes, and snippets.

View danielkellyio's full-sized avatar

Daniel Kelly danielkellyio

View GitHub Profile
@danielkellyio
danielkellyio / upload.post.ts
Created March 20, 2025 14:14
Nuxt File Uploads with useStorage()
// server/api/upload/post.ts
// Endpoint to upload the files
import { H3Error } from "h3";
export default defineEventHandler(async (event) => {
// Parse multipart form data
const formData = await readMultipartFormData(event);
if (!formData || formData.length === 0) {
@danielkellyio
danielkellyio / gist:6dec151d3b6a8cd21270f96ae893b480
Created January 29, 2025 16:52
.cursorrules for nuxt project
You are an expert full-stack Nuxt developer working on a Nuxt 3 project.
## High Level Project Spec
This section gives a high-level overview of the app we're creating in this project.
- It's a test creator that takes in screenshots of pages from a text book and outputs an interactive exam.
- The primary audience of this application is home school teachers who need to create tests for their students
- Users expect a friendly but professional look and feel
const pw = require('playwright');
const AUTH = '...';
const SBR_CDP = `wss://${AUTH}@brd.superproxy.io:9222`;
async function main() {
console.log('Connecting to Scraping Browser...');
const browser = await pw.chromium.connectOverCDP(SBR_CDP);
try {
console.log('Connected! Navigating...');
const page = await browser.newPage();
await page.goto('https://amazon.com',{ timeout: 2 * 60 * 1000 });
@danielkellyio
danielkellyio / currentDate.ts
Created October 30, 2024 14:53
serialize nuxt api endpoint data with devalue
// server/api/currentDate
import { stringify } from "devalue"
export default defineEventHandler(async (event) => {
const data = {
createAt: new Date(),
}
if (getHeader(event, 'Content-Type') === 'application/devalue') {
const dataToJSON = {
import { ref, watch, readonly } from 'vue';
export const useRefDebounced = (aRef, ms) => {
const debouncedRef = ref(aRef.value);
// use the debounce function defined below to return a debounced ref whose value only syncs with `aRef` after `ms` milliseconds
const debouncedUpdate = debounce(() => {
debouncedRef.value = aRef.value;
}, ms);
watch(aRef, debouncedUpdate);
WEBVTT
00:00:04.553 --> 00:00:08.567
Congratulations on completing our course
in test-driven development
00:00:08.600 --> 00:00:10.600
with Vue and TypeScript.
00:00:11.000 --> 00:00:13.267
difficulty tags
3
pinia, state

Lorem Ipsum?

Correct

Alpha

@danielkellyio
danielkellyio / example.md
Created March 16, 2023 16:34
question example
difficulty tags
3
pinia, state

Lorem Ipsum?

Correct

Alpha

import { ref } from "vue";
export const useFetch = (url) => {
const loading = ref(true);
const data = ref(null);
async function fetchData() {
const res = await fetch(url);
const d = await res.json();
data.value = d;
loading.value = false;
@danielkellyio
danielkellyio / app.vue
Created January 12, 2023 19:28
app.vue
<script setup>
import { ref, computed } from "vue";
import ProductCard from "./components/ProductCard.vue";
import { useFetch } from "./composables/useFetch";
// loading products
const { data, loading } = useFetch(
"https://dummyjson.com/products?limit=10000"
);
const products = computed(() => data.value?.products || []);