Image 1 — I can finally try out biking versus mode!
Image 2 — I can finally try out biking versus mode!
▲ 10 r/wiiu

I can finally try out biking versus mode!

My new nunchuck is finally here! I’ve been missing out on this mode for years. Same goes for water motor and boxing in Wii sports.
Plus my collections of wii remotes (I was scammed few times) only three of them is genuine. Can you tell?
I also made vwii perfect by modifying the better vwii config (aroma plugin) so the black bar is gone.
I’ll also check out Nintendoland soon

u/crappy-Userinterface — 8 days ago

Shader is game changer. Why are people still sleeping on Camac

Unfortunately I’m a normal person so the code is written by ai
Here’s two I like most

// Cinematic Film Look with Dynamic Vibrance and HDR Halation
[[stitchable]] float4 render(sample_t s) {
// 1. Ensure no negative values, preserving HDR highlights > 1.0
float3 col = max(0.0, s.rgb);

// 2. Calculate true luminance using vector dot product
float luma = dot(col, float3(0.2126, 0.7152, 0.0722));

// 3. Smart Vibrance
// Boosts saturation primarily on less saturated colors
float max_chan = max(col.r, max(col.g, col.b));
float min_chan = min(col.r, min(col.g, col.b));
float saturation = max_chan - min_chan;

// As saturation approaches 0, boost is higher.
float vibrance_boost = 1.0 + (1.0 - clamp(saturation, 0.0, 1.0)) * 0.35;
col = mix(float3(luma), col, vibrance_boost);

// 4. Cinematic Split Toning (Teal & Orange)
// Shadows get a cool, teal tint; Midtones/Highlights get warm
float3 shadow_tint = float3(0.85, 0.92, 1.05);
float3 highlight_tint = float3(1.10, 1.02, 0.90);

// Smoothly blend between the two tints based on luminance
float balance = smoothstep(0.1, 0.8, luma);
col *= mix(shadow_tint, highlight_tint, balance);

// 5. HDR Halation (Exploiting > 1.0 values)
// If a pixel is extremely bright (HDR), tint it punchy warm-red
// to simulate the chemical bleed of analog film.
float hdr_mask = smoothstep(0.8, 1.8, luma);
float3 halation_color = float3(1.3, 0.85, 0.7);
col = mix(col, col * halation_color, hdr_mask);

// 6. Filmic Tonemapping Curve (ACES Approximation)
// Takes the crazy high HDR values and compresses them with a gorgeous "shoulder"
float3 a = col * (col + 0.024) * 2.51;
float3 b = col * (2.43 * col + 0.59) + 0.14;
col = clamp(a / b, 0.0, 1.0);

return float4(col, 1.0);
}

// Summer
[[stitchable]] float4 render(sample_t s) {
float3 col = max(0.0, s.rgb);

// 1. Warm "Sunkissed" White Balance
// Bathes the daytime photo in a golden wash by boosting reds/greens
// and cutting back the harsh daytime blues.
col *= float3(1.15, 1.02, 0.85);

// 2. Extract Luminance for Masking
float luma = dot(col, float3(0.2126, 0.7152, 0.0722));

// 3. Vibrant Summer Saturation
// Makes greens incredibly lush and skin tones rich.
float saturation = 1.30;
col = mix(float3(luma), col, saturation);

// Uses the > 1.0 data. Instead of recovering blown-out skies to make them flat,
// we lean into the brightness and tint the overexposed areas an intense golden-yellow.
float highlight_mask = smoothstep(0.7, 1.6, luma);
float3 sun_glow = float3(1.30, 1.15, 0.85); // Intense warm sunlight
col = mix(col, col * sun_glow, highlight_mask);

// 5. Dreamy Lifted Shadows (Zero Blue!)
// In intense summer sunlight, shadows are filled with warm bouncing light.
// This lifts the deepest darks and injects a soft, reddish-brown haze.
float shadow_mask = 1.0 - smoothstep(0.0, 0.4, luma);
col += float3(0.08, 0.04, 0.02) * shadow_mask;

// 6. Airy Nostalgic Overexposure
// We intentionally bump the exposure up slightly, then use a very gentle
// roll-off curve to keep the photo bright, hazy, and dreamy.
col *= 1.1;
col = col / (1.0 + col * 0.15);

return float4(col, 1.0);

}

u/crappy-Userinterface — 9 days ago
▲ 3 r/AndroidTVBoxes+1 crossposts

I turned my Android 4.4 into AirPlay 2 receiver

I spent my whole afternoon doing it which was totally worth it. the protagonist is obviously Shairport-sync. So i used Linux deploy to install a Debian which was required to run this. getting the audio to work in Debian was a hassle. You need to first play a audio file (can be quiet pcm) using the vendor software so the speaker hdmi output wont be muted, then you have to kill media service in android so Debian can take over with a speaker-test. Then i built shairport with Airplay 2 and Avahi, to get avahi working you need to have a high permission dbus running, then the shairport sync could finally work, you also need the nqctp? What ever the name was running in the background also. The tv output could bring some delay though. Now though i only have one speaker, one HomePod mini and a dumb tv, i can somehow bring them together. Very whimsical. Of course i asked AI to help cuz i dont have magical nerd helping me 24/7, but no code was provided by them at all which was nice. Avahi is the only option if you need AirPlay 2 (multiple speaker playing at the same time) and if you have a normal Linux pc you can just get shairport sync without much permission fighting. So I’m listening all my old songs right now. :)

reddit.com
u/crappy-Userinterface — 12 days ago
▲ 1 r/wii

Why should fake Wii remotes use tri screws! I can’t even fix them 2 button.

They ripped it off so bad. I bought it for 15 bucks and felt like the biggest mistake. It work but now the 2 button is a bit flimsy. why is there no real wii remote’s identification guide!

reddit.com
u/crappy-Userinterface — 1 month ago