This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// install nodemailer and its type definitions | |
import { z } from 'zod' | |
import nodemailer from 'nodemailer' | |
const emailPayload = z.object({ | |
to: z.string(), | |
subject: z.string(), | |
message: z.string(), | |
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<div class="space-y-4"> | |
<BasePageHeader page-title="My Trips" /> | |
<h1>Trip page</h1> | |
<div id="tripMap" class="w-full h-[90dvh] rounded" /> | |
</div> | |
</template> | |
<script setup lang="ts"> | |
import type { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# this script makes use of flatpak, ensure that is installed | |
# Or to not use flatpacks, check out the instructions from the repo just below | |
git clone https://github.com/abba23/spotify-adblock.git | |
cd spotify-adblock | |
make | |