Skip to content

Instantly share code, notes, and snippets.

View rgon's full-sized avatar

Gonzalo Ruiz rgon

View GitHub Profile
@rgon
rgon / README.md
Created August 21, 2025 11:53
WebP/Other to JPEG Converter
@rgon
rgon / makeCanvaGridViewItemsLarger.user.js
Last active May 6, 2025 17:15
Canva Grid View larger item size - script for ViolentMonkey
// ==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==
@rgon
rgon / Cargo.toml
Last active September 30, 2024 17:49 — forked from pkupper/Cargo.toml
Basic video playback in Bevy using ffmpeg-next
[package]
name = "bevy_video_demo_ffmpeg"
version = "0.1.1"
edition = "2021"
[dependencies]
bevy = "0.14.2"
ffmpeg-next = "7.1.0"
@rgon
rgon / compressOnyxFixture.go
Created March 22, 2021 17:48
Onyx Fixture Compressor and Packager: creates .Fixture files from uncompressed folders.
///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