Skip to content

Instantly share code, notes, and snippets.

@cheeaun
cheeaun / image-processing-services.md
Last active April 20, 2024 22:17
3rd-party image processing/manipulation/upscaling/enlarging services
@tomas-stefano
tomas-stefano / Capybara.md
Last active July 3, 2024 12:47
Capybara cheatsheet

Capybara Actions

# Anchor
click_link 'Save'

# Button
click_button 'awesome'

# Both above
@roscalabrin
roscalabrin / elasticsearch.md
Last active July 15, 2021 12:21
Elasticsearch basic definitions

Basic Concepts

  • Node - a server that stores data
  • Cluster - a collection of nodes
  • Index - collection of similar documents

Distributed Data

A shard is a subset of the index data.

Solves the problem where the size of an index exceeds the hardware limit of a single node.