📖 Stamat's Book of JavaScript Spells
A lightweight state management library
D&D Beyond MCP Server with Google Auth
Agent skill definitions for Arcanum — prompts and instructions for AI coding agents
JSON file data for EQOA information such as guides/quests listed on Jadiction.com
Lightweight text-reveal web component — slide-up animation by word, character, or line with no dependencies
A lightweight web component wrapper for native <dialog> elements with state-driven animations.
Magial tool to speed up your development cycles
MCP server enabling Claude to read and manipulate Figma documents via WebSocket bridge
> [Enchanter (live) - Dragon Age Inquisition (Elizaveta)](https://www.youtube.com/watch?v=i1IC4ymq8Uk&ab_channel=elizavetamusic)
A Joplin plugin to manage **Dungeons & Dragons 5e characters** directly in your notes.
Tools and helpers to query SRD content
OpenClaw Channel Plugin — connects OpenClaw gateway to AC2 peers over WebRTC
be-enhanced provides a base class that enables casting spells, or enhancing server-rendered DOM elements based on cross-cutting custom attributes
The Wizard's Apprentice
Enchanter is web (and console) application framework with powerful spells! 🪄
Potter-ify your Linux Experience!
Interactive tool and skill loadouts for Pi sessions.
Create Fantasy statblocks in Obsidian.md
A language independent tool for rapid prototyping stuff.
MCP server for querying WoW spell and item data from WowLab
Database for WoW spells
Dungeon & Dragons 5e spells as a node module
This NPM package contains data for Dungeon World, such as classes, moves, spells, equipment, etc.
Spell check your source code
Tool to detect orthography errors your code files
Can't ever spell initialize? Then use Initizle! The lazy way to keep your code working.
Sourcery puts a spell-casting layer between the code you write and the code you ship. Using ERB templating in this layer lets you write highly meta-magical code.
English spelling and grammer verficiation tool. Queen will help you keep code and comments in high esteem.
NLP Cloud serves high performance pre-trained or custom models for NER, sentiment-analysis, classification, summarization, paraphrasing, grammar and spelling correction, keywords and keyphrases extraction, chatbot, product description and ad generation, intent classification, text generation, image generation, code generation, question answering, automatic speech recognition, machine translation, language detection, semantic search, semantic similarity, speech synthesis, tokenization, POS tagging, embeddings, and dependency parsing. It is ready for production, served through a REST API. This is the Ruby client for the API. More details here: https://nlpcloud.com. Documentation: https://docs.nlpcloud.com.
GuerrillaRotate ============== This plugin lets you have multiple view pages for the one action, so that you can rotate through different views in order to test which one is the most effective. This is known as A/B testing, split testing or side-by-side testing. It will automatically switch between the different views for different web requests (uses .rand so is pseudo random, not round-robin or anything). The particular view is sticky for a (rails) session, so that once that view has been chosen for that visitor they will see the same, consistent view each time. It integrates automagically into [Rubaidh::GoogleAnalytics](http://github.com/rubaidh/google_analytics) by setting the override_trackpageview to the name of the unique view file (instead of the action-based URL) so you can track it easily in Google Analytics. Without that you'll want to track it by putting different tracking codes in each of your view templates. Example ------- So, in your views you will create some new templates with something (can be anything including nothing) between the template name and the first part of the extension. So you might have the following files for the products/index action: app/views/products/index.html.erb app/views/products/index_alt.html.erb app/views/products/index_new.html.erb Then all you need to do is tell your controller to rotate for that action: ### app/controllers/products_controller.rb class ProductsController < ApplicationController guerrilla_rotate :index, :show # etc.. end NB: guerrilla_rotate is also aliased as guerilla_rotate for the alternative spelling and typos. Copyright © 2009 Jason King, released under the MIT license