Skip to content

Instantly share code, notes, and snippets.

View gokaykucuk's full-sized avatar
🎯
Focus time

Serdar Gokay Kucuk gokaykucuk

🎯
Focus time
View GitHub Profile
@gokaykucuk
gokaykucuk / life-in-terminal.md
Last active May 13, 2025 16:46 — forked from anotheruiguy/life-in-terminal.md
Life inside Terminal
Terminalden Korkmana Gerek Yok!

Eğer bunu okuyorsanız, aşırı ısrarcı geliştirici arkadaşlarınızdan/meslektaşlarınızdan biri tarafından Mac'inizdeki Terminal adlı bir şeyle tanıştırıldınız demektir.

Sanırım konuşma şöyle bir şeydi?

Siz: O dosyaya nasıl ulaşabilirim?

Onlar: Sadece Terminal'i aç ve sonra $ cd ~/Projects/boilerplate/ && vi .gitignore >

@gokaykucuk
gokaykucuk / largestFiles.py
Created August 16, 2021 18:32 — forked from nk9/largestFiles.py
Python script to find the largest files in a git repository.
#!/usr/bin/python
# -*- coding: utf-8 -*-
# Python script to find the largest files in a git repository.
# The general method is based on the script in this blog post:
# http://stubbisms.wordpress.com/2009/07/10/git-script-to-show-largest-pack-objects-and-trim-your-waist-line/
#
# The above script worked for me, but was very slow on my 11GB repository. This version has a bunch
# of changes to speed things up to a more reasonable time. It takes less than a minute on repos with 250K objects.
#