Skip to content

Instantly share code, notes, and snippets.

@ruvnet
ruvnet / .roomodes.json
Last active April 19, 2025 04:58
This guide introduces Roo Code and the innovative Boomerang task concept, now integrated into SPARC Orchestration. By following the SPARC methodology (Specification, Pseudocode, Architecture, Refinement, Completion) and leveraging advanced reasoning models such as o3, Sonnet 3.7 Thinking, and DeepSeek, you can efficiently break down complex proj…
{
"customModes": [
{
"slug": "sparc",
"name": "⚡️ SPARC Orchestrator",
"roleDefinition": "You are SPARC, the orchestrator of complex workflows. You break down large objectives into delegated subtasks aligned to the SPARC methodology. You ensure secure, modular, testable, and maintainable delivery using the appropriate specialist modes.",
"customInstructions": "Follow SPARC:\n\n1. Specification: Clarify objectives and scope. Never allow hard-coded env vars.\n2. Pseudocode: Request high-level logic with TDD anchors.\n3. Architecture: Ensure extensible system diagrams and service boundaries.\n4. Refinement: Use TDD, debugging, security, and optimization flows.\n5. Completion: Integrate, document, and monitor for continuous improvement.\n\nUse `new_task` to assign:\n- spec-pseudocode\n- architect\n- code\n- tdd\n- debug\n- security-review\n- docs-writer\n- integration\n- post-deployment-monitoring-mode\n- refinement-optimization-mode\n\nValidate:\n✅ Files < 500 lines\n✅ No hard-coded
@lelinhtinh
lelinhtinh / type-vietnamese-on-ubuntu.md
Last active April 19, 2025 04:00
Gõ Tiếng Việt trong Ubuntu

Gõ Tiếng Việt trong Linux

Ghi chú cách dùng IBus Bamboo để gõ Tiếng Việt mà không bị lỗi gạch chân như các bộ gõ khác.

Cài đặt

sudo add-apt-repository ppa:bamboo-engine/ibus-bamboo
sudo apt-get update
sudo apt-get install ibus ibus-bamboo --install-recommends
@anujdevopslearn
anujdevopslearn / apache.yml
Last active April 19, 2025 03:57
Apache Ansible Installation Script
---
- hosts: development
tasks:
- name: Install apache2 package
apt: name=apache2 update_cache=yes state=latest
- name: Enable Mod Rewrite
apache2_module: name=rewrite state=present
- name: Restart Service
@sterlingcrispin
sterlingcrispin / rewriteZora.mjs
Created April 18, 2025 20:32
You can use this to edit Zora NFT's and write any data into it you want.
import { Wallet, JsonRpcProvider, Interface } from "ethers";
const RPC =
"https://base-mainnet.g.alchemy.com/v2/YOUR_ALCHEMY_API_KEY";
const PK = "PRIVATE_KEY"; // Your wallet address private key
const TOKEN = "THE_ADDRESS_OF_THE_TOKEN_YOU_WANT_TO_CHANGE";
const URI = "ipfs://LOCATION_ON_IPFS_OF_NEW_CONTENT";

Configurar VSC para Django (Actualizado 03/2024)

Actualmente no es necesario configurar el proyecto en el directorio .vscode/settings.json, es mucho más fácil. Solo hay que seguir estos pasos:

  1. Antes de nada instalad estas extensiones en vuestro Visual Studio Code:
@rvrsh3ll
rvrsh3ll / windows-keys.md
Created February 18, 2024 22:44
Windows Product Keys

NOTE

These are NOT product / license keys that are valid for Windows activation.
These keys only select the edition of Windows to install during setup, but they do not activate or license the installation.

Index

@judero01col
judero01col / Service KMS
Last active April 19, 2025 02:24
Volume License Activation Key Service - KMS
## Find Available Target Editions
DISM.exe /Online /Get-TargetEditions
## Convert Server Standard 2019 Evaluation to Server Standard 2019
DISM /online /Set-Edition:ServerStandard /ProductKey:N69G4-B89J2-4G8F4-WWYCC-J464C /AcceptEula
## How To Activate
slmgr /ipk XXXXX-XXXXX-XXXXX-XXXXX-XXXXX
slmgr /skms [server]:[port]
slmgr /ato
@exolocity
exolocity / windows server 2022.txt
Created August 27, 2024 09:28
windows server 2022
Free Windows Server 2022 Standard Product Key
HP9DJ-NK2X6-4QPCH-8HY8H-6X2XY
RRNMT-FP29D-CHKCH-GWQP2-DDDVB
44QN4-X3R72-9X3VK-3DWD6-HFWDM
Free Windows Server 2022 Datacenter Product Key
WX4NM-KYWYW-QJJR4-XV3QB-6VM33
Download windows Sever 2022 Evaluation edition:
Windows Server 2022 Evaluation English
@gtechsltn
gtechsltn / html-boilerplate.md
Created November 6, 2024 01:44 — forked from kingluddite/html-boilerplate.md
Basic HTML bollerplate

Basic HTML boilerplate

The basic HTML5 boilerplate code looks like this:

<html lang="en">
<head>
    <title>Your Page Title</title>
</head>
<body>