To quickly bypass chatwoot/chatwoot#12260
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
| <script lang="ts"> | |
| import YamlEditor from "./MonacoEditor.svelte"; | |
| let yamlContent = $state(`# Welcome to YAML Editor | |
| # Start typing... | |
| name: John Doe | |
| age: 30 | |
| occupation: Software Engineer | |
| skills: |
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
| [package] | |
| name = "gstreamerIPCdemo" | |
| version = "0.1.0" | |
| edition = "2024" | |
| [dependencies] | |
| gstreamer = "0.24.2" | |
| nix = "0.30.1" |
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
| """ | |
| A tool that, like `pyreverse -o png` creates diagrams for Python Projects. See: [pyreverse](https://pylint.readthedocs.io/en/latest/additional_tools/pyreverse/index.html) | |
| Uses `ruff analyze` to retreive the dependency graph | |
| Adds the following features: | |
| + `--cluster`: Dependency heierarchy / grouping, for a more understandable layout | |
| + `--filter-disconnected`: Filtering disconnected nodes, to clean up __init__s and other boilerplate | |
| Usage: | |
| ruff analyze graph | python3 ./depgraph.py -c -fd && xdg-open packages.svg | |
| """ |
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
| // ==UserScript== | |
| // @name Canva grid view larger items | |
| // @namespace Violentmonkey Scripts | |
| // @match https://www.canva.com/design/* | |
| // @grant none | |
| // @version 1.2 | |
| // @author rgon.es | |
| // @description 5/5/2025, 12:19:27 PM | |
| // ==/UserScript== |
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
| [package] | |
| name = "bevy_video_demo_ffmpeg" | |
| version = "0.1.1" | |
| edition = "2021" | |
| [dependencies] | |
| bevy = "0.14.2" | |
| ffmpeg-next = "7.1.0" |
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
| ///bin/true; exec /usr/bin/env go run "$0" "$@" | |
| // Example: | |
| // 1. Unzip the fixtureYouWishToModify.Fixture | |
| // 2. Modify the fixture by editing MANUFACTURER/FIXTURE/FIXTURE.xml | |
| // 3. Call this script passing said uncompressed folder as a parameter | |
| // USAGE: ./compressOnyxFixture.go uncompressedFixtureFolder | |
| // 4. Your uncompressedFixtureFolder.Fixture file will be ready! | |
| // With the help of: https://stackoverflow.com/a/63233911 and https://unix.stackexchange.com/a/577613 |