Skip to content

Instantly share code, notes, and snippets.

View abhishekshree's full-sized avatar
Coffee?

Abhishek Shree abhishekshree

Coffee?
View GitHub Profile
@abhishekshree
abhishekshree / CLAUDE.md
Created February 21, 2026 15:23 — forked from minimaxir/CLAUDE.md
Rust CLAUDE.md (20260101)

Agent Guidelines for Rust Code Quality

This document provides guidelines for maintaining high-quality Rust code. These rules MUST be followed by all AI coding agents and contributors.

Your Core Principles

All code you write MUST be fully optimized.

"Fully optimized" includes:

from datetime import datetime, timedelta
import json
from airflow import DAG
import requests
from airflow.hooks.S3_hook import S3Hook
from airflow.models import Variable
from airflow.operators.bash_operator import BashOperator
from airflow.operators.dummy_operator import DummyOperator
from airflow.operators.python_operator import PythonOperator

Keybase proof

I hereby claim:

  • I am abhishekshree on github.
  • I am shree_e (https://keybase.io/shree_e) on keybase.
  • I have a public key ASBYNeimzd8PS7Ah72kvLwsYmLEs0zj3e2fDMgxCiagHAwo

To claim this, I am signing this object:

#include <bits/stdc++.h>
using namespace std;
// SKA data entity
class Data {
private:
string name;
int size;
int rate;
@abhishekshree
abhishekshree / Template.cpp
Last active December 11, 2021 16:36
My competitive template.
#pragma GCC optimize("Ofast")
#pragma GCC target("avx,avx2,fma")
#pragma GCC optimization ("unroll-loops")
#pragma GCC optimize ("-ffloat-store")
#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
#define pbds \
@abhishekshree
abhishekshree / .vimrc
Last active April 30, 2021 17:29
This is my basic .vimrc
syntax on
set virtualedit+=onemore
set noerrorbells
set signcolumn=yes
set noswapfile
set nobackup
set scrolloff=8
set tabstop=4 softtabstop=4
set shiftwidth=4
set expandtab