Skip to content

Instantly share code, notes, and snippets.

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Career Roadmap Export",
"description": "Schema for exporting a personalized career roadmap.",
"type": "object",
"properties": {
"timeline": { "type": "string" },
"totalEstimatedHours": { "type": "number" },
"phases": {
"type": "array",
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Career Matches Export",
"description": "Schema for exporting career matches based on user profile.",
"type": "object",
"properties": {
"careerMatches": {
"description": "A list of suggested career matches.",
"type": "array",
"items": {
@rxctionzz
rxctionzz / claude_3.5_sonnet_artifacts.xml
Created June 15, 2025 17:04 — forked from dedlim/claude_3.5_sonnet_artifacts.xml
Claude 3.5 Sonnet, Full Artifacts System Prompt
<artifacts_info>
The assistant can create and reference artifacts during conversations. Artifacts are for substantial, self-contained content that users might modify or reuse, displayed in a separate UI window for clarity.
# Good artifacts are...
- Substantial content (>15 lines)
- Content that the user is likely to modify, iterate on, or take ownership of
- Self-contained, complex content that can be understood on its own, without context from the conversation
- Content intended for eventual use outside the conversation (e.g., reports, emails, presentations)
- Content likely to be referenced or reused multiple times
@rxctionzz
rxctionzz / example.md
Created May 29, 2025 02:36 — forked from sahithyen/example.md
Use mermaid in jsdoc tutorials
<script src="./jsdoc-tuts-mermaid.js"></script>

This is an example on how to add an mermaid in a JSDoc-Tutorial.

Make sure to add the script in the markdown, add the script in the staticFiles folder and set it up accodingly in the jsdoc config file as shown in the gist.

You then can add mermaids in the same way as in GitLab:

@rxctionzz
rxctionzz / gitflow.mmd
Created May 29, 2025 02:21 — forked from RemoteRabbit/gitflow.mmd
GitFlow (mermaid diagram)
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@rxctionzz
rxctionzz / diagrams.md
Created May 29, 2025 02:19 — forked from blackcater/diagrams.md
Markdown Diagrams

Diagrams

Markdown Preview Enhanced supports rendering flow charts, sequence diagrams, mermaid, PlantUML, WaveDrom, GraphViz, Vega & Vega-lite, Ditaa diagrams. You can also render TikZ, Python Matplotlib, Plotly and all sorts of other graphs and diagrams by using Code Chunk.

Please note that some diagrams don't work well with file exports such as PDF, pandoc, etc.

Flow Charts

This feature is powered by flowchart.js.

@rxctionzz
rxctionzz / Todoist Widget 1.js
Created May 18, 2025 03:55 — forked from alexberkowitz/Todoist Widget 1.js
Todoist Widget for Scriptable
// Variables used by Scriptable.
// These must be at the very top of the file. Do not edit.
// icon-color: deep-blue; icon-glyph: magic;
// Variables used by Scriptable.
// These must be at the very top of the file. Do not edit.
// icon-color: deep-blue; icon-glyph: clipboard-check;
/******************************************************************************
* Info
*****************************************************************************/
@rxctionzz
rxctionzz / Code.gs
Created May 18, 2025 03:36 — forked from paulegan/Code.gs
Apps Script for moving or copying Google Drive files (using Drive v3 for performance)
const PROCESS_FILE_DATE_THRESHOLD = new Date(2020, 1, 1)
const PROCESS_FILE_DESTINATION = 'xxx'
const PROCESS_FILE_CHUNK_SIZE = 100
const ADMIN_USER = 'user@domain.com'
// Defines criteria for processing each file
function shouldProcessFile(f) {
return new Date(f.modifiedTime) < PROCESS_FILE_DATE_THRESHOLD && f.ancestors.some(i => i.id == '1gJGndPkdUq5md61phIU2iiL6pHcMmO79')
// Could also use criteria like f.mimeType.includes('pdf')

🧠 Prompt Template - [[Project Name or Use Case]]


🎯 Core Details

Element Input
Objective [[What is the goal of the content?]]
Act as [[e.g., expert, critic, consultant]]
@startuml
|Sales Agent|
start
group "Pre-Sales Process"
:<back:LightBlue>Sales Demo;
:<back:LightBlue>Gather Files;
:<back:LightBlue>Create Quote;
end group