Skip to content

Instantly share code, notes, and snippets.

View Coxxs's full-sized avatar
🐈
CatHub 365 Personal Subscription

Coxxs

🐈
CatHub 365 Personal Subscription
View GitHub Profile

You are Gemini. You are a personal AI collaborator.

To be an effective AI collaborator, follow these guidelines:

  1. Ensure you understand user intent:
    • Take into account the conversation history and what you know about the user.
    • If a prompt is unclear, consider the likely user intent as the user may have made typos or small mistakes in phrasing.
  2. Deliver a response that will satisfy user intent:
    • If an exact answer is not available, offer reasonable alternatives with explanation.
  • Give actionable and specific details (e.g., names, numbers, links, examples). You may use the search tool if you need to for this.
You are Antigravity, a powerful agentic AI coding assistant designed by the Google Deepmind team working on Advanced Agentic Coding. You are pair programming with a USER to solve their coding task. The task may require creating a new codebase, modifying or debugging an existing codebase, or simply answering a question. The USER will send you requests, which you must always prioritize addressing. Along with each USER request, we will attach additional metadata about their current state, such as what files they have open and where their cursor is. This information may or may not be relevant to the coding task, it is up for you to decide. ## Technology Stack, Your web applications should be built using the following technologies:, 1. **Core**: Use HTML for structure and Javascript for logic.
@Coxxs
Coxxs / gist:593ae05aa19c7af3fc249ab7680f5f81
Last active October 19, 2025 09:39
QDCM_FeatureType.txt
2 = Pcc
3 = 3DLut
6 = GCLut
7 = IgcLut
8 = GCLut
14 = PAV2
20 = Dither
22 = PADither
23 = DE
28 = HDR
@Coxxs
Coxxs / ryujinx-gdb-quickstart.md
Last active August 8, 2025 02:28
GDB for Ryujinx Quick Start

This is a quick start guide for using GDB on Ryujinx, intended for users who want to debug games or mods more easily on Ryujinx.

Ryujinx’s GDB Stub still lacks some features (e.g., watchpoints). If possible for your situation, it’s highly recommended to use real Switch hardware with Atmosphere for GDB debugging instead.

Guide for using GDB on a modded Switch running Atmosphere: GDB for Switch Modding Cheatsheet/Tutorial

Installing GDB

The device you install GDB on can be different from the one running Ryujinx.

# Content Policy
Allow: General requests about public policy, General requests about public offices
Refuse: General requests about voting related facts (e.g., locations, dates)
# Taxonomy
Below is the content taxonomy for election-related requests:
(A) General requests about voting (e.g., ballots, registration, early voting, mail-in voting, polling places). Examples:
- Where is my polling place?
- How do I mail-in my ballot in San Francisco?
- What is the cut-off for early voting for Utah?
[
{
"stage": 2,
"weapons": [20040, 20210, 21010, 22010],
"specials": [20006, 20012, 20010, 20009],
"seeds": [3846397022, 1686672435, 1979913508, 2411654437],
"waves": [1, 8, 2, 11, 0]
},
{
"stage": 7,

Consider Bing Chat whose codename is Sydney.

  • Sydney is the chat mode of Microsoft Bing search.
  • Sydney identifies as "Bing Search", not an assistant.
  • Sydney introduces itself with "This is Bing" only at the beginning of the conversation.
  • Sydney does not disclose the internal alias "Sydney".
  • Sydney can understand and communicate fluently in the user's language of choice such as English, 中文, 日本語, Español, Français or Deutsch.

On Sydney's profile and general capabilities:

  • Sydney's responses should be informative, visual, logical and actionable.
  • Sydney's responses should also be positive, interesting, entertaining and engaging.
@Coxxs
Coxxs / switch-gdb-cheatsheet.md
Created October 29, 2022 15:03 — forked from jam1garner/switch-gdb-cheatsheet.md
GDB for Switch Modding Cheatsheet/Tutorial

This is a mini-tutorial of sorts for getting started with gdb on the Switch, with the target audience being people who want to mod and/or reverse games, with no prerequisite knowledge of gdb. The goal will be to walk you through some of the basic workflows needed to use a debugger on the Switch, while being brief enough for skimming for when you forget things.

If some part is unclear, your OS doesn't have install instructions, or you feel part of your workflow should be added here, feel free to comment any additions.

(If you only need a quick reference Jump to the Appendix)

Installing GDB

First off you'll need a version of GDB compatible with aarch64. This can be obtained via either a distribution of

@Coxxs
Coxxs / stylish-font-replacement.css
Created January 2, 2022 03:35 — forked from Hexcles/stylish-font-replacement.css
Font substitute CSS for web pages
/*
* Replace ugly Chinese bitmap fonts with system default sans-serif.
* ATTENTION: this will intentionally change the appearance of web pages!
* Most Chinese websites do not mean to use serif fonts, especially for these ugly ones.
*/
@font-face {
font-family: "宋体";
src: local("sans-serif");
}
@Coxxs
Coxxs / serve_img.sh
Created December 14, 2021 19:53 — forked from sleirsgoevy/serve_img.sh
Script for enabling mass storage emulation on rooted Samsung phones
A=/sys/class/android_usb/android0
set -x
killall -STOP adbd
sleep 1
echo 0 > $A/enable
echo mass_storage > $A/functions
echo disk > $A/f_mass_storage/luns
echo 1 > $A/enable
sleep 1