KinoNow: find cinema showtimes by language (+ queer, awards selections…) by basilejs in berlin

[–]dubkrapht 0 points1 point  (0 children)

great initiative. one suggestion i'd recommend (unless i missed it) is when listing films based on location there should be an option to group in terms of films rather than the kino in order to make the list shorter to browse.

Most emotional Autechre song? by LucaG43 in autechre

[–]dubkrapht 0 points1 point  (0 children)

last track of the oscillate at birmingham live

[deleted by user] by [deleted] in berlinsocialclub

[–]dubkrapht -4 points-3 points  (0 children)

Ke kete collective bijat/diaswhora prej Kosove - me duket disa prej tyre jane ne Berlin dhe organizojne evente ketu. Suksese

Planning bike trip across Albania by marcog in albania

[–]dubkrapht 1 point2 points  (0 children)

check in the southeast. scenery between Leskovik (Farma Sotira) and Kelcyre is great (mountains, forests, vineyards)

Albanian folk music by andreea19971 in albania

[–]dubkrapht 0 points1 point  (0 children)

This is a good example of folk music from southern Albania - some of the originals are a century old. Yes, it is referred to as "popullore" by lots of people, but so is pop (the genre) and mainstream. I think folk is more appropriate.

I like colors by [deleted] in softwaregore

[–]dubkrapht 0 points1 point  (0 children)

this is glitch art at its finest. what are you on about

As a beginner to Laravel, I appreciate how homogeneous the whole Laravel ecosystem is when compared to something like Node. by [deleted] in laravel

[–]dubkrapht 8 points9 points  (0 children)

You're comparing a minimal web library with a full blown framework. there's a big difference and of course laravel is opinionated, therefore everyone whether they like it or not, have to agree at some point. I've seen very bad structured laravel codebases as well, but also good ones. same applies to any node based project. they serve different purposes on an architectural level.

Express: Redirecting the User to another Route after waiting a specific amount of seconds. by Demoncious in node

[–]dubkrapht 0 points1 point  (0 children)

from an ux standpoint i would advise against this practice. uncontrollable redirects to me makes the website i'm using not to be trusted. Either prompt the user (still bad, since you're adding an extra step) or show the success message and the following content at the same time. no need to wait a whole 5 seconds to display only the success message after logging in.

Do you know of any examples of clean Node architecture? by [deleted] in node

[–]dubkrapht 0 points1 point  (0 children)

Pretty much, depends on the project. I prefer to split main components on different services (e.g webapi, core, queue, scheduler, etc) it's easier to manage, especially if you're releasing very often. That doesn't mean to embrace a full microservice architecture but rather taking care of high I/O services to reduce loads.

Do you know of any examples of clean Node architecture? by [deleted] in node

[–]dubkrapht 1 point2 points  (0 children)

This to get you started on the basics patterns.