Skip to content

Instantly share code, notes, and snippets.

View albihasani94's full-sized avatar

Albin Hasani albihasani94

View GitHub Profile
@stettix
stettix / things-i-believe.md
Last active March 20, 2024 17:45
Things I believe

Things I believe

This is a collection of the things I believe about software development. I have worked for years building backend and data processing systems, so read the below within that context.

Agree? Disagree? Feel free to let me know at @JanStette. See also my blog at www.janvsmachine.net.

Fundamentals

Keep it simple, stupid. You ain't gonna need it.

@xeraa
xeraa / .env
Last active March 14, 2020 08:55
Minimal 3 node Elasticsearch + Kibana setup
ELASTIC_VERSION=5.6.9
#ELASTIC_VERSION=6.3.0
@mcupak
mcupak / voxxed-athens.jsh
Created June 1, 2018 11:28
JShell transcript from the talk Writing clean code with Java 9+ at VoxxedDays Athens 2018.
1+1
int x = 1+1
System.out.println(x)
Thread.sleep(2000)
/vars
/methods
/types
/list
/l
/help
@cgswong
cgswong / logstash.conf
Last active June 24, 2021 18:08
Logstash configuration file.
# #####################################################################
# DESC: Logstash configuration file. Typically forwarding logs to
# Elasticsearch instance.
# #####################################################################
# Where to get input
input {
# Get input from standard input device/interface
stdin {
type => "stdin-type"
@lordofthelake
lordofthelake / .gitignore
Created June 21, 2013 18:39
.gitignore for Maven, Intellij, Eclipse
# Eclipse
.classpath
.project
.settings/
# Intellij
.idea/
*.iml
*.iws