Skip to content

Instantly share code, notes, and snippets.

View devinschumacher's full-sized avatar
🦩
stayin' funky

Devin Schumacher devinschumacher

🦩
stayin' funky
View GitHub Profile
@devinschumacher
devinschumacher / 0-test-tools.md
Last active November 14, 2024 12:41
Architecture, Setup & Config for: Nuxt3 + vitest + @nuxt/test-utils + typescript

image


image


image

@devinschumacher
devinschumacher / 0-test-suite-overview.md
Last active November 19, 2024 14:25
Software Testing Notes - vue/nuxt

Test Suite Levels

6. E2E/UI system tests
5. E2E/UI isolated tests
-
4. API tests (out of process)
3. Integration tests (in memory)
-
2. Component tests (in memory)
@devinschumacher
devinschumacher / business-process-management-software.md
Created May 20, 2025 09:11
The Best Business Process Management Software - Apps & Tools for Repeatable Checklists & SOPs
title tags
The Best Business Process Management Software for Creating SOPs and Checklists
business process management
SOP software
checklist apps
workflow automation

Business Process Management Software: The Best Apps & Tools for Creating Repeatable Checklists & SOPs

@devinschumacher
devinschumacher / post.md
Last active June 5, 2025 05:52
How to Setup Nuxt with shadcn-vue (Fixes the @/components/ui Import Issues)
title
How to Setup Nuxt with shadcn/vue

How to Setup Nuxt with shadcn-vue (fixes the @/components/ui Import Issues)

Create a new project

@devinschumacher
devinschumacher / vide-coding-tools.md
Last active June 21, 2025 17:14
The Best Vibe Coding Tools for Enhanced DX - Developer Experience
title tags
The Best Vibe Coding Tools for Enhanced Developer Experience
vibe coding
programming tools
developer productivity
AI-assisted coding

The Best Vibe Coding Tools for Enhanced Developer Experience

In today's fast-evolving tech landscape, the concept of "vibe coding" has emerged as a revolutionary approach to software development. Coined by former OpenAI co-founder Andrej Karpathy in February 2025, vibe coding represents a paradigm shift where developers leverage AI tools to transform natural language descriptions into functional code. This article explores the top vibe coding tools that are reshaping how we build software, along with a comprehensive guide to creating your ideal coding atmosphere.

@sarahatherbest
sarahatherbest / shadcnblocks-review.md
Last active July 12, 2025 02:17
Shadcnblocks.com Review: There's Something Bigger & Better

shadcnblocks - Review

Shadcnblocks offers a premium collection of UI components and blocks specifically designed for shadcn/ui, Tailwind CSS, and React developers. With a library of over 670 components (recently updated from 579), this platform aims to streamline the development process by providing ready-to-use, copy-paste blocks for building modern web interfaces. These components are hand-designed by an expert team rather than AI-generated, ensuring high quality and attention to detail. The platform emphasizes that all components are interactive and fully responsive, making them suitable for a wide range of projects.

While the components are visually appealing and responsive, our testing revealed some limitations in customization options and integration flexibility that may impact certain development workflows. The platform has recently made updates to ensure compatibility with Tailwind CSS v4, demonstrating their commitment to maintaining current technology standards.

❌: Based on our comparative ana

@devinschumacher
devinschumacher / fix-app.pkg-cant-be-opened-apple.md
Last active July 16, 2025 03:38
How to Fix "App.pkg” can’t be opened because Apple cannot check it for malicious software.

If you're trying to open an app or installer on your Mac and seeing this error:

"App.pkg” can’t be opened because Apple cannot check it for malicious software.

That is the default warning that appears appears for any app that isn’t “notarized” by Apple — which includes many tools from small developers, open-source apps, or beta software.

Always make sure you downloaded the file from a trusted website or developer. As long as you trust the source, it’s safe to bypass.

Video walkthrough

@devinschumacher
devinschumacher / README.md
Last active August 30, 2025 22:15
AI Voice Cloner Desktop Application | How to Clone A Voice Using AI
source_url

AI Voice Cloner Application

Turn text into natural-sounding speech and clone voices on your own computer with coding needed.

AI Voice Cloner is a local text-to-speech and voice cloning app that runs entirely on your machine, giving you fast performance and full control over your data. With a simple browser-based interface, you can generate natural-sounding speech, clone voices from short samples, and manage models stored securely on your own system.

@devinschumacher
devinschumacher / README.md
Last active August 31, 2025 06:25
123rf Downloader App
/* eslint-disable node/no-process-env */
import type { ZodObject, ZodRawShape } from "zod";
import { ZodError } from "zod";
export default function tryParseEnv<T extends ZodRawShape>(
EnvSchema: ZodObject<T>,
buildEnv: Record<string, string | undefined> = process.env,
) {
try {