Urgent.News

600+ sources. One page. See who else covered it.

Editions

Tech

Gamer drops laptop temperatures by up to 15°C by switching from a wooden desk to a metal table

The user, MentalReserve2351, posted the results in r/GamingLaptops after testing the setup while playing Cyberpunk 2077 in an air-conditioned room. The laptop had been reaching 80-90°C on the wooden desk, according to the post. On the metal table, temperatures reportedly ran between 75°C and 83°C. Read Entire Article

Gamer drops laptop temperatures by up to 15°C by switching from a wooden desk to a metal table

A Reddit user claims switching their gaming laptop from a wooden desk to a metal table resulted in a significant reduction of temperatures during intensive gameplay, without requiring any additional cooling hardware. In the r/GamingLaptops subreddit, the user, MentalReserve2351, detailed the findings from testing the setup while playing Cyberpunk 2077 in an air-conditioned room.

Previously, the laptop would reach temperatures between 80-90°C on the wooden desk, but on the metal table, temperatures were reported to drop between 75°C and 83°C. Initially, the user was uncertain if the metal surface might become too hot, but it remained cooler than the wooden desk. The source of the lower temperatures is likely due to the airflow management of many gaming laptops, which draw in cool air through vents on the bottom of the chassis and expel hot air through side or rear exhausts.

A wooden desktop can retain heat beneath the machine, while a metal surface conducts heat away more efficiently, potentially keeping the area around the intake vents cooler. However, the metal table does not actively cool the laptop like a fan or liquid-cooling system. The lower temperatures could be beneficial for reducing fan noise or preventing the system from throttling due to heat, though the impact will depend on the laptop, room temperature, and the game being played.

The Reddit user cautioned against attempting to make the metal surface colder using ice or other cooling methods, as this could create condensation under the laptop, which would pose a greater risk to the hardware than high operating temperatures. In conclusion, the key takeaway remains the same: maintaining clear bottom vents, cleaning the cooling system, and elevating the rear of the laptop can improve airflow and overall cooling performance. A cooling pad may also provide additional benefits in certain setups.

Written by urgent.news from TechSpot's reporting — not their text. Machine-written — may contain errors; check the original before relying on it.

Read the original at techspot.com →

More in Tech

Why Does Go Have Goroutines? Understanding Go’s Lightweight Concurrency

When I started exploring Go, one feature immediately stood out: go doSomething () Just adding go before a function call can run it concurrently.

  • Goroutines allow concurrent execution of functions in Go with go keyword.
  • Goroutines are lightweight and managed by Go runtime, not OS threads.
  • Channels enable communication and synchronization between goroutines.

Overlaying a design on a live page: four things that bit me

I spent the last few weeks building a Chrome extension that puts a design frame on top of a running web page so you can see where the implementation drifted.

  • Fixed position overlays shift when scrolling
  • Overlay must be in document space, not fixed
  • Image dimensions are not accurate, calculate with scale factor

Your `if` statements are a database nobody can query

Somewhere in your codebase there is a line that looks like this: if ( user . plan === ' enterprise ' || user . tenantId === ' acme-corp ' ) { // ...

  • Rules scattered across codebase, not queryable
  • Lack of schema, querying, migrations, audit log
  • Moving rules to separate service introduces latency and kill switch issues

More from Saturday 15 August →