Skip to content

Instantly share code, notes, and snippets.

View ndgo's full-sized avatar
👨‍💻
I may be slow to respond.

Maxim ndgo

👨‍💻
I may be slow to respond.
  • Moscow
View GitHub Profile
@aeilers
aeilers / Hive_Pattern-Stack.md
Last active December 11, 2019 07:19
Hive Pattern/Stack

Hive Pattern/Stack

The Hive Pattern is a proven theory to redefine enterprise level architecture based on Command Query Responsibility Segregation (CQRS), Event Sourcing (ES), unified transaction logs, and microservices patterns.

Goals of the Hive Pattern:

  • define a horizontally scalable, high performing, fault tolerant solution for enterprise architecture
  • remove boilerplate application logic so engineers can focus on solving enterprise challenges
  • improve operational efficiencies through specialization and micro implementations
  • minimize the depth of n-tier architecture

The Hive Stack is an open source, enterprise application stack in the spirit of LAMP, MEAN, and other open source application stacks that proves the Hive Pattern. The intent is to provide a standardized set of services and storage solutions as a base set of tools to solve enterprise challenges.

@aviskase
aviskase / Postman.desktop
Last active November 21, 2023 20:56
Install Postman
[Desktop Entry]
Encoding=UTF-8
Name=Postman
Exec=postman
Icon=/home/USERNAME/Postman/app/resources/app/assets/icon.png
Terminal=false
Type=Application
Categories=Development;

top (the UNIX process inspector) cheat sheet

This is a list of the most helpful keyboard commands I use within top.

The basics

h shows help on interactive commands. Also see the top manual page

q to quit the program.

@jonashackt
jonashackt / bash
Last active December 1, 2021 01:45
Remote debugging Spring Boot
### java -jar
java -Xdebug -Xrunjdwp:transport=dt_socket,server=y,address=8001,suspend=y -jar target/cxf-boot-simple-0.0.1-SNAPSHOT.jar
### Maven
Debug Spring Boot app with Maven:
mvn spring-boot:run -Drun.jvmArguments="-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8001"
@aseering
aseering / ntlmdecoder.py
Last active July 5, 2024 09:22
NTLM auth-string decoder
#!/usr/bin/env python
## Decodes NTLM "Authenticate" HTTP-Header blobs.
## Reads the raw blob from stdin; prints out the contained metadata.
## Supports (auto-detects) Type 1, Type 2, and Type 3 messages.
## Based on the excellent protocol description from:
## <http://davenport.sourceforge.net/ntlm.html>
## with additional detail subsequently added from the official protocol spec:
## <http://msdn.microsoft.com/en-us/library/cc236621.aspx>
##