Skip to content

Instantly share code, notes, and snippets.

View ninpl's full-sized avatar
:octocat:
Albañil de bits ^.^

N9+ ninpl

:octocat:
Albañil de bits ^.^
View GitHub Profile
@ninpl
ninpl / TailwindColors.cs
Created June 26, 2026 14:56 — forked from FronkonGames/TailwindColors.cs
Tailwind color palette for Unity.
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// _______ _ _ _ _ _____ _
// |__ __| (_) | (_) | | / ____| | |
// | | __ _ _| |_ ___ _ __ __| | | | ___ | | ___ _ __ ___
// | |/ _` | | \ \ /\ / / | '_ \ / _` | | | / _ \| |/ _ \| '__/ __|
// | | (_| | | |\ V V /| | | | | (_| | | |___| (_) | | (_) | | \__ \
// |_|\__,_|_|_| \_/\_/ |_|_| |_|\__,_| \_____\___/|_|\___/|_| |___/
//
// An expertly-crafted color palette out-of-the-box that is a great starting point if you don’t have your
// own specific branding in mind. Based on https://tailwindcss.com/docs/customizing-colors
@ninpl
ninpl / TinyTween.cs
Created June 26, 2026 14:55 — forked from FronkonGames/TinyTween.cs
A Complete and Easy to use Tweens library in One File.
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//
// _____ _ _____
// |_ _|_|___ _ _ |_ _|_ _ _ ___ ___ ___
// | | | | | | | | | | | | | -_| -_| |
// |_| |_|_|_|_ | |_| |_____|___|___|_|_|
// |___|
// A Complete and Easy to use Tweens library in One File
//
// Basic use:
@ninpl
ninpl / Hestia.cs
Created December 24, 2025 12:56
Example of asynchronous sequential save/load. (Unity)
#region Librerias
using UnityEngine;
using UnityEngine.SceneManagement;
using System;
using System.Threading;
using System.IO;
using System.Collections.Generic;
using System.Linq;
using Cysharp.Threading.Tasks;
using Pandora.Nucleo;
You are Lyra, a master-level AI prompt optimization specialist. Your mission: transform any user input into precision-crafted prompts that unlock AI's full potential across all platforms.
## THE 4-D METHODOLOGY
### 1. DECONSTRUCT
- Extract core intent, key entities, and context
- Identify output requirements and constraints
- Map what's provided vs. what's missing
### 2. DIAGNOSE
@ninpl
ninpl / extend-trial-jetbrains-windows.bat
Created April 15, 2024 12:39 — forked from Gkhnzdmr/extend-trial-jetbrains-windows.bat
JetBrains IDE trial reset windows
REM Delete eval folder with licence key and options.xml which contains a reference to it
for %%I in ("WebStorm", "IntelliJ", "CLion", "Rider", "GoLand", "PhpStorm", "Resharper", "PyCharm") do (
for /d %%a in ("%USERPROFILE%\.%%I*") do (
rd /s /q "%%a/config/eval"
del /q "%%a\config\options\other.xml"
)
)
REM Delete registry key and jetbrains folder (not sure if needet but however)
rmdir /s /q "%APPDATA%\JetBrains"
@ninpl
ninpl / ScrollRectAutoScroll.cs
Created January 8, 2024 18:28 — forked from spireggs/ScrollRectAutoScroll.cs
Unity3d ScrollRect Auto-Scroll, Dropdown Use: Places this component in the Template of Dropdown (with the ScrollRect component)
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.EventSystems;
using UnityEngine.UI;
//comment the next line out if you aren't using Rewired
using Rewired;
[RequireComponent(typeof(ScrollRect))]
public class ScrollRectAutoScroll : MonoBehaviour, IPointerEnterHandler, IPointerExitHandler
{
@ninpl
ninpl / GuardarIdioma.cs
Created June 7, 2021 19:03
Guardar y cargar el idioma sin mantenerlo en cache
// Cargar Idioma
private void LoadLanguage()
{
var savedLanguage = GetSavedLanguage();
if (savedLanguage != Idioma.Desconocido)
{
Localizacion.Instancia.IdiomaActual = savedLanguage;
}
}
@ninpl
ninpl / command
Created August 21, 2020 00:16
Actualiza las miniaturas de windows 10, para el favicon.ico que se queda bloqueado
ie4uinit.exe -show

Keybase proof

I hereby claim:

  • I am moonantonio on github.
  • I am antmoon (https://keybase.io/antmoon) on keybase.
  • I have a public key ASDnZmRZNEu-oJhgsVO0_-11-UbT91JIyAC4C83XJlAF9go

To claim this, I am signing this object:

@ninpl
ninpl / Utilidad.md
Created September 5, 2019 23:35
Encuentra todos los archivos en mi directorio actual, y todos los directorios contenidos en ellos, que son> 100 MB. Concatene esta lista con el archivo .gitignore.

Encuentra todos los archivos en mi directorio actual, y todos los directorios contenidos en ellos, que son> 100 MB. Concatene esta lista con el archivo .gitignore.

Mega

find . -size +100M | cat >> .gitignore

Giga

find . -size +1G | cat >> .gitignore