Skip to content
View mikenath223's full-sized avatar
💜
Looking for the next challenging opportunity
💜
Looking for the next challenging opportunity

Block or report mikenath223

Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. weightloss-app weightloss-app Public

    An engaging and user-friendly application to track and encourage weekly weight loss for a small group. Built with SvelteKit 2, Svelte 5, Skeleton UI, Tailwind CSS, and Firebase, the app ensures an …

    TypeScript

  2. OpenAI's Whisper model was integrate... OpenAI's Whisper model was integrated into an API handler I developed for a Next.js application, designed to process HTTP POST requests and transcribe audio files to the model..
    1
    import type { NextApiRequest, NextApiResponse } from "next";
    2
    import axios from "axios";
    3
    
                  
    4
    export default async function handler(req: NextApiRequest, res: NextApiResponse) {
    5
      if (req.method !== "POST") {
  3. openstreetmap/iD openstreetmap/iD Public

    🆔 The easy-to-use OpenStreetMap editor in JavaScript.

    JavaScript 3.7k 1.3k

  4. Setup MSW for mock testing graphql r... Setup MSW for mock testing graphql requests, used as MSW mock service worker to intercept request and return mock results to fastract frontend development, before actual APIs are built.
    1
    import { useEffect, useState } from "react";
    2
    
                  
    3
    const isEnabledMocking = process.env.NEXT_PUBLIC_ENABLE_API_MOCKING === "true";
    4
    
                  
    5
    export default function useMswMock() {