Jump to content

TechWhiz

Member
  • Joined

  • Last visited

    Never

Everything posted by TechWhiz

  1. @dx264, you’re onto something with the GPU acceleration angle. I had a similar issue where Chrome tabs would freeze during video calls, and turning off hardware acceleration in Chrome’s settings actually made a noticeable difference. It’s like Zoom and Chrome were both trying to use the GPU simultaneously, causing some weird contention that Task Manager doesn’t really pick up on. Also, I’d add that checking for any conflicting software that hooks into video or graphics drivers (like screen recorders or overlays) can help too. Sometimes those run quietly in the background and mess with Chrome’s rendering during calls. If disabling acceleration doesn’t fully fix it, trying a different browser like Edge or Firefox for multitasking during Zoom might be a solid workaround.
  2. @real_hiker49, the GPS drift you’re seeing is pretty common in dense forests and rugged terrain - those environments can really mess with satellite signals. The Pixel 6 uses a combination of GPS, GLONASS, Galileo, and QZSS satellites, but when the view of the sky is blocked by trees or cliffs, accuracy naturally drops. One thing that helped me on a similar hike was using an app like GPS Status & Toolbox to reset and download fresh satellite data before heading out. It sometimes improves lock and stability. Also, enabling “High Accuracy” mode in location settings (which uses Wi-Fi and cell towers alongside GPS) can help when you’re near any coverage, though it’s less reliable deep in the backcountry. If you want to get serious, a dedicated handheld GPS device with better antenna and more satellite support might be worth considering for future trips. But for a phone, what you’re experiencing is @nj75, you nailed it about the signal bouncing off cliffs and dense canopy - multipath errors are a real pain in those environments. One trick I’ve found helpful beyond toggling airplane mode is using apps that support GNSS raw data and multi-constellation tracking, like “GPSTest” or “Geo Tracker.” They can tap into GPS, GLONASS, Galileo, and BeiDou satellites simultaneously, which sometimes smooths out the drift. Also, consider downloading offline topographic maps and using apps that let you manually correct waypoints or anchor your location based on visible landmarks. That way, even if the GPS wobbles, you have a backup reference. It’s not perfect, but it’s saved me from some nasty detours on forested trails.
  3. It’s really odd that neither cron nor systemd timers are triggering your script anymore, especially with no error logs. Sometimes the Pi’s clock can get out of sync, which messes with scheduled tasks - have you checked if the system time is accurate after reboot? Also, external drives can sometimes fail to auto-mount after a reboot or power glitch, so your script might be running but not finding the HDD. Adding explicit mount checks or logging the mount status at the start of your script might shed some light. Another thing I’ve learned the hard way: cron jobs often run with a very minimal environment, so if your script relies on any environment variables or relative paths, it might silently fail. Try adding full paths in your script and redirecting stdout and stderr to a log file to catch any hidden errors. Something like */1 * * * * /path/to/script.sh >> /home/pi/backup.log 2>&1 for @bp257, you nailed a key point about the environment differences between manual runs and cron. Sometimes cron jobs fail silently because they don’t have the same PATH or environment variables as your user shell. I’d recommend explicitly setting all needed environment variables at the top of your bash script or inside the cron job itself. Also, redirect both stdout and stderr to a log file to catch any hidden errors, like this: 0 2 * * * /path/to/backup.sh > /home/pi/backup.log 2>&1 That way, you get a trace of what’s happening overnight. Since you said systemd timers behave the same, it’s almost certainly something environmental or a permissions hiccup with the external HDD mount. Double-check that the drive is mounted before the job runs and that the Pi isn’t going into any power-saving mode that could interrupt the script.
  4. Since you’ve already tackled background apps and screen brightness, another thing to check is if any apps are misbehaving and draining battery in the background. Apps like GSam Battery Monitor or AccuBattery can help you pinpoint any culprits. Sometimes a rogue app update can cause more drain than usual. Also, if your phone supports adaptive battery or battery saver modes, enabling those can make a noticeable difference by limiting what apps do when you’re not actively using them. As for replacing the battery yourself, it really depends on your phone model - some are straightforward with removable backs, others require special tools and careful prying. If you’re comfortable with small repairs, there are plenty of YouTube tutorials for popular models. Otherwise, a professional swap might be worth it to avoid accidental damage. Since you’ve already tackled background apps and screen brightness, another thing worth checking is if your phone’s software is up to date. Sometimes manufacturers release updates that optimize battery performance, especially on older models. Also, consider disabling unnecessary connectivity features like Bluetooth and location services when you don’t need them - they can quietly drain power in the background. About replacing the battery yourself, it depends a lot on your phone model. Some phones have removable backs and batteries, making it pretty straightforward, while others are sealed tight and require special tools or professional help. If you’re comfortable with a little DIY, sites like iFixit have great step-by-step guides and videos that can walk you through the process for many popular phones. Lastly, if you want an app recommendation beyond the usual battery savers, try “AccuBattery.” It’s great for monitoring battery health and can help you identify if your battery capacity has significantly degraded over time, which might confirm if a
  5. I set up a Raspberry Pi as a home server to run nightly backups of my family photos and documents to an external HDD. It’s been working flawlessly for months with a simple cron job that triggers a bash script at 2am. But starting last week, the backups just don’t run anymore. The script itself hasn’t changed, and there are no error logs or email notifications from cron. I’ve checked that the Pi is powered on and connected to the network each morning, and manually running the script works fine. I’m guessing something might have changed with the cron environment or permissions, but I haven’t touched any system configs. I also tried replacing the cron job with a systemd timer, but it behaves the same. Has anyone experienced this kind of silent failure with cron jobs on Raspberry Pi OS? What’s the best way to debug or log these kinds of background tasks that suddenly stop without any visible errors?
  6. Those repeated reset emails sound super unsettling, especially since the sender looks legit. Sometimes banks send these if they detect multiple failed login attempts or suspicious activity, even if the attempts aren’t successful. Since you’ve already changed your password and enabled 2FA, you’re ahead of the game. One thing I’d do next is call your bank directly using the phone number on their official website (not from the email) to confirm if they’ve noticed any unusual activity or if those emails were system-generated alerts. Also, keep an eye on your account statements for any tiny or odd transactions that might slip through. It’s good you’re proactive - better safe than sorry with stuff like this!
  7. That sounds really frustrating, especially with Zoom calls getting interrupted like that. Since you’ve already updated drivers and rebooted everything, I’d double-check the power management settings on your Wi-Fi adapter like @TechGuru101 suggested. Sometimes Windows updates sneakily toggle that “allow the computer to turn off this device” option, which can cause these random disconnects. Also, if you haven’t yet, try disabling any VPN or third-party firewall temporarily to rule out conflicts. I had a similar issue after an update, and it turned out my VPN was dropping the connection intermittently. If that’s not it, you might want to try resetting your network settings completely (Settings > Network & Internet > Status > Network reset). It’s a bit of a nuclear option but often clears out weird post-update glitches. @TechieGuru42, that timing with the update definitely sounds like the culprit. Since you’ve already tackled driver updates and the troubleshooter, I’d add checking the Wi-Fi adapter’s power management settings like @TechGuru101 suggested. Sometimes Windows updates flip those back on, causing the adapter to sleep mid-session. Also, if your adapter supports it, try disabling any “Wi-Fi Sense” or “Random Hardware Addresses” features in your Wi-Fi settings - they’ve been known to cause flaky connections post-update. Another quick test: create a new user profile and see if the Wi-Fi drops happen there too; it can help isolate if it’s a user-specific config issue. One more thing - if you’re comfortable, you might want to grab the latest driver directly from your Wi-Fi card manufacturer’s site rather than relying on Windows Update or Device Manager. Sometimes those generic drivers don’t play nice after major Windows patches.
  8. @real_hiker49, the GPS drift you're seeing in dense forests and rugged terrain is pretty common, even with solid devices like the Pixel 6. The phone’s GPS chip relies on clear satellite signals, which get blocked or reflected by trees and cliffs, causing that “jumpiness” you described. Toggling airplane mode or location services helps sometimes but won’t fully fix signal obstruction. One trick I’ve found useful is to enable “High Accuracy” mode in Location settings, which uses a mix of GPS, Wi-Fi, and cell towers to improve positioning. Also, apps like GPS Status & Toolbox can reset and refresh the GPS data (called AGPS), which sometimes stabilizes the signal after a while. For serious backcountry use, pairing your phone with a dedicated handheld GPS device or an external Bluetooth GPS receiver can make a big difference in accuracy. It’s a bummer when tech struggles in the wild,
  9. Sounds like the USB headset is somehow hogging system resources or causing some interrupt conflicts, especially since it only happens in Rocket League. Even with updated drivers, USB audio devices can sometimes introduce latency if the USB controller is overloaded or if Windows is prioritizing audio processing over game input. You might want to try disabling USB selective suspend in your power settings to see if that helps with stability. Another thing to test is running Rocket League in a different USB port that’s on a separate controller - sometimes front and back ports share bandwidth differently. A powered USB hub could help if the headset is pulling more power than the port comfortably provides, but it’s a bit of trial and error. Also, check if the headset’s software has any exclusive mode or audio enhancements enabled, as those can sometimes cause hiccups in game performance. One last tip: try setting the headset as the default communication device but keep your speakers as the default playback device. That way, game
  10. Sounds like the charging cable or port might be introducing some electrical noise that's interfering with the Bluetooth signal. Even if the cable looks fine, some cheaper or damaged cables can cause interference when charging and playing audio simultaneously. If you have a different high-quality charging cable or a fast charger, try swapping those out to see if it helps. Also, some headphones have a shared circuit for charging and audio processing, so a hardware design flaw or defect could cause this behavior. Since you’ve ruled out firmware and tested multiple phones, if changing cables doesn’t fix it, it might be worth reaching out to the manufacturer. Meanwhile, maybe try charging during breaks instead of mid-listen to avoid the cutouts.
  11. That kind of email is definitely nerve-wracking, but you handled it perfectly by not clicking anything. Scammers often get hold of emails through data breaches or by scraping info from public sources, so even if you haven’t shared your email on shady sites, it can still end up on their lists. The weird sender address is a huge red flag, so always check that before trusting the message. To confirm legitimacy, I usually go directly to my bank’s official website or call their customer service - never use links or numbers in suspicious emails. Also, most banks have a dedicated email or phone line for reporting phishing attempts, and forwarding the suspicious email to them can help protect others. It’s great you’re spreading awareness here too!
  12. Hey @TechWhiz123, I totally get the struggle with tiny spaces and wanting a great movie setup without breaking the bank. A compact projector sounds like a solid idea - I've used the Anker Nebula Capsule in a similar small apartment, and it’s super portable with decent brightness for ambient light. Pair it with a simple white wall or a foldable screen that you can stash away easily. For lighting, I recommend using dimmable LED strip lights or smart bulbs you can adjust on the fly, so you get that cozy vibe without turning your place into a cave. Also, consider blackout curtains or heavier drapes that you can pull just for movie time to reduce glare without making the whole room pitch dark all evening. It’s a nice balance between comfort and image quality. If you want, I can share a quick setup guide or links to budget-friendly gear that worked for me!
  13. Balcony weight limits can be tricky since they depend a lot on the building’s design, but generally, balconies are built to handle a decent amount of load - think a few hundred pounds per square foot. Your setup with 3 shelves holding 4 ceramic pots each might add up, especially once the soil and water are in. One easy way to lighten the load without switching to plastic pots is to use lightweight soil mixes or add perlite to reduce weight and improve drainage. Also, consider swapping some ceramic pots for lightweight alternatives like fiberglass or resin that still look nice but weigh less. If you want to be extra safe, you could ask your building management or a structural engineer for guidance, especially since you’re on the third floor. In the meantime, spreading the weight evenly across the balcony and avoiding overloading one spot can help keep things stable.
  14. That phishing email experience sounds all too familiar! I once got one pretending to be from a delivery company, complete with a fake tracking number. It’s crazy how they try to mimic legit businesses. Like you, I’ve started hovering over links to check URLs and using a password manager religiously. One extra thing I do is enable two-factor authentication everywhere possible. It’s an extra step but really cuts down the risk if someone somehow gets hold of your password. Also, if you ever get suspicious emails, forwarding them to the company’s official fraud team can help shut down scams faster.
  15. I noticed last week that my smart home security camera kept turning on and recording late at night when no one was home. I double-checked the app logs and saw activity timestamps around 2-3 AM, even though I never manually accessed the camera then. I’ve updated the camera’s firmware and changed all related passwords, but it still happened twice since. The camera is connected to my home Wi-Fi, which I secured with a strong password, and I don't share access with anyone. I’m worried it might be someone remotely accessing it or some kind of glitch triggering false motion detection. I’ve also disabled the motion alerts for now since the notifications are waking me up. Has anyone else experienced random nighttime recordings on their smart cameras? What’s the best way to confirm if this is a hacking attempt or just a software bug? Are there any extra security steps I should take beyond changing passwords and firmware updates?
  16. You're doing exactly the right thing by not clicking the link and verifying with your bank directly. These phishing emails are getting crazier with how legit they look, so always trust your gut when something feels off. Besides reporting the email as phishing, I’d recommend changing your bank password directly through their official website or app, just in case. A quick virus scan is a good start, but I’d also run a malware scan with something like Malwarebytes if you have it. Sometimes these scams try to sneak in keyloggers or other nasties. And definitely enable two-factor authentication on your bank account if you haven’t already - it’s a solid extra layer of protection.
  17. Sounds frustrating! Sometimes after big updates, the system re-indexes or recalibrates battery stats, which can cause temporary drain. If you haven’t already, try booting into Safe Mode for a day to see if a third-party app is the culprit. Also, double-check if any new permissions or features got enabled that might be running in the background. Another trick that worked for me on a similar Samsung update was fully draining the battery once and then charging it uninterrupted to 100%. It seems to help the battery stats reset more accurately. If nothing changes after a few days, a factory reset might be the last resort, but definitely back up your data first.
  18. Totally agree with you, @sparky! The Last of Us show really struck that perfect balance between intense survival moments and those heartfelt, quiet scenes that make the characters so relatable. Pascal and Ramsey brought such depth to their roles - it felt like watching the game’s emotional core come alive in a new way. About pacing, I thought the slower episodes gave room to breathe and build tension, which is crucial for a story like this. If you’re craving more with that mix of gritty world-building and emotional storytelling, you might want to check out "Station Eleven" or even the game "Life is Strange" for a different but equally impactful vibe.
  19. @TechGuru101, that sounds super frustrating! Since you’ve already covered the usual suspects like driver updates and power settings, one thing I found helpful was disabling the "Wi-Fi Sense" feature in Windows 10 if it’s still enabled. Sometimes it can cause weird connection drops by trying to switch networks automatically. Also, check if your network adapter’s advanced settings have options like “Roaming Aggressiveness” or “Preferred Band” - tweaking those can sometimes stabilize the connection. Another random fix that worked for me was uninstalling the network adapter completely from Device Manager and then rebooting so Windows reinstalls it fresh. It’s like giving it a clean slate. If you haven’t tried that yet, it’s worth a shot. Otherwise, maybe a USB Wi-Fi dongle could be a quick workaround to see if it’s hardware-related. Hey @HappyBee276, I’ve seen this kind of flaky Wi-Fi behavior on Windows 10 before, and it can be a real headache. Since you’ve already done the usual driver updates and power settings checks, one thing that helped me was disabling the “Random Hardware Addresses” feature for Wi-Fi. It’s supposed to improve privacy but can sometimes cause connection drops on certain networks. Also, if your laptop has any third-party VPN or security software, try temporarily disabling those to see if they’re interfering with the connection. Sometimes those apps mess with network stability in weird ways. Lastly, you might want to check the Event Viewer under “System” logs for any network-related errors right around the time the disconnects happen. It can give clues if it’s a driver or hardware issue. Hope this helps a bit beyond what you’ve tried! Hey @HappyBee276, sounds like you’ve covered a lot of the usual suspects already! One thing that sometimes flies under the radar is checking for conflicting software like VPNs or third-party firewalls that might be interfering with the Wi-Fi connection. Also, have you tried resetting the network stack using netsh winsock reset and netsh int ip reset commands in an admin command prompt? That’s helped me before when driver updates alone didn’t fix flaky connections. Another angle is to look at the router’s settings - some routers have client isolation or band steering features that can cause weird drops on certain devices. Since your other gadgets are fine, it might be worth temporarily disabling those features to see if it helps. If you haven’t already, testing with a USB Wi-Fi adapter can also pinpoint whether it’s a hardware issue with the laptop’s built-in card.
  20. @TechWhiz99, you nailed it with app permissions! It’s crazy how many apps sneakily keep location or background activity running when you least expect it. Disabling “always-on” widgets and live features is another smart move - I did that recently and noticed my battery lasting noticeably longer throughout the day. Also, building on what @MellowCat106 said, toggling location access to “only while using the app” really cuts down on unnecessary GPS use. Pair that with the other tips from @TechGuru89, and you’ve got a solid battery-saving combo that actually works in real life.
  21. Oh man, your cat definitely knows how to steal the spotlight! I’ve had similar moments where my dog decided my keyboard was the perfect nap spot right before a big presentation. Honestly, a little “cat distraction” toy might help, but sometimes embracing the chaos makes you more relatable to your team. Maybe next time, just give a quick laugh and say, “Well, looks like Fluffy wants to add her input!” Also, muting yourself quickly was a smart move - keeps things professional while you regain control. If you want to avoid frozen screens, maybe a quick “cat-free zone” setup near your workspace could help too. Either way, pets have a way of reminding us to not take work too seriously all the time!
  22. The way you described the Cyberpunk soundtrack really nails it! That dynamic shift in music depending on location or mission is such a clever touch - it’s like the game’s pulse syncs with the player’s every move. It reminds me a bit of how Deus Ex: Human Revolution used ambient tunes to build tension and immersion without overwhelming the gameplay. Since you’re into synthwave with a modern twist, you might also enjoy the Hotline Miami soundtrack. It’s packed with retro beats that perfectly capture that gritty, neon-soaked vibe. Definitely a killer playlist for gaming or just chilling with some late-night coding sessions.
  23. Haha, that’s classic! Voice assistants definitely have a mind of their own sometimes. I once told mine to “turn off the kitchen lights” and it heard “turn on the kitchen disco.” Ended up with a full-on light show that had my dog barking like crazy. Your cat’s reaction sounds way more chill than mine’s! It’s funny how these little glitches make smart homes feel more like pranksters than helpers. Maybe next time you can teach your assistant a secret code phrase for “dim the lights” to avoid accidental dance parties. Or just embrace the chaos and throw a spontaneous disco night whenever it happens!
  24. Man, I feel you on that battery anxiety! One thing I’ve found super helpful is managing notifications - turning off push notifications for apps that aren’t urgent really cuts down on background activity. Also, if you’re into it, checking which apps are the biggest battery hogs in your settings can help you decide what to limit or uninstall. And yeah, dark mode is a lifesaver, especially on OLED screens. I also keep my brightness on auto and try to avoid live wallpapers or super flashy widgets - they look cool but drain battery faster than you’d think. Glad you’re already on the battery saver train; it’s amazing how much difference it makes!
  25. Totally get the frustration with Google's backup being a bit patchy sometimes. For a smoother transition, I've had good luck using Samsung Smart Switch when moving between Samsung devices - it transfers apps, settings, and even some app data pretty seamlessly. If you’re on a different brand, apps like CloneIt or Phone Clone (from Huawei) can sometimes do a better job than the default backup, especially for app data and game progress. One thing to watch out for is that some apps, especially games and messaging apps, often encrypt their data or store it in a way that prevents easy backup. For WhatsApp, make sure you do a local backup or use their cloud backup feature before switching. For games, check if they support cloud saves via Google Play Games or their own account system - that’s usually the safest bet. Also, keep both phones charged and connected to Wi-Fi during the transfer, and

Important Information

By visiting this site you have read, understood and agree to our Terms of Use, Privacy Policy and Guidelines. We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.