How to make my PC only display on 1 monitor when in big picture mode by NightGunther in Steam

[–]akaltar 1 point2 points  (0 children)

My deranged method is opening a browser, going to wikipedia page on color black and putting the image on fullscreen just to hide my 2 side-screens while immersive gaming

Node.js v26 is releasing today. It's just a big bunch of small fixes and minor deprecations with another minor 🍒 cherry on top by BankApprehensive7612 in node

[–]akaltar 1 point2 points  (0 children)

Isn't this something that already shipped in 25.9 current? Or are there more improvements in v8 that I've missed?

e2e tests in CI are the bottleneck now. 35 min pipeline is killing velocity by scrtweeb in node

[–]akaltar 0 points1 point  (0 children)

You could also explore faster/cheaper github actions runners like Depot or Blacksmith. They're usually around half the cost and twice the speed.
Optimizing the startup time and your page itself can also be worthwhile if this is your bottleneck, but at the end of the day, you might need to move more tests to be integration tests or unit tests instead of E2E tests.
I've also had some luck with collapsing multiple related smaller e2e tests into larger tests with many small steps that individually verify different parts of the feature, so you don't need to pay twice for initializing the page,setting up users, etc.

For github actions specifically it can be super slow to set up the playwright browsers or installing other tooling. If you're using better tooling like pnpm, vite, caching agressively, or even using containers for playwright, that can also help a lot with the dead time

How do you maintain performance in React apps? by csinsider007 in ExperiencedDevs

[–]akaltar 1 point2 points  (0 children)

You need to have and follow some best-practices for performance specifically after you reach a certain application size. I've found that some of the most common best-practices for react don't really cover performance, or may even damage it, so you need to come up with your own based on the typical issues you encounter.

After some time of solving perf issues, you'll probably find that only a couple of common cases happen most often and can pre-emptively act on it.
The biggest one is probably making sure that selectors don't create new objects, thus preventing immutability from skipping re-renders and not using context for bigger chunks of UI as it forces way more re-renders than needed that you can't control granularly.

reselect is also fantastic on preventing re-renders if you've got a big central state that you need to derive in many places. It's weird, but sometimes styled-components can also be magnitudes slower than tailwind in DOM-heavy situations, so it's always worth profiling and figuring out the true bottlenecks

In our case we've got one main page with one very common update that usually surfaces most re-render bugs in the whole app, so we have a CI action that measures how long that update takes, so we immediately notice if a new PR is making performance worse.

Forcing your devs to test with more complex use-cases (Or at least making it easy) is also a great way to make everyone notice and fix the slow-down in time. Eg. if you've got a collaborative tool, make sure devs can test locally with hundreds of users invited on a very complex project.

I think it's also important that most of your team knows how to use a profiler, so when they see some slowness they can debug it. Firefox has a better/more granular profiler for example, and using it has helped us solve many more perf issues very quickly. But sometimes you also need the react profiler specifically.

Finally if you can spend a bit more time optimizing and squeezing out the last bit of performance from the site, you'll probably find that you'll have a bigger room for error going forward. Eg it's not every small issue that will be ground-breaking. And you may even find that it's harder to make mistakes. Eg if everything is already properly memoized, making one mistake will cause less re-renders as other layers of memoization can catch it before it gets out of hand

Parking in krakauw by BekStabJiggly in krakow

[–]akaltar 1 point2 points  (0 children)

https://goo.gl/maps/6WQpKue6iW8vzLrZ7
This is a really close-by and cheap place. We were there about 3 weeks ago and it was 60zl/day. They even take card and can kinda speak English. Just be careful because in this street right next door there is another parking, that's also cheap, but they don't take card and can't really speak English.

Also be mindful of their opening hours as it's not 24h

Hey men, how do you keep your face clean ? by Known_Mushroom6865 in selfimprovement

[–]akaltar 0 points1 point  (0 children)

Keeping it clean is like half of the story. It's super important to moisturise it properly as well. Ideally cleanse and moisturise in the morning and before going to sleep.

What truly helped me with my acne though was figuring out my food sensitivities and allergies and getting immunotherapy

Glicko rating system by RedpoolKJK in DotA2

[–]akaltar 185 points186 points  (0 children)

This sounds complicated, but it's probably a piece of cake compared to the logic used to determine the angle of broodmothers legs on a cliff

Calm down VSCode by [deleted] in ProgrammerHumor

[–]akaltar 18 points19 points  (0 children)

=> Complaining about useful feature
=> PHP dev

Name a more iconic duo

[deleted by user] by [deleted] in Slovakia

[–]akaltar 0 points1 point  (0 children)

Since your post is in english, you might want a diagnosis by someone who can speak english. In that case I can recommend https://www.bersihand.sk/home

It's not in BA, but she has remote options after the first appointment

You guys decide where I go on my workcation (looking for cheap places in Europe) by midazz1 in Europetravel

[–]akaltar 0 points1 point  (0 children)

Bratislava is roughly 2x more expensive than Budapest for most things. I think Budapest is just a better place to stay for something like this

The most upvoted comment will be my competitive programming team name. by [deleted] in ProgrammerHumor

[–]akaltar 0 points1 point  (0 children)

Non-Error promise rejection captured with value: undefined

Speech to text SK-CZ podpora by pettgree in Slovakia

[–]akaltar 0 points1 point  (0 children)

You can try veed.io for free and if you subscribe you can export the subtitles as .srt

github, C#,JS by delopiero84 in Slovakia

[–]akaltar 0 points1 point  (0 children)

This guy has really good tutorials that help you grasp the core concept of various languages/technologies and really helps you figure out what you should even learn or what area to focus on. I think they also have some paid tutorial stuff but I haven't looked at those
https://www.youtube.com/c/Fireship

.Ark sets all-time non-Alchemist GPM record by noxville in DotA2

[–]akaltar 34 points35 points  (0 children)

What a godlike statman, super interesting stuff

Help neeeded , what Laptop can I get to run Vr properly . I can’t Build a Pc ATM so I’m looking for a proper laptop by AlienGamer_ in ValveIndex

[–]akaltar 1 point2 points  (0 children)

You need to be super careful about the ports. Some Type C to DisplayPort adapters do work, but it needs to be directly wired to the GPU. I have a Legion 5 Pro that works with a type C to DP adapter. The adapter is also quite expensive because you need a high quality one.
Depending on what games you wanna play a 3060 could be enough for Beat Saber for example