- Download and extract zip from here
- Press
Windows + x - Press
a(Selects PowerShell (Admin)) - Navigate to directory where fonts were extracted to (
cd ${HOME}\Downloads\fonts-master\fonts-master) - Set Execution Policy
Set-ExecutionPolicy RemoteSigned[1] - Press
ythenEnterto accept
| # runcommand.py | |
| # Handy function that executes an external command in the shell | |
| # and returns 3 values: exit code of the command, its standard output | |
| # and its error output. | |
| # If you run the script directly, an example is provided: | |
| # first it will run a successful command and then one with errors | |
| # (you may want to modify them if not running a Unix system). | |
| import subprocess |
| { | |
| "monolog": { | |
| "title": "Monolog log file", | |
| "description": "Monolog log format", | |
| "url": "https://github.com/Seldaek/monolog", | |
| "regex": { | |
| "default": { | |
| "pattern": "\\[(?P<timestamp>.*)\\] (?P<logger>.+?).(?P<level>\\w+): (?P<message>[^\\[\\{]+) (?P<context>[\\[\\{].*[\\]\\}]) (?P<extra>[\\[\\{].*[\\]\\}])" | |
| } | |
| }, |
| <script type="text/javascript"> | |
| // Allow and preserve twig syntax @see http://stackoverflow.com/questions/20977910/editing-twig-templates-in-ckeditor | |
| // Can also be coupled with this plugin : http://ckeditor.com/addon/showprotected | |
| CKEDITOR.config.protectedSource.push(/\{\{[\s\S]*?\}\}/g); | |
| CKEDITOR.config.protectedSource.push(/\{\%[\s\S]*?%\}/g); | |
| CKEDITOR.config.protectedSource.push(/\{\#[\s\S]*?#\}/g); | |
| </script> |
| """ | |
| Compare two Excel sheets | |
| Inspired by https://pbpython.com/excel-diff-pandas-update.html | |
| For the documentation, download this file and type: | |
| python compare.py --help | |
| """ | |
| import argparse | |
| import pandas as pd |
| # From the book, effective python 2nd edition item 37 | |
| from collections import defaultdict | |
| from dataclasses import dataclass, field | |
| from typing import List, Dict | |
| @dataclass | |
| class Grade: | |
| weight: int |
| #!/bin/bash | |
| # Ollama Model Export Script | |
| # Usage: bash ollama-export.sh vicuna:7b | |
| # SPDX-License-Identifier: MIT (https://ncurl.xyz/s/o_o6DVqIR) | |
| # https://gist.github.com/supersonictw/f6cf5e599377132fe5e180b3d495c553 | |
| # Interrupt if any error occurred | |
| set -e | |
| # Declare |
In the Generative AI Age your ability to generate prompts is your ability to generate results.
Claude 3.5 Sonnet and o1 series models are recommended for meta prompting.
Replace {{user-input}} with your own input to generate prompts.
Use mp_*.txt as example user-inputs to see how to generate high quality prompts.
Welcome to the Cinematic Sora Video Prompts tutorial! This guide is meticulously crafted to empower creators, filmmakers, and content enthusiasts to harness the full potential of Sora, an advanced AI-powered video generation tool.
By transforming textual descriptions into dynamic, visually compelling video content, Sora bridges the gap between imagination and reality, enabling the creation of professional-grade cinematic experiences without the need for extensive technical expertise.
Generated with LLM assistance on 2 Nov 2025 with minimal human verification.
Opencode plugins extend the functionality of the Opencode AI assistant by allowing you to add custom tools, authentication providers, event handlers, and hooks into the core system. This guide covers how to create, configure, and distribute plugins.
Source files: