Skip to content

Instantly share code, notes, and snippets.

View dalamber's full-sized avatar

Anton Shpakovsky dalamber

View GitHub Profile
@hmldd
hmldd / scroll.py
Last active October 6, 2023 14:59
Example of Elasticsearch scrolling using Python client
# coding:utf-8
from elasticsearch import Elasticsearch
import json
# Define config
host = "127.0.0.1"
port = 9200
timeout = 1000
index = "index"
@TSMMark
TSMMark / delete_local_branches.sh
Last active February 20, 2023 05:41
Delete local branches that don't exist on remote/origin !USE AT YOUR OWN RISK!
git fetch --all -p; git branch -vv | grep ": gone]" | awk '{ print $1 }' | xargs -r -n 1 git branch -D
!define MSVS_DIR "d:\MSVS2010"
;Request application privileges for Windows Vista, 7, 8
RequestExecutionLevel admin
...
Section "MyApp" MyApp