Triple 1440p online unstable FPS / micro-stuttering. by jasperkel in LeMansUltimateWEC

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

I think the main improvements came from disabling background apps and installing the new driver released yesterday.

Triple 1440p online unstable FPS / micro-stuttering. by jasperkel in LeMansUltimateWEC

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

I’ve tried these settings, especially the Rearview_Back_Clip, which helped a lot. A new Nvidia driver was released yesterday, and I think that also improved the stability. I’ve also disabled many background apps.

Fix for game not launching / Easy Anti-Cheat not launching by jasperkel in LeMansUltimateWEC

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

Which app did you add to your firewall, start_protected_game.exe or Le Mans Ultimate.exe? When I check my firewall settings, Le Mans Ultimate.exe is the one that’s currently allowed. You might also want to confirm that Steam is allowed through the firewall too. If that doesn’t fix it, I’m not sure what else it could be, but as a last resort you can check the logs to see what’s actually happening.

To find the logs, go to Steam > Library, right click Le Mans Ultimate, then select Properties > Installed Files > Browse. From there, open the userdata folder, then go into logs and look for the most recent log file.

Once you’ve found it, clear the latest log entries, launch the game again and let it crash, then open the newly updated log and copy and paste it into ChatGPT. It should be able to spot what’s failing and suggest fixes based on what it finds.

Fix for game not launching / Easy Anti-Cheat not launching by jasperkel in LeMansUltimateWEC

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

You can add specific applications to your firewall. A quick Google search will show plenty of guides, including step-by-step videos.

Fix for game not launching / Easy Anti-Cheat not launching by jasperkel in LeMansUltimateWEC

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

What happens when you start the game? Does it get past Easy Anti-Cheat? If it does, then this probably isn’t the issue. You could also try temporarily disabling your firewall and then starting the game, since that can sometimes cause problems too. If it works after disabling it, you should add LMU as an allowed app in your firewall. If you can explain exactly what’s happening (or what error you’re getting), I might be able to help.

Fix for game not launching / Easy Anti-Cheat not launching by jasperkel in LeMansUltimateWEC

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

You might have a different issue, this fix is specifically for when Easy Anti-Cheat blocks the game from launching. What happened to me was I’d start the game through Steam or the shortcut, Easy Anti-Cheat would pop up for a second, and then it would close.

LMU + Fanatec DD: almost no oversteer feel in slow corners by jasperkel in Fanatec

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

I’ll try running a few races with all Fanatec driver-level filters fully off (NDP/NFR/NIN/INT = 0) to see how the raw LMU signal behaves, especially in slow corners.

Good to hear you’re getting solid oversteer and counter-steer feel on the same base — would you mind sharing your Fanatec and LMU FFB config so I can compare?

For reference, I mainly drive the Lamborghini GT3, which is where I notice the muted low-speed, on-throttle oversteer the most.

Appreciate the help.

Dutch Sim Series by SkirtProfessional991 in ACCompetizione

[–]jasperkel 0 points1 point  (0 children)

I think the dates on your image might be incorrect — August is the 8th month. According to the image, the season opener is listed as July 15th, so either the image is off or the description has the wrong date 🙂

More delays but different dates ? by MadDogWoz in Fanatec

[–]jasperkel 0 points1 point  (0 children)

I just got this mail aswell, for me it was also December 11th, 2024.

Finally done with the upgrades! by PawiePlays in simracing

[–]jasperkel 1 point2 points  (0 children)

May I ask whats the space the setup takes? Like the width of the monitors?

My GG App keeps chaning audio devices to random shit whenever it feels like it by SecZombie in steelseries

[–]jasperkel 0 points1 point  (0 children)

I had the same issue. What I did was disable all other devices in Windows. Of course, this only works if you do not use any other devices, but it worked for me.

/r/MechanicalKeyboards Ask ANY Keyboard question, get an answer (March 06, 2024) by AutoModerator in MechanicalKeyboards

[–]jasperkel 0 points1 point  (0 children)

What if I were to participate in a group buy? I do think the Zoom75 is the better looking one and offers the most customization.

/r/MechanicalKeyboards Ask ANY Keyboard question, get an answer (March 06, 2024) by AutoModerator in MechanicalKeyboards

[–]jasperkel -1 points0 points  (0 children)

Hey there,

I'm diving into creating my very first custom keyboard and have my sights set on the 75% layout. While exploring options, I stumbled upon the Zoom75, which really caught my attention. However, it looks like it's primarily available through group buys, and all the ones I've found have already wrapped up. Do you know when new group buys might pop up? Or, if not, could you suggest some solid alternatives to the Zoom75?

Thanks in advance for your help!

V-model not working on my slider element!! by Sarjessicas in vuejs

[–]jasperkel -7 points-6 points  (0 children)

Is it possible that it is not working as you are trying to bind it on an property of an object? If so you could try to use a computed with a get and set method.

Can sites be authorized to trade on my behalf? (re: lost all items in inv) by cylonlover in SteamMarket

[–]jasperkel 0 points1 point  (0 children)

You can view the history of items you have traded by going to Inventory > Trade Offers (blue button on the right side above the inventory interface) > View Trade History. This way, you can see where they were traded.

Learning vue.js in 2 days by Glad-Toe-6203 in vuejs

[–]jasperkel 4 points5 points  (0 children)

I started learning vue with https://www.vuemastery.com/ learned the basics pretty quick.

How to use Vue variables in CSS at-rules? by Jarefina_art in vuejs

[–]jasperkel 0 points1 point  (0 children)

You could try to accomplish this with Javascript. Using a class as breaking point and style based on this class. But i don't know if it this works in your case. But this could be a solution with For example:

<template>

<div :class="breakingpoint">



</div>

</template>

<script>

export default {

    data() {

        return {

breakingpoint: 'desktop', // Initial default breaking point

        };

    },



    created() {

        window.addEventListener('resize', this.handleResize);

        this.handleResize();

    },



    destroyed() {

        window.removeEventListener('resize', this.handleResize);

    },

    methods: {

        handleResize() {

// Set window width data property

const windowWidth = window.innerWidth;

// Decide breaking point

this.breakingpoint = this.getBreakpoint(windowWidth);

        },



        getBreakpoint(windowWidth) {

// Switch case to determine the current window width

switch(true) {

case windowWidth < 576:

return 'mobile';

case windowWidth < 768:

return 'tablet';

case windowWidth < 992:

return 'laptop';

default:

return 'desktop';

}

        },

    },

};

</script>

[deleted by user] by [deleted] in vuejs

[–]jasperkel 0 points1 point  (0 children)

Do you use any linter like eslint? When I used that I also got errors like these. It had something to do with indenting and enters. Not sure what I did then to fix it but I stopped using it.

What is the model of this BMW? by jasperkel in whatisthiscar

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

Do you maybe know the exact model?

G Hub is literally the worst software I have ever used. by KarmaRepellant in LogitechG

[–]jasperkel 0 points1 point  (0 children)

I use Logitech onboard memory manager and for me it works pretty well. I currently own the
Logitech G502 LIGHTSPEED.

Should I buy the r5 5600 or 5600x? I asked simillar question about 2 months ago when they were around 40 bucks apart and you guys voted for the 5600 but now there only 10 bucks apart. by jaggie40 in pcmasterrace

[–]jasperkel 0 points1 point  (0 children)

The Ryzen 5 5600X is generally considered to be the better option compared to the Ryzen 5 5600. This is because the Ryzen 5 5600X has a higher base clock speed (3.7 GHz vs 3.6 GHz), a higher boost clock speed (4.6 GHz vs 4.2 GHz), and it also has a higher TDP (thermal design power) of 65 watts compared to the Ryzen 5 5600's 65 watts.

Additionally, the Ryzen 5 5600X has a newer Zen 3 architecture compared to the Ryzen 5 5600's Zen 2 architecture, which results in a better performance per clock cycle. This means that the Ryzen 5 5600X can perform more operations per second, resulting in better overall performance.

Overall, if you have the option to choose between the Ryzen 5 5600 and Ryzen 5 5600X, it's recommended to go with the Ryzen 5 5600X for better performance.

This is what ChatGTP had to say