Ria's Indonesian Fried Rice

Ria's Indonesian Fried Rice

Ria Runcorn

They have new menu items and their Indonesian style fried rice is pretty authentic in terms of aroma and taste. There's hardly any Indonesian restaurant in Brisbane and to find one that makes authentic Indonesian style fried rice is even harder.

u/magnomagna — 11 days ago

IMAX Broken Speakers

There are 4 speakers on the ceiling but only the two closest to the screen are working.

Having booked weeks in advance and driven over an hour, It's just very disappointing. The sound is just kind of weird like something is so obviously missing.

reddit.com
u/magnomagna — 13 days ago

Carpro Reset and IK e Foam Pro 2

If you've tried this setup, what ratio would you recommend?

How much solution would you put in the bottle?

reddit.com
u/magnomagna — 3 months ago
▲ 1 r/NZXT

PowerShell Script to Auto-Rerun CAM on Wake

If your NZXT CAM has been buggy for years like mine, no matter how often you update it, because it ignores your lightning profile when you wake your Windows PC from sleep and just applies freaking white light everywhere, this is a workaround that might work for you.

The idea is to create a Windows task to automatically run a PowerShell script on wake, to restart NZXT CAM and then close the window (but CAM will be minimised to the system tray):

  1. Open NZXT CAM and click Settings.
  2. Make sure this is ticked: Minimize NZXT CAM to tray when closing
  3. Close NZXT CAM.
  4. Copy the code at the end of this post, and paste it into a new file with notepad.
  5. Save it somewhere on your PC and take note of the location. Example: C:\Users\your_username\Desktop\restart_nzxt_cam.ps1
  6. Open Task Scheduler. (You could search for it in the Windows search bar.)
  7. Click Create Task (not Basic Task).
  8. Name: Restart NZXT CAM on Wake
  9. Tick Run only when user is logged on.
  10. Tick Run with highest privileges.
  11. Go to Triggers tab.
  12. Click New.
  13. Tick Basic.
  14. Log: System.
  15. Source: Power-Troubleshooter.
  16. Event ID: 1.
  17. Tick Enabled.
  18. Click OK.
  19. Click New again.
  20. Tick Basic.
  21. Log: System.
  22. Source: Kernel-Power.
  23. Event ID: 107.
  24. Tick Enabled.
  25. Click OK.
  26. Go to Actions tab.
  27. Click New.
  28. Action: Start a program.
  29. Program/Script: powershell.exe
  30. Add arguments: -ExecutionPolicy Bypass -WindowStyle Hidden -File "C:\the\path\to\the\script\in\step\5\restart_nzxt_cam.ps1"
  31. Click OK.
  32. Go to Settings tab.
  33. Tick Allow task to be run on demand.
  34. Tick Run task as soon as possible after a scheduled start is missed.
  35. Tick If the running task does not end when requested, force it to stop.
  36. For the dropdown "If the task is already running, then the following rule applies", Do not start a new instance.
  37. Click OK.
  38. On the left hand side, click Task Schedule Library.
  39. Right-click the task Restart NZXT CAM on Wake and click Enable if the Status in the table is not Ready.

In the script below, on line 8, make sure that the installation path of NZXT CAM is correct.

You could test the task by right-clicking the task and clicking run, or make your PC go to sleep and wake it up.

You may be able to see NZXT CAM get summoned (do not interact with it) before it's closed automatically but CAM should still run as the icon should be in the system tray.

If the script doesn't seem to be effective, increase the timings of the Start-Sleep's in the script:

Start-Sleep -Seconds 1

Stop-Process -Name "NZXT CAM" -Force -ErrorAction SilentlyContinue

Start-Sleep -Seconds 0.2

# Make sure that this path is where your NZXT CAM is installed
$proc = Start-Process "C:\Program Files\NZXT CAM\NZXT CAM.exe" -WindowStyle Hidden -PassThru

Start-Sleep -Seconds 5

Add-Type -TypeDefinition @"
using System;
using System.Runtime.InteropServices;
public class Win32 {
    [DllImport("user32.dll")]
    public static extern int SendMessage(IntPtr hWnd, uint Msg, IntPtr wParam, IntPtr lParam);
}
"@

[Win32]::SendMessage($proc.MainWindowHandle, 0x0010, [IntPtr]::Zero, [IntPtr]::Zero)

Source: Claude

reddit.com
u/magnomagna — 3 months ago
▲ 4 r/Zeekr

If you owned your car before the 2.1 update, what difference have you noticed to the power steering in comfort mode or in any other mode, after upgrading to 2.1?

reddit.com
u/magnomagna — 4 months ago

This is the first time I made this glaze. I just sort of went with my feelings. I didn't plan it and I didn't even know it would turn into a glaze.

The sauce was roughly about 3 - 4 teaspoons of brown sugar, 1 teaspoon of salt, 2 teaspoons of dried mushroom granules (replacement for MSG / chicken powder), 2 teaspoons of dried onion flakes, and enough rice wine to just sort of shallow flood my pan but also enough to survive a 2-minute reduction, which turned it into this beautiful brown glaze.

The saltiness and umami of the sauce was also enhanced by finely chopped fermented black beans, sliced garlic, and hand-shredded pieces of dried chilies that I sauteed for 2 minutes before adding and sauteing cauliflower and before adding the ingredients for the sauce last.

I'm now having an unexpected craving for even more sugar?? I also feel thirsty. Is this due to the concentration of glucose because I also had it with rice?

reddit.com
u/magnomagna — 4 months ago