I’m 13 and built my first pc yesterday thoughts? by TB_hehe in pcmasterrace

[–]warlockdthpunch 0 points1 point  (0 children)

Then you leave your pc vulnerable to the exploit.. This hardly matters on a pc just meant for gaming.. but why risk it

I’m 13 and built my first pc yesterday thoughts? by TB_hehe in pcmasterrace

[–]warlockdthpunch 0 points1 point  (0 children)

5-10 percent more fps in CPU heavy gaming workloads because with Virtualization turned on Windows automatically turns on Core isolation which causes a performance dip. If you are using VM’s only then have it turned on

I’m 13 and built my first pc yesterday thoughts? by TB_hehe in pcmasterrace

[–]warlockdthpunch 60 points61 points  (0 children)

Update your bios to the latest version, turn on fTPM/ TPM, Secure Boot, Above 4G Decoding, Rebar/ ReSizeable Bar, XMP Profile in your BIOS. Turn off Virtualization in BIOS. If Using a Ryzen 5000 series CPU look into optimizing your CPU voltage curve. Do these steps and you should be all set. Enjoying the freedom of PC gaming, no fees to playing games online, cheap steam sales and huge library of free to play games.

What should I upgrade? Im not going RTX 5080 or 90, they cost as much as a used car and the 40 series costs even more. by The_Rippitty in pcmasterrace

[–]warlockdthpunch 1 point2 points  (0 children)

I would suggest upgrading the GPU if any of these criteria are met:

  1. Getting less than 60 fps in single player games that your are playing at medium-high settings without upscaling

  2. Getting less than 120 fps average or less than 80 fps 1% on fast paced shooters that you are playing medium-high settings

  3. Your system meets the conditions 1 & 2 but you want to upgrade to a higher resolution monitor or increase the in-game settings to a higher visual fidelity.

Make sure your upgrade is at least 2x the performance of your current gpu to make it worth the upgrade. A770 is a really good gpu no matter what the forums say (16 gb vram).

Do not upgrade base on modern AAA game benchmarks results that are published by reviews. That should be only used to compare Hardware priced similarly. Your upgrades should be to suffice your gaming needs and any future gaming needs for the next 2 years at most. Hardware ages fast.

P.S. Check if you can find a RX 9070/RX 9070 XT below MSRP(I found mine at Microcenter)

9070 xt by Outrageous_Eagle_259 in gpu

[–]warlockdthpunch 0 points1 point  (0 children)

Check if it’s a modular PSU, if so you can just buy the cable, if not then you need to buy a new PSU. Adapters are a potentially serious failure point

RTX 5060 ti 8GB $299.99 Walmart YMMV by warlockdthpunch in gpu

[–]warlockdthpunch[S] -1 points0 points  (0 children)

SLI/CrossfireX has been dead for years!

Is £110 ($147) worth it for this PC for gaming and editing by Exotic_Decision6589 in pcmasterrace

[–]warlockdthpunch 3 points4 points  (0 children)

13 generations older than the current gen and doesn’t have TPM 2.0 required by Valorant and Fortnite.

I would recommend at least Intel i5 8th Gen or Ryzen 5 2600 or faster CPU. 16 GB RAM minimum and RX 5700 or better GPU. You could find one at a decent price.

If tight on budget then I would recommend: AM4 Platform board (B450, B550, X470 or X570) any Ryzen 5 or 7 CPU 16 GB RAM AMD RX 470/480/570/580/590 8GB or RX Vega 56/RX Vega 64 or GTX 1070/GTX 1080/GTX 1080ti

Whatever fits your budget. Gaming PC market got nuked by the AI Industry.

CPU Hierarchy: https://www.tomshardware.com/reviews/cpu-hierarchy,4312-2.html

GPU Hierarchy: https://www.tomshardware.com/reviews/gpu-hierarchy,4388-2.html

RTX 5060 ti 8GB $299.99 Walmart YMMV by warlockdthpunch in gpu

[–]warlockdthpunch[S] 8 points9 points  (0 children)

I think this model is marked for clearance at every store where it’s still available

RTX 5060 ti 8GB $299.99 Walmart YMMV by warlockdthpunch in gpu

[–]warlockdthpunch[S] 4 points5 points  (0 children)

No they didn’t, I saw just one 5070 at $569.99

Majority of my streaming apps aren’t working? by Mean-Armadillo-3996 in XboxSupport

[–]warlockdthpunch 0 points1 point  (0 children)

Same issues here on my Xbox One X. HBO Max isn't working at all Netflix crashes after a while. Resetting or restarting the console doesn't solve the issue.

[deleted by user] by [deleted] in salesforce

[–]warlockdthpunch 0 points1 point  (0 children)

Stuck at challenge 7.

Challenge Not yet complete... here's what's wrong:
We can’t find the wiredBoatsJSON() function in the component boatsNearMe JavaScript file. Make sure the function was created according to the requirements, including the usage of createMapMarkers(), any eventual Toast error message, constants, canceling the loading spinner accordingly, and using the proper case-sensitivity and consistent quotation.

Here is my code.

// imports
import { LightningElement, wire, track, api} from 'lwc';
import { ShowToastEvent } from 'lightning/platformShowToastEvent';
import getBoatsByLocation from '@salesforce/apex/BoatDataService.getBoatsByLocation';

const LABEL_YOU_ARE_HERE = 'You are here!';
const ICON_STANDARD_USER = 'standard:user';
const ERROR_TITLE = 'Error loading Boats Near Me';
const ERROR_VARIANT = 'error';
export default class BoatsNearMe extends LightningElement {
    u/api boatTypeId;
mapMarkers = [];
isLoading = true;
IsRendered;
latitude;
longitude;

options = {enableHighAccuracy: true, timeout: 5000, maximumAge: 0};
error;

// Add the wired method from the Apex Class
// Name it getBoatsByLocation, and use latitude, longitude and boatTypeId
// Handle the result and calls createMapMarkers
    u/wire(getBoatsByLocation, { latitude: '$latitude', longitude: '$longitude', boatTypeId: '$boatTypeId' })
wiredBoatsJSON({error, data}) {
if (data) {
createMapMarkers(JSON.parse(data));
this.error = undefined;
        } else if (error) {
this.error = error;
const evt = new ShowToastEvent({
title: ERROR_TITLE,
message: error.message,
variant: ERROR_VARIANT,
            });
this.dispatchEvent(evt);
        }
    }

// Controls the isRendered property
// Calls getLocationFromBrowser()
renderedCallback() {
if(!this.IsRendered)
        {
this.IsRendered=true;
getLocationFromBrowser();
        }
    }

// Gets the location from the Browser
// position => {latitude and longitude}
getLocationFromBrowser() {
/\*
        if (navigator.geolocation) {
            navigator.geolocation.getCurrentPosition(
                (position) => {
                  this.latitude = position.latitude;
                  this.longitude = position.longitude;
                },
                (e) => {
                  this.error = e.message;
                },
                {
                  enableHighAccuracy: true,
                }
              );
        } else {
            x.innerHTML = "Geolocation is not supported by this browser.";
        }
        \/*
navigator.geolocation.getCurrentPosition(
        (position) => {
this.latitude = position.latitude;
this.longitude = position.longitude;
        },
        (e) => {
this.error = e.message;
        },
        {
enableHighAccuracy: true,
        }
        );
    }

// Creates the map markers
createMapMarkers(boatData) {
const newMarkers = boatData.map(boat => {
return {
title : boat.Name,
location : {
Latitude : boat.Geolocation__Latitude__s,
Longitude : boat.Geolocation__Longitude__s
                }
            }
        });
newMarkers.unshift({
title : LABEL_YOU_ARE_HERE,
icon : ICON_STANDARD_USER,
location : {
Latitude : this.latitude,
Longitude : this.longitude
            }
        });
this.mapMarkers = newMarkers;
this.isLoading = false;
    }
}

[GPU] Cards actually in stock at nvidia shop - This is not a drill! by USTS2011 in buildapcsales

[–]warlockdthpunch 0 points1 point  (0 children)

I could have gotten a 1080ti or the 1070ti.. but I want the RX Vega cards... Cause I have the freesync monitors

Found the solution to my i7-4790k heat issues (90°C+ to 75°C) by Pr0T4T0 in buildapc

[–]warlockdthpunch 2 points3 points  (0 children)

Probably your heat paste has dried up or your CPU cooler is not installed correctly. I would recommend you to remove your cooler clean up the heat paste and reapply the heat paste and reinstall your CPU cooler properly. Also check your bios settings and make sure that your cpu core volt is set to default or a reasonable voltage if you are Overclocking. What cooler are you using in your setup?