Skip to content

Instantly share code, notes, and snippets.

@jforcada
jforcada / docker-compose.yml
Created January 12, 2020 21:19
Elasticsearch & Kibana local docker environment
version: '3'
services:
elasticsearch:
image: 'elasticsearch:7.5.1'
ports:
- 9200:9200
- 9300:9300
environment:
- discovery.type=single-node
volumes:

Keybase proof

I hereby claim:

  • I am jforcada on github.
  • I am jforcada (https://keybase.io/jforcada) on keybase.
  • I have a public key ASAC33Or2XeLfX0tikBCq2Rw40_7gTSVZ1cdDHtA958dVwo

To claim this, I am signing this object:

@jforcada
jforcada / largestFiles.py
Created February 1, 2018 17:24 — 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.
#