Skip to content

Instantly share code, notes, and snippets.

View NicolasBizzozzero's full-sized avatar
💻
All-nighting

Bizzozzéro Nicolas NicolasBizzozzero

💻
All-nighting
View GitHub Profile
@NicolasBizzozzero
NicolasBizzozzero / AGENTS.md
Created August 8, 2026 14:53
Agents coding instructions file designed to be generic, immutable, and treated as a golden standards

AGENTS.md

The fixed set of engineering rules AI agents and human contributors follow in this repository. Generic by design — identical in every project that uses it.


⚠️ Read This First — Directive for AI Agents

If you are an AI coding agent: read this entire file, carefully, from top to bottom, before you read or change any other file in this repository. Do not skim. Do not jump to the section that looks relevant and skip the rest.

@NicolasBizzozzero
NicolasBizzozzero / mode_rainbow.cfg
Created April 19, 2020 09:03
Counter Strike : Global Offensive config file changing your crosshair and HUD colors each time you move.
//
// Change your crosshair & HUD color each time you take move.
// Source: https://www.reddit.com/r/CounterStrikeBinds/comments/ddbb1r/rainbow_crosshair
//
// Crosshair cycle
alias rainbow_color_ch rainbow_color_ch_red
alias rainbow_color_ch_red "cl_crosshaircolor 5; cl_crosshaircolor_r 255; cl_crosshaircolor_g 0; cl_crosshaircolor_b 0; alias rainbow_color_ch rainbow_color_ch_orange"
alias rainbow_color_ch_orange "cl_crosshaircolor 5; cl_crosshaircolor_r 255; cl_crosshaircolor_g 127; cl_crosshaircolor_b 0; alias rainbow_color_ch rainbow_color_ch_yellow"
alias rainbow_color_ch_yellow "cl_crosshaircolor 5; cl_crosshaircolor_r 255; cl_crosshaircolor_g 255; cl_crosshaircolor_b 0; alias rainbow_color_ch rainbow_color_ch_chartreuse"
@NicolasBizzozzero
NicolasBizzozzero / mode_onetap.cfg
Created April 18, 2020 20:33
Counter Strike : Global Offensive config file forcing you to one-tap with weapons
//
// Force you to one tap
// Source: https://www.reddit.com/r/CounterStrikeBinds/comments/922hm2/one_tap_bind/e339uft
//
alias +shootswitch "+attack"
alias -shootswitch "-attack; use weapon_knife; slot1"
alias bindshoot "bind mouse1 +shootswitch"
@NicolasBizzozzero
NicolasBizzozzero / bibliography_bibtex.bib
Last active December 3, 2019 16:40
BibTex template listing all main entries along with their required and optional fields.
% Bibliography in the BibTex file format.
%
% Documentation available here:
% - https://en.wikipedia.org/wiki/BibTeX
% - $ man bibtex
% - BibLaTeX: http://mirrors.ibiblio.org/CTAN/macros/latex/exptl/biblatex/doc/biblatex.pdf
%
% Comments:
% - 'author' fields with multiple authors need to be separated with the 'and' word. The comma character ',' separate the
% first name and the last name. Example: author = {Firstname1, Lastname1 and Firstname2, Lastname2}.
@NicolasBizzozzero
NicolasBizzozzero / coupons.md
Last active November 29, 2019 10:12
List of usual words used as coupons discount for online shopping

Words to test

  • military
  • veteran
  • student
  • vendor
  • test
  • admin
  • sorry
  • save
  • take
@NicolasBizzozzero
NicolasBizzozzero / request_proxies.py
Last active October 23, 2019 15:36
Example of using the Python's requests library with RR cycling proxies.
import itertools
import requests
from lxml.html import fromstring
def main():
URL = 'https://example.org'
BATCH_SIZE_PROXIES = 10
CYCLE_TIME = 3
@NicolasBizzozzero
NicolasBizzozzero / deaf.cfg
Created October 12, 2019 11:54
Counter Strike : Global Offensive config file optimized for deaf players
// EVERYTHING YOU NEED TO KNOW IS IN CONSOLE WHEN YOU EXEC THE CFG
// MODIFY KEY ONLY IF U KNOW WHAT URE DOING
// iDeaf CFG
// MADE BY @iDexCsgo
@NicolasBizzozzero
NicolasBizzozzero / utility_training.cfg
Created October 5, 2019 13:38
Counter Strike : Global Offensive config file for utility training
/**
* utility_training.cfg for Counter Strike : Global Offensive
*
* For it to works, you need to put this file in the following directory :
* $STEAM_DIRECTORY\steamapps\common\Counter-Strike Global Offensive\csgo\cfg
* Usually (but not always), it is :
* C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\csgo\cfg
* Thereafter, start a game then type the following command :
* exec utility_training
*
@NicolasBizzozzero
NicolasBizzozzero / import.py
Last active October 21, 2019 11:49
Import all modules from standard Python 3.7.3 lib
""" Import all modules from standard Python 3.7.3 lib. """
# Import warnings first to filter deprecated packages
try: import warnings
except ModuleNotFoundError: pass
with warnings.catch_warnings():
warnings.filterwarnings("ignore",category=DeprecationWarning)
# Python Runtime Services