Skip to content

Instantly share code, notes, and snippets.

@andineck
andineck / map.ts
Created April 10, 2021 13:07
typescript
interface Option {
key: string;
label: string;
}
const results = [
{ k: "1", l: 1 },
{ k: "2", l: 2 },
];
@andineck
andineck / random_git_notes.sh
Last active April 17, 2021 09:22
random git notes
http://git-scm.com/
http://git-scm.com/book/en/Git-Branching-Basic-Branching-and-Merging
http://ndpsoftware.com/git-cheatsheet.html
https://help.github.com/articles/fork-a-repo
git status
git clean
@andineck
andineck / 0-README.md
Last active September 21, 2021 00:24
retropie bluez sixaxis shanwan PS3 controller bluetooth connection

shawnwan ps3 controller bluetooth connection problem fix

if your ps3 controller just vibrates when connecting to the retropie, or when your ps3 controller does not connect via bluetooth, this writedown might help you.

Since no exact description did work for me, I decided to write it down, what I did based on other descriptions, in order to get it to work.

links

@andineck
andineck / README.md
Last active January 20, 2024 21:20
Authentication and Authorization Concepts for MicroServices

auth with microservices

Authorization and Authentication are hard. when you only have to implement them once (as you do within a monolith) instead of over and over again, it makes the developer happy :-), and maybe leads to less implementation failures.

When you have a bunch of microservices, this is something that has to be considered.

Implement it once or in every microservice, or something in between?