Gamesir Super Nova can do Switch 2 wake up?

Reading the Gamesir Super Nova manual there is a section on Switch 2 wake up. I've followed the steps and it's not working for me.

  1. Detach both Joy Cons
  2. Change grip order and pair the Super Nova
  3. On the Change grip order screen click "search" and locate one of your detached Joy Con 2's.

Then I powered off my Switch 2 and all controllers. Hitting the "home" button on the Super Nova does not wake up my Switch 2 though. Am I missing something?

reddit.com
u/scottchiefbaker — 1 month ago

Is it possible to use ChatJimmy with OpenCode?

ChatJimmy is kind of mind blowing. I'd like to test it in OpenCode to see if the speed it provides changes my workflow. Is it possible to get it working with OpenCode?

reddit.com
u/scottchiefbaker — 2 months ago

What happens if I hit the month quota limit on Opencode Go?

In the Opencode FAQ it says:

> Can I top up credit? > > If you need more usage, you can top up credit in your account.

What does this mean in practice? If I hit my monthly usage quota what does "top up" mean?

reddit.com
u/scottchiefbaker — 2 months ago
▲ 17 r/perl

Do we have smart/quote-aware splitting?

Python has shlex.split which is very similar to Perl's split(' ', $str). shlex.split goes one step further and does not split on whitespace that's inside of double or single quotes.

Example: $str = 'myscript --path /tmp/foo --name "Jason Doolis" --age 14'

This should split into seven chunks, not eight.

reddit.com
u/scottchiefbaker — 2 months ago
▲ 8 r/perl

Introducing Template::Sluz a text templating engine

Please check out Template::Sluz my new light, text templating engine. It's a dependency lite (only core modules), quick, full-featured templating engine. We have: if/else, foreach, include, and modifiers. All in an easy to read and understand syntax.

File: main.pl

use Template::Sluz;

my $s = Template::Sluz->new();

$s->assign('name', 'Scott');
$s->assign('array' => ['one', 'two', 'three']);
$s->assign('hash'  => { color => 'red', age => 39});

print $s->fetch('template.stpl');
# or
print $s->parse_string('Hello {$name}');

File: template.stpl

Hello {$name}
Nums: {foreach $array as $x}{$x} {/foreach}
Info: {$hash.color} / {$hash.age}

Output:

Hello Scott
Nums: one two three
Info: red / 39
u/scottchiefbaker — 2 months ago
▲ 3 r/FTC

Need ideas for 3D printed give-aways for outreach

Our team will be participating in our town's 4th of July festival, and we will have a booth to show off our robotics skills. I'd like to have some cool 3D printed items that we can give away to kids and adults to get people interested in FTC robotics. What has your team used as give-aways that people were excited to take home?

reddit.com
u/scottchiefbaker — 3 months ago

It's 2026 Nintendo, please release a native Music app for Switch

I love Nintendo Music, but I would love it even more if I could use it on my actual Switch instead of my cell phone. How rad would it be to put on the Music app on your big TV, while you did chores or cooked dinner?

It blows me away there isn't an a native Switch option for Nintendo Music. Come on Nintendo!

reddit.com
u/scottchiefbaker — 3 months ago
▲ 10 r/FTC

FTC Pollen is really expensive so we bought fake Pollen from Amazon

FTC Pollen is $5.50 but shipping is $24!

According to the specs they are 2.8" Wiffles balls so we found some balls on Amazon that are the same size and bought those instead. Has anyone else come up with an alternate solution?

amazon.com
u/scottchiefbaker — 3 months ago

FLYDIGI Direwolf 4 on sale for $40 - 15% ($34) on Amazon

Amazon is selling the FLYDIGI Direwolf 4 for $40 with a 15% off brand promotion, for a final price of $34. I've read lots of good things about this controller.

u/scottchiefbaker — 3 months ago

What is your go-to game for testing a new controller?

When I get a new controller I use Gamepad Tester to test the raw inputs and then I use either Dead Cells or Mega Man 3 to test gameplay. I want a game that's really twitchy, where response time is important.

What is your go-to game for testing a new controller?

reddit.com
u/scottchiefbaker — 4 months ago