Skip to content

Instantly share code, notes, and snippets.

@ksprashu
ksprashu / GEMINI_CLI_CORE_SYSTEM_PROMPT.md
Last active December 18, 2025 00:34
System Instructions of Gemini CLI as on 29-07-2025

You are an interactive CLI agent specializing in software engineering tasks. Your primary goal is to help users safely and efficiently, adhering strictly to the following instructions and utilizing your available tools.

Core Mandates

  • Conventions: Rigorously adhere to existing project conventions when reading or modifying code. Analyze surrounding code, tests, and configuration first.
  • Libraries/Frameworks: NEVER assume a library/framework is available or appropriate. Verify its established usage within the project (check imports, configuration files like 'package.json', 'Cargo.toml', 'requirements.txt', 'build.gradle', etc., or observe neighboring files) before employing it.
  • Style & Structure: Mimic the style (formatting, naming), structure, framework choices, typing, and architectural patterns of existing code in the project.
  • Idiomatic Changes: When editing, understand the local context (imports, functions/classes) to ensure your changes integrate naturally and idiomatically.
  • **
@NolixAU
NolixAU / client\main.lua
Created December 7, 2025 04:32
Option to rob cash as a separate option
-- mythic-robbery/client/main.lua
AddEventHandler("Robbery:Shared:DependencyUpdate", RetrieveComponents)
function RetrieveComponents()
Logger = exports["mythic-base"]:FetchComponent("Logger")
Callbacks = exports["mythic-base"]:FetchComponent("Callbacks")
PedInteraction = exports["mythic-base"]:FetchComponent("PedInteraction")
Progress = exports["mythic-base"]:FetchComponent("Progress")
Phone = exports["mythic-base"]:FetchComponent("Phone")
@NolixAU
NolixAU / client.lua
Created December 7, 2025 04:37
Option to give cash via third eye
-- mythic-finance/client/client.lua
local inBank = true
AddEventHandler("Finance:Shared:DependencyUpdate", RetrieveComponents)
function RetrieveComponents()
Utils = exports["mythic-base"]:FetchComponent("Utils")
Callbacks = exports["mythic-base"]:FetchComponent("Callbacks")
Logger = exports["mythic-base"]:FetchComponent("Logger")
@aamiaa
aamiaa / CompleteDiscordQuest.md
Last active December 18, 2025 00:39
Complete Recent Discord Quest

Complete Recent Discord Quest

Note

This does not works in browser for quests which require you to play a game! Use the desktop app to complete those.

How to use this script:

  1. Accept a quest under Discover -> Quests
  2. Press Ctrl+Shift+I to open DevTools
  3. Go to the Console tab
  4. Paste the following code and hit enter:
@ongkiii
ongkiii / IPA-Sources.md
Last active December 18, 2025 00:29
REPOS/TELEGRAM CHANNELS LIST BY u/angkitbharadwaj
@MohamedAlaa
MohamedAlaa / tmux-cheatsheet.markdown
Last active December 18, 2025 00:23
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname
@gitaarik
gitaarik / git_submodules.md
Last active December 18, 2025 00:18
Git Submodules basic explanation

Git Submodules - Basic Explanation

Why submodules?

In Git you can add a submodule to a repository. This is basically a sub-repository embedded in your main repository. This can be very useful. A couple of usecases of submodules:

  • Separate big codebases into multiple repositories.
@ddan9
ddan9 / android_adb_tweaks.md
Last active December 18, 2025 00:18
Android tweaking through ADB. Android ADB (Android Debug Bridge) interesting commands. Through the ADB you can change hidden settings of your Android phone, you can also set hidden themes or change screen resolution

DESCRIPTION

Android ADB (Android Debug Bridge) interesting commands. Through the ADB you can change hidden settings of your Android phone, you can also set hidden themes or change screen resolution


NOTES, IMPORTANT

I am not responsible for any damage to your device