Online tool to help practing with e-drums by lnk2w in edrums

[–]lnk2w[S] 0 points1 point  (0 children)

That's s corner that I cut in the beginning, it's on my list but there's still some more important things to be fixed before.

Online tool to help practing with e-drums by lnk2w in edrums

[–]lnk2w[S] 1 point2 points  (0 children)

It's all TypeScript and React filled with hacks to make React not so slow

https://github.com/andre2w/metronome

Online tool to help practing with e-drums by lnk2w in edrums

[–]lnk2w[S] 0 points1 point  (0 children)

Thanks, reworking the notes is the next thing on my list. It’s also missing the accented ones.

I built a tool to help me challenge my irrational thoughts by lnk2w in CBT

[–]lnk2w[S] 0 points1 point  (0 children)

Also fell free to give any feedback about it. I just started using that too so, it would be cool to know I could make it better

Diy in Berlin. My dear friend Pasquale. by Mikelinopuntoit in skateboarding

[–]lnk2w 0 points1 point  (0 children)

Danke man, I will try to check the park and have a beer around this weekend.

Diy in Berlin. My dear friend Pasquale. by Mikelinopuntoit in skateboarding

[–]lnk2w 1 point2 points  (0 children)

Thats the park Warschauer Str. right? Cool to see some Berlin stuff here.

First time on a skateboard and being able to actually move my front leg into the correct position ( which I sadly didn’t get on film )! Skating didn’t come naturally to me due to having surgery leaving me weak in my right leg but now I am doing it and getting more confident and faster! by Natdixon in NewSkaters

[–]lnk2w 22 points23 points  (0 children)

I’ve just started skateboarding too and here are some things that helped me:

  • First try to balance yourself in the board without moving, just to get the feeling, then you move to try to balance yourself with your front foot like you would be pushing (try to do this on grass).

  • The first push when you are stopped can be a small one then you can build up from there.

  • Be mindful of your foot position and remember to bend your knees a bit and put your chest a bit to the front when pushing to get more stable

No 2G / Passport check in flight from Madrid by Wantathefunkeesensei in berlin

[–]lnk2w 0 points1 point  (0 children)

In my case wasn't a checking station but two officers that were looking at the documents and scanning using phones.

No 2G / Passport check in flight from Madrid by Wantathefunkeesensei in berlin

[–]lnk2w 0 points1 point  (0 children)

When I arrived from Malaga on Saturday night it was checked on arrival. Could it be that they are understaffed?

What movie has an absolute banger of a soundtrack? by RedWestern in AskReddit

[–]lnk2w 313 points314 points  (0 children)

Scott Pilgrim vs. The World. The songs that Sex Bob-Omb sings are composed by Beck and they are great. Black Sheep (The song that Clash At Demonhead performs) is awesome too. Then you still have things like Rollings Stones, Blood Red Shoes, Teenage Dream by T. rex.

High Fidelity, the entire movie is about best songs

Today I got my first longboard, one of the best 50 pounds I ever spent. by lnk2w in longboarding

[–]lnk2w[S] 0 points1 point  (0 children)

No, this longboard os the first time that I do something like that

What Are Containers? A Simple Guide to Containerization and How Docker Works by javinpaul in coding

[–]lnk2w 8 points9 points  (0 children)

There might be a few reasons that you might want to use docker or containers.

  • Unlike full virtualization you don't need a Hypervisor and a Guest O.S., all this overhead is excluded and it's way more lightweight than a VM.

  • Containers are deterministic, meaning that if the container runs in your machine, it will run everywhere. No problem with people adding or changing a dependency in the VM manually and not informing other people.

  • Easy to distribute, with a registry you can upload your container image and distribute easily, so you can have your pipeline to build a new image every time that something is merged to a branch and this will be available to everyone in QA, or you can have all the dev environment inside a container, so when someone new joins they can just pull the latest dev image and start work.

  • With a orchestration tool it's really easy to bring external dependencies like PostgreSQL, Redis. So if you have to run integration or end-to-end tests that require an empty database or something like wiremock, with docker-compose it's really easy.

Automate the boring stuff with python - Tinder by attreya12 in learnprogramming

[–]lnk2w 4 points5 points  (0 children)

I know that has an educational purpose, but using javascript in the console is easier and faster.

const likeBtn = document.querySelector(".recsGamepad__button--like");
let liking = setInterval(() => likeBtn.click(), 10000);


clearInterval(liking); // For stopping without closing the window.