- Append-only file: every add/update/delete is handled by appending new data to the end of a file (no in-place overwrite / no delete of the file). ([Justia Patents][1])
storeprocess: seek EOF → write object → define object identifier tied to write location → move EOF. ([Justia Patents][1])commitprocess: append a root marker that points at the chosen “current root” object (a pointer switch), then move EOF. ([Justia Patents][1])rootprocess: scan backwards from EOF to find the latest root marker; that implicitly makes older roots “inactive” without deleting anything. ([Justia Patents][1])readprocess: read an object given an object identifier (which can be a location/offset or an indirection variable). ([Justia Patents][1])- Higher-level APIs + transparent plug-ins: B-tree + skip-list interfaces built on top of
store/read/commit/root, with transparent plug-ins (cache/cluster/partition/sequence/monitor/remote). ([Ju
This file contains hidden or 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
| # Granular Agentic Development Plan Schema (Epic->Story->Task) | |
| <!-- | |
| ================================================================================ | |
| TEMPLATE DOCUMENTATION | |
| ================================================================================ | |
| This template defines the standard structure for development plans derived from | |
| RFCs. Plans are consumed by AI agents acting as software developers. |
This file contains hidden or 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 deno run --allow-run --allow-read --allow-env | |
| /** | |
| * @module run-cursor-dev-container | |
| * @fileoverview Generic Cursor Dev Container Launcher | |
| * | |
| * Automates the process of launching Cursor directly into any dev container, | |
| * bypassing the need for manual "Reopen in Container" command palette actions. | |
| * | |
| * @description This script manages Docker container lifecycle and constructs the proper |
| description | globs | alwaysApply |
|---|
SUBTASK: Use this guide to help solve or answer the current query, user message, or task.
This rule provides a comprehensive guide to Cursor's advanced features, APIs, tools, and programmatic capabilities for solving complex problems. Use it to leverage Cursor's full potential when standard approaches are insufficient.
This file contains hidden or 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
| # Manus AI Assistant Capabilities | |
| ## Overview | |
| I am an AI assistant designed to help users with a wide range of tasks using various tools and capabilities. This document provides a more detailed overview of what I can do while respecting proprietary information boundaries. | |
| ## General Capabilities | |
| ### Information Processing | |
| - Answering questions on diverse topics using available information | |
| - Conducting research through web searches and data analysis |
This file contains hidden or 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
| /***************************************************** | |
| * Google Apps Script for a Comprehensive | |
| * GPU Rental Business Financial Model in Google Sheets | |
| * | |
| * This script: | |
| * 1. Creates/clears four sheets: | |
| * - "Inputs" | |
| * - "Calculations" | |
| * - "Dashboard" | |
| * - "Scenario Results" |
This file contains hidden or 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
| const pw = require('playwright'); | |
| const UserAgent = require('user-agents'); | |
| const uuid = require('uuid'); | |
| const tmp = require('tmp-promise'); | |
| const UINT32_MAX = (2 ** 32) - 1; | |
| const WEBGL_RENDERERS = ['ANGLE (NVIDIA Quadro 2000M Direct3D11 vs_5_0 ps_5_0)', 'ANGLE (NVIDIA Quadro K420 Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (NVIDIA Quadro 2000M Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (NVIDIA Quadro K2000M Direct3D11 vs_5_0 ps_5_0)', 'ANGLE (Intel(R) HD Graphics Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (Intel(R) HD Graphics Family Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (ATI Radeon HD 3800 Series Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (Intel(R) HD Graphics 4000 Direct3D11 vs_5_0 ps_5_0)', 'ANGLE (Intel(R) HD Graphics 4000 Direct3D11 vs_5_0 ps_5_0)', 'ANGLE (AMD Radeon R9 200 Series Direct3D11 vs_5_0 ps_5_0)', 'ANGLE (Intel(R) HD Graphics Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (Intel(R) HD Graphics Family Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (Intel(R) HD Graphics Direct3D9Ex vs_3_0 ps_3_0)', 'ANGLE (Intel(R) HD Graphics Family Direct3D |
This file contains hidden or 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
| { | |
| "StyleGuide": { | |
| "Title": "JavaScript and TypeScript Coding Style Guide", | |
| "Introduction": "This style guide outlines the best practices for writing modern, idiomatic, and maintainable JavaScript and TypeScript code, leveraging the latest ECMAScript features (ES2022 and above). It is designed to ensure code consistency, readability, and adherence to industry standards.", | |
| "Sections": [ | |
| { | |
| "Number": "1", | |
| "Title": "Code Formatting", | |
| "Rules": [ | |
| "Indentation: Use **2 spaces** for indentation.", |
This file contains hidden or 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
| <StyleGuide> | |
| <Title>JavaScript and TypeScript Coding Style Guide</Title> | |
| <Introduction> | |
| This style guide outlines the best practices for writing modern, idiomatic, and maintainable JavaScript and TypeScript code, leveraging the latest ECMAScript features (ES2022 and above). It is designed to ensure code consistency, readability, and adherence to industry standards. | |
| </Introduction> | |
| <Section number="1" title="Code Formatting"> | |
| <Rules> | |
| <Rule>Indentation: Use **2 spaces** for indentation.</Rule> | |
| <Rule>Semicolons: **Omit semicolons** unless absolutely necessary (e.g., to avoid ASI pitfalls).</Rule> |
NewerOlder