Skip to content

Instantly share code, notes, and snippets.

View ruddra's full-sized avatar
🛰️
Drifting through the space ...

Arnab Kumar Shil ruddra

🛰️
Drifting through the space ...
View GitHub Profile
@ruddra
ruddra / Salary Negociation techniques.txt
Last active March 2, 2022 13:12
Salary Negociation techniques
Pre Interview:
1. Ask to recruiter about their salary range.
2. If it does not match, then let them know about your range.
Durning Interview:
1. Do not share salary expectation other than HR.
2. Dodge the the question.
Before Offer:
@ruddra
ruddra / alacritty.yml
Last active April 10, 2023 13:55
Alacritty configuration
# Configuration for Alacritty, the GPU enhanced terminal emulator.
# Setup term for programs to be able to use it
env:
TERM: xterm-256color-italic # adding this because of italic support: https://apple.stackexchange.com/questions/266333/how-to-show-italic-in-vim-in-iterm2
window:
# Spread additional padding evenly around the terminal content.
dynamic_padding: false
@ruddra
ruddra / basic commands
Created August 1, 2022 13:53
Git commands
# Git fetch/reset
git fetch origin
git reset --hard origin/master
# Git push
git push origin master
# Git rebase
git rebase origin/master
@ruddra
ruddra / docker-compose.yml
Created November 24, 2023 15:50
Kong gRPC
version: "3"
networks:
kong-net:
driver: bridge
services:
kong-database:
image: postgres:9.6
restart: always