Skip to content

Instantly share code, notes, and snippets.

@andineck
andineck / 0_readme.md
Last active May 8, 2018 03:47
database messaging distributed kafka

database, messaging, distributed system, kafka

@andineck
andineck / assemble.js
Created May 25, 2016 07:18
assemble javascript template strings
// code from http://stackoverflow.com/questions/29771597/how-can-i-construct-a-template-string-from-a-regular-string
// + handling unlimited arguments
function assemble(literal, params) {
var args = [].slice.apply(arguments)
args.shift()
return new Function(args, "return `"+literal+"`")
}
@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 / 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 },
];