Skip to content

Instantly share code, notes, and snippets.

View steelx's full-sized avatar
🎮
GameDev by night

Ajinkya Borade steelx

🎮
GameDev by night
View GitHub Profile
@steelx
steelx / remove env file from git
Created January 29, 2021 05:41 — forked from gjerokrsteski/remove env file from git forever
remove env file from git history
echo '.env' >> .gitignore
git rm -r --cached .env
git add .gitignore
git commit -m 'untracking .env'
git push origin master
@steelx
steelx / main.cpp
Created April 21, 2021 10:14
CS:GO C++ ESP
// GDI+ ESP
#include "pch.h"
#include "Offsets.h"
#include <iostream>
#include <Windows.h>
#include <TlHelp32.h>
/* SexOffenderSally helped code a lot/most of this with me, a long time friend! Give him a <3 on discord
Make sure character set is 'Multi-Byte' in project settings! And game must be windowed fullscreen.
Updated offsets: https://github.com/frk1/hazedumper/blob/master/csgo.cs */
@steelx
steelx / .gitconfig
Created July 5, 2021 05:34
Use Webstorm as diff and merge tool in Vscode
[user]
name = Ajinkya
email = ajinkyab1987@gmail.com
[core]
autocrlf = input
[url "git@github.com:"]
insteadOf = https://github.com/
[diff]
tool = webstorm
[difftool "webstorm"]
@steelx
steelx / ajinkya.omp.json
Last active April 21, 2022 15:42
windows terminal oh-my-posh
{
"$schema": "https://raw.githubusercontent.com/JanDeDobbeleer/oh-my-posh/main/themes/schema.json",
"final_space": false,
"osc99": true,
"blocks": [
{
"type": "prompt",
"alignment": "left",
"segments": [
{
@steelx
steelx / typedi-demo.spec.ts
Created February 14, 2022 10:36
Type-di demo
import 'reflect-metadata';
import {Container, Inject, Service} from "typedi";
describe('typedi demo', () => {
it('should work', async () => {
const query = () => 'hello from query';
@Service()
class Repository {
@steelx
steelx / install.md
Created April 29, 2022 05:35
Install ZSH on Windows via Git bash + Terminal
@steelx
steelx / .ideavimrc
Created May 13, 2022 05:02 — forked from AlexPl292/.ideavimrc
My `~/.ideavimrc` file
let mapleader=" "
""" Plugins --------------------------------
set surround
set multiple-cursors
set commentary
set argtextobj
set easymotion
set textobj-entire
set ReplaceWithRegister