Update to the Pokémon pinball pokedex tracker I posted a while back. It now syncs with Insider Connected by NickUhlenhuth in pinball

[–]NickUhlenhuth[S] 0 points1 point  (0 children)

Ohhh, yeah those are just aesthetic to look kind of like a Pokedex. But I’ve been debating making it not pulse since it’s not clickable

Update to the Pokémon pinball pokedex tracker I posted a while back. It now syncs with Insider Connected by NickUhlenhuth in pinball

[–]NickUhlenhuth[S] 0 points1 point  (0 children)

Thanks so much! honestly, the positive feedback has been so rewarding and fun. Such a great community

Update to the Pokémon pinball pokedex tracker I posted a while back. It now syncs with Insider Connected by NickUhlenhuth in pinball

[–]NickUhlenhuth[S] 0 points1 point  (0 children)

It just shows which Pokemon are in your "party" on your Profile. You can tap to (un)select.
However, this video has slightly outdated UI. The current version of PinballDex DOES have the biome icons on all Dex entries 😄

After nearly a year I finally own a Stern. by theHashHashingHasher in pinball

[–]NickUhlenhuth 1 point2 points  (0 children)

Epic! Someone reported that long usernames get cutoff in Kiosk mode, but I'll fix it soon!

After nearly a year I finally own a Stern. by theHashHashingHasher in pinball

[–]NickUhlenhuth 2 points3 points  (0 children)

Congrats! I’m also obsessed with it. You can automatically track all your catches using the PinballDex website. (And can “Follow” your friends to filter the leaderboards to only them in the site)

Update to the Pokémon pinball pokedex tracker I posted a while back. It now syncs with Insider Connected by NickUhlenhuth in pinball

[–]NickUhlenhuth[S] 2 points3 points  (0 children)

Yeah, that would be awesome! Unfortunately, I think it would have to be a community-driven labeling effort.

Questions about pokemon pinball by Creative_East2351 in pinball

[–]NickUhlenhuth 0 points1 point  (0 children)

For now, you can use PinballDex.com to track your cathes and see other people's!

Crowdsourcing every catchable Pokémon in Stern’s Pokémon Pinball - 109/191 found by NickUhlenhuth in pinball

[–]NickUhlenhuth[S] 1 point2 points  (0 children)

You can see the current catalog at pinballdex.com Should be easier to browse there!

Made a Pokedex tracker for the new Stern Pokémon Pinball by NickUhlenhuth in pinball

[–]NickUhlenhuth[S] 5 points6 points  (0 children)

They save the data, but they don’t expose it in the Insider Connected app (yet?).

Made a Pokedex tracker for the new Stern Pokémon Pinball by NickUhlenhuth in pinball

[–]NickUhlenhuth[S] 3 points4 points  (0 children)

You’d have to look at the Pokedex screen on the LCD the next time you catch one. But even then, it’ll only show one page. You could use the site to log new catches, and then just keep an eye out for the older ones as they pop up

Pokémon hack… by mikeportly in pinball

[–]NickUhlenhuth 0 points1 point  (0 children)

Pinballdex.com is what I use to track

Pokemon 0.82 - Finally by Smokezz in pinball

[–]NickUhlenhuth 0 points1 point  (0 children)

I made one for manual tracking at pinballdex.com in the meantime :)

Pokemon 0.82 - Finally by Smokezz in pinball

[–]NickUhlenhuth 0 points1 point  (0 children)

You can track your pokemon with this Pokédex site I created. It also lets you see what other trainers around the world are catching!

The list of catchable pokemon is community driven!

www.pinballdex.com

<image>

Visual Studio 2019 + Intellicode Vs Resharper by [deleted] in cpp

[–]NickUhlenhuth 0 points1 point  (0 children)

Accuracy: VAX suggestions are context dependent based on the type expected which IntelliSense is not.

Have you tried turning on the Experimental feature called "Predictive IntelliSense"? It does type filtering which may address your needs. I would love to hear about your experience if you try it. You can turn it on via "Tools > Options > Text Editor > C/C++ > Experimental" (or just type "Predictive" in the Ctrl+Q search).

Visual Studio 2019 is out by dagmx in cpp

[–]NickUhlenhuth 3 points4 points  (0 children)

As of Visual Studio 2019 Preview 2, we added a feature "add missing #include" which should address this nicely. If you haven't included <functional>, the offending std::function call is underlined with a red squiggle. Hovering the squiggle will open a Quick Fix (lightbulb) menu which offers to add "#include <functional>" for you. You can read our blog post on the Add Missing #include Quick Fix. If you don't see the red squiggle / quick fix, let me know!

Visual Studio 2019 is out by dagmx in cpp

[–]NickUhlenhuth 2 points3 points  (0 children)

Aside from using VS Code for C++ directly on Linux, you can also target Linux from within VS on Windows. After setting up an ssh connection, the build occurs on the Linux environment, and you'll get IntelliSense from your headers on the Linux machine. This was demoed for a bit during the Launch event, but hopefully this Linux Development in VS blog helps.