Skip to content

Instantly share code, notes, and snippets.

View alphardex's full-sized avatar

Nameless God alphardex

View GitHub Profile
@alphardex
alphardex / simple-vue-recorder.vue
Last active January 3, 2025 07:43 — forked from cassidoo/simple-react-recorder.jsx
A simple Vue microphone component, recording audio and showing the blob in the browser, styled with Tailwind.
<script setup lang="ts">
// Refs:
// https://cassidoo.co/post/react-microphone/
// https://gist.github.com/cassidoo/dd1190c248d60c723de14fe9ee32f450
// Type declarations
const audioStream = ref<MediaStream | null>(null)
const mediaRecorder = ref<MediaRecorder | null>(null)
const audioBlob = ref<Blob | null>(null)
const recordingTime = ref<number>(0)
.editor-group-watermark > .letterpress{
background-image: url("https://raw.githubusercontent.com/alphardex/assets/main/ave-mujica-logo.png") !important;
opacity: .75;
}
@alphardex
alphardex / custom-vscode-logo.css
Last active May 13, 2024 08:18
Custom vscode Logo
.editor-group-watermark > .letterpress{
background-image: url("https://raw.githubusercontent.com/alphardex/assets/main/mygo-logo.png") !important;
opacity: .75;
}