Skip to main content

Posts

Showing posts from August, 2025

How to Fix the ‘No Wi-Fi Networks Available’ Bug on Windows 11 (AMD) Laptops

Good day! This bug specifically in Windows 11 — on laptops with AMD processors, I noticed. The Issue On Windows 11 laptops with AMD processors, the Wi-Fi adapter sometimes suddenly reports No Wi-Fi networks available — even though the router and ISP are fine, and phones connect normally. Trigger Often happens right after an ISP (Internet Service Provider) hiccup, a brief disconnection, or when waking from sleep. Instead of reconnecting, the adapter seems to freeze and stops detecting SSIDs (Service Set Identifiers) entirely. Cause It's a quirk of Windows 11 combined with AMD-platform Wi-Fi chipsets (often MediaTek or Realtek). The adapter gets stuck in a bad state, so Windows thinks no wireless networks exist. Workaround Instead of installing "latest" drivers and getting confused, we can do this: Check the router first — use your phone to confirm other devices can see/connect to Wi-Fi. Shut down the laptop. Bloody remove (unplug) all the peri...

How to Clear Notepad's Tab State in Windows 11

A very good day to you. 🎩 Straight to business, then. In Windows 11, the path for Notepad tab state is: %LOCALAPPDATA%\Packages\Microsoft.WindowsNotepad_8wekyb3d8bbwe\LocalState\TabState Close the Notepad first. ➡️ Delete all .bin files inside that folder. ➡️ Open again Notepad. No, it won't break the Notepad. Promise. We can set Notepad's start-up option to Open in a new window (instead of "Open in a new tab") after that, optionally. Click the top-right gear icon in Notepad, and we would see this: Through Script We can do it from PowerShell: $folder="$env:LOCALAPPDATA\Packages\Microsoft.WindowsNotepad_8wekyb3d8bbwe\LocalState\TabState"; if(Test-Path $folder){Remove-Item "$folder\*" -Force} Or CMD (Command Prompt): set folder=%LOCALAPPDATA%\Packages\Microsoft.WindowsNotepad_8wekyb3d8bbwe\LocalState\TabState && if exist "%folder%" del /q "%folder%\*" Background I was helping a friend to ...

GPT-5

Good day. OpenAI released the latest models: GPT-5 and GPT-5 Thinking . I usually on GPT-4o for casual banters about anything. Most of the idle times, about films and telly shows I watched randomly. For instance, this was one of my observations. 😂 Why did people in a jungle expedition (in those shows) wear tank tops knowing they'd be, at least, in a jungle? Shouldn't safety be the first consideration? Not that we can't wear tank tops in the jungle. But when the story is about gigantic venomous, aggressive spider, reptile, other muppets — it means safety is numero uno. Not one of them brought pesticide, none. Lalala, let's stroll around here, let the wind carries us away. Even one can of Raid in any horror would do justice. Ghost! Spray. Man-eating men! Spray. The darkness! Spray. Flying frying pan! Well, spray then duck, or duck then spray. At least, I'd expect, once they met the beasts along the way, ran away in panic — oh hey, let's not go ther...

Speech to Text

Greetings. 😀 We can use this application to capture our speech and convert it into text. Independent Application Change Roll Fix, 05 August 2025: onchage . 🤦 Changelog? Change roll sounds like a dodgy sushi special. 🤔 I provide some of most common language options for the recognition. This works on Google Chrome, Microsoft Edge, and some Android browsers. With this, we can right away get the text of a conversation, supposedly. Convenient. We can use our cellphone. I guess there will be missing recognition. Especially when the speech is wicked or there's too much background noise. This application implements webkitSpeechRecognition (non-standard API). At the moment, or any other moment, there is no English (Gibberish) . The code en-🤪 is hard to train and wasteful. Blibber blabber foofoo twaddle twaddle snarf is not common in anywhere. webkitSpeechRecognition is indeed powered by Google's cloud speech recognition backend, ev...

Text to Speech

Hi. 😄 We can use this application to utter our text. Independent Application To search a particular speech synthesis model, we can clear the input first then type anything. For instance, english , italiano , google , or microsoft (if we're using Windows OS). The input is above the text Type or click to search voice . This application implements SpeechSynthesis (Web Speech API) . About This demonstration is using our operating system built-in speech models (either Windows or macOS — with no single built-in TTS system across all Linux distros) and Google's. Other example is Doctor Ossbita We can't "record" the utterance audio output programmatically with JS or browser extension script because: It's not a media stream like getUserMedia . It does not emit audio that JavaScript can capture — it bypasses AudioContext , MediaStream , etc. It's a one-way street straight to the system voice. But we still can capture it with OB...
Monkey Raptor uses cookies or biscuits 🍪 for analytics, functionality, and advertisements. More info in Privacy Policy