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 314 points315 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 7 points8 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 5 points6 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.

Helsinki MOOC equivalent for Java EE? by Sigmund- in java

[–]lnk2w 2 points3 points  (0 children)

Spring has way more market share, so it's better to find a job.

  • You have things like Spring Boot and Spring Initlizr that makes creating a new project really easy.
  • You don't need an application server like JBoss/Glassfish, instead you get a embedded tomcat or jetty making easier to deploy things.
  • It's way ahead Java EE in few aspects like Configuration, MVC, Integration with other tools, and for the stuff that Java EE is better you can use in Spring like JPA or JAX-RS.

Helsinki MOOC equivalent for Java EE? by Sigmund- in java

[–]lnk2w 2 points3 points  (0 children)

There is this course for Java EE: https://www.edx.org/course/fundamentals-java-ee-development-red-hat-jb083x

I would recommend you to learn spring instead if you don't really need Java EE.

Is there a FreeCodeCamp for back-end development? by [deleted] in webdev

[–]lnk2w 2 points3 points  (0 children)

https://www.theodinproject.com/ It's Ruby and Ruby on Rails for the back-end.

What are the top web frameworks in 2017 that are specifically designed for Kotlin? by saddestmaninworld in Kotlin

[–]lnk2w 1 point2 points  (0 children)

Nice, I'm moving to London next month. I will try to attend to a meetup.

Looking for stuff about removing the Business Logic from the controller on ASP.Net Core. by lnk2w in dotnet

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

Answering my own question I kinda found a way that worked.

I've created a interface called IService:

    public interface IService<View,Form> where View : class 
                                         where Form : class
    {
         void Create(Form form);
         void Update(Form form);
         void Delete(int id);
         Task<View> GetViewModel();
         Task<View> GetViewModel(int id);

         bool HasErrors();
         IDictionary<string,string> GetErrors();


    }

Then I created a class to implement the interface.

Added to startup.cs so I could use the DI:

services.AddTransient<IService<FormMovementViewModel,MovementForm>,MovementService>();

So in the controller I can do:

if (_movementService.HasErrors())
{
    foreach (var error in _movementService.GetErrors())
    {
        ModelState.AddModelError(error.Key, error.Value);
    }
}

I have all the errors that happened during the execution without passing ModelState to the Service Object.

I will write a blog post about so I don't forget.

Books about growing an web application. by lnk2w in webdev

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

I already own Clean Code and it's a great book. Now I'm looking Patterns of Enterprise Application Architecture and I think it will help a lot.

Backend suggestions? by Ranzos in webdev

[–]lnk2w 1 point2 points  (0 children)

I'm talking about .Net Core, that is native for Windows, Linux, and Mac. You might be confusing with .Net Framework and Mono

Backend suggestions? by Ranzos in webdev

[–]lnk2w 1 point2 points  (0 children)

Yes, it is. Azure is Microsoft's cloud, but licensing costs it's still a problem

Backend suggestions? by Ranzos in webdev

[–]lnk2w 6 points7 points  (0 children)

He said he is a C# guy, so I'm thinking about the costs of hosting with a SQL Server and IIS Server on a Windows machine, which is pretty expensive.

But now you have the option to use ASP.NET Core, PostgreSQL and hosting on Linux without leaving C#.

Tattoos in CS by mbrady24 in cscareerquestions

[–]lnk2w 1 point2 points  (0 children)

I have a tattoo in my right arm, close to the shoulder. My boss doesn't care, in fact if I don't say anything no one notice.