Skip to content

Instantly share code, notes, and snippets.

View WajahatAliAbid's full-sized avatar

Wajahat Ali Abid WajahatAliAbid

View GitHub Profile
@ghalib5000
ghalib5000 / keyboard shortcuts.md
Last active July 30, 2020 07:17
a list of handy keyboard shortcuts

Basic Commands

CTRL+A. . . . . . . . . . . . . . . . . Select All

CTRL+C. . . . . . . . . . . . . . . . . Copy

CTRL+X. . . . . . . . . . . . . . . . . Cut

CTRL+V. . . . . . . . . . . . . . . . . Paste

CTRL+Z. . . . . . . . . . . . . . . . . Undo

@EikeDehling
EikeDehling / abusehub-reindex.py
Created September 8, 2017 08:33
Python script to reindex elasticsearch data to monthly indices
#!bin/python
from elasticsearch import Elasticsearch
from datetime import datetime
import time
es = Elasticsearch()
indices_state = es.cluster.state()['metadata']['indices']