Skip to content

Instantly share code, notes, and snippets.

// Generated on 2014-06-03 using generator-angular 0.8.0
'use strict';
// # Globbing
// for performance reasons we're only matching one level down:
// 'test/spec/{,*/}*.js'
// use this if you want to recursively match all subfolders:
// 'test/spec/**/*.js'
module.exports = function (grunt) {
@lonormaly
lonormaly / LSP.md
Created January 12, 2026 09:32
Claude Code LSP

Claude Code Native LSP Setup Guide

Enable Language Server Protocol support in Claude Code for 900x faster code navigation (~50ms vs ~45s for text-based search).

What LSP Provides

  • goToDefinition - Jump to symbol definitions
  • findReferences - Find all usages across codebase
  • hover - Type info and documentation
  • documentSymbol - File structure overview
@lonormaly
lonormaly / cloudflared-tunnel-skill.md
Created March 14, 2026 10:07
cloudflared-tunnel-skill.md
@lonormaly
lonormaly / CheckoutModal.tsx
Last active July 7, 2026 09:54
White-label Dodo Payments checkout modal — embedded, on-domain, themed to your design tokens (Apple Pay / Google Pay in-context). Extracted from production.
"use client";
import { useCallback, useEffect, useId, useRef, useState } from "react";
import {
closeDodoCheckout,
isDodoCheckoutUrl,
openDodoCheckoutInline,
redirectToHostedCheckout,
} from "./dodo-checkout";