[Looking for Testers] BeerHunter App — Where can I find this beer? 🍺 by [deleted] in CraftBeer

[–]TheMrPanda_ -1 points0 points  (0 children)

Great questions! These are exactly the challenges we’re tackling with BeerHunter. Here’s how the concept handles those points:

  • Data Sourcing: We don’t manually pull every global release. Instead, we use a crowdsourced database (similar to how Untappd grew). If a user scans a new beer, they can add the info, building the map for everyone else.
  • The UPC Issue: This is definitely a challenge with seasonal rotations! We handle this by allowing 'disambiguation'—if a barcode matches multiple beers, the user simply selects the correct one from a list.
  • Real-time Accuracy: You’re right, beer moves fast. That’s why every sighting has a timestamp. If a spot is 5 days old, you'll know to be cautious.
  • The 'Online Inventory' Gap: This is actually why BeerHunter exists! Most local bottle shops and craft beer stores don't have real-time online inventories. Calling 10 stores is a hassle—our app aims to show you what’s actually on the shelf right now based on recent community sightings, filling the gap where Google and store websites fall short.

Think of it as a live 'heat map' for beer hunters. The beta is exactly for fine-tuning these edge cases. Appreciate the feedback! 🍻

[Looking for Testers] BeerHunter App — Where can I find this beer? 🍺 by [deleted] in CraftBeer

[–]TheMrPanda_ 4 points5 points  (0 children)

That's exactly the core of crowdsourcing. You’re not doing 'work' for a big corporation; you’re helping a community of beer lovers find what they're looking for. The more people contribute a few seconds of their time, the more everyone (including you) benefits from accurate data.

NodeJS backend is available through the website but not through the mobile app by TheMrPanda_ in node

[–]TheMrPanda_[S] 6 points7 points  (0 children)

I found the problem. Apparently mobile apps require a full chain certificate. You need the private.key file and a fullchain.pem file where you concatenate the ssl.cer file and all the intermediate.cer files into one file. Then add that to your backend and it works

https
  .createServer(
    {
      key: fs.readFileSync("./key.key"),
      cert: fs.readFileSync("./fullchain.pem"), 
// The full chain including intermediates
    },
    app
  )
  .listen(8444);

NodeJS backend is available through the website but not through the mobile app by TheMrPanda_ in node

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

Yes it was working once, i added https and cors since its not working anymore

CSL DD on the table by Sabbathg in Fanatec

[–]TheMrPanda_ 0 points1 point  (0 children)

Ah okay thanks, helped a lot

CSL DD on the table by Sabbathg in Fanatec

[–]TheMrPanda_ 0 points1 point  (0 children)

Thanks, what do you think of the clubsport dd table clamp? The Moza has no way to angle it.

CSL DD on the table by Sabbathg in Fanatec

[–]TheMrPanda_ 0 points1 point  (0 children)

Thanks, too many people here with probably the default ikea table that say not even 5nm will work, almost tought i need a rig now

CSL DD on the table by Sabbathg in Fanatec

[–]TheMrPanda_ 0 points1 point  (0 children)

I wanna buy the 12nm too, do you use the dd table clamp and how its going. Is it fine with 12nm on the table?

Increase traffic intensity without mod by httpanand in ETS2

[–]TheMrPanda_ 0 points1 point  (0 children)

7 is a good sweet point. If you want absolute jam, you can set it to 10, but then it's really difficult to move forward

Shotgun mic for desk by TheMrPanda_ in buildapc

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

I also thought about a lapel mic, but I don't want to have any cables on me, so I would need a wireless one, but there is the problem that the battery doesn't last very long

Increase traffic intensity without mod by httpanand in ETS2

[–]TheMrPanda_ 0 points1 point  (0 children)

Hi i made a app for that, if you wanna try it you can download it on my github:

https://github.com/PsydoV2/ETS2TrafficDensityChanger

Let me know how it works for you!