Skip to content

Instantly share code, notes, and snippets.

View azizoid's full-sized avatar
💭
Cute

Aziz azizoid

💭
Cute
View GitHub Profile
name: Build and Deploy
on:
push:
branches:
- main
env:
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
HOST: ${{ secrets.HOST }}
@azizoid
azizoid / Link.tsx
Created November 27, 2024 01:31
A small hack to fix the Nextjs "prefetch everything by default" problem
@azizoid
azizoid / coordinates.json
Last active November 27, 2023 11:59
Azərbaycan şəhərlərinin koordinatları
[
{
"id": 1,
"city": "Bakı",
"lat": 40.4093,
"lng": 49.8671
},
{
"id": 2,
"city": "Sumqayıt",
@azizoid
azizoid / .gitconfig
Last active May 18, 2025 18:24
git shortcuts
[alias]
co = checkout
br = branch
st = status
cp = cherry-pick
lg = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit
gr = log --all --decorate --oneline --graph
cleanup = "!git fetch -p && git branch -vv | awk '/: gone]/{print $1}' | xargs -r git branch -D"
last = log -1 HEAD --stat
stats = log --stat --oneline