I'm glad I have your site to use now.
Show HN: March Madness for Hackers
41–50 of 63 posts
Re: Show HN: March Madness for Hackers
#42Re: Show HN: March Madness for Hackers
#43Full disclosure: I released this site a few weeks ago, mostly as a side project. I submitted to Show HN but it didn't get much traction. Might be of use though.
Re: Show HN: March Madness for Hackers
#44I'd be very interested in the data and the code behind the generator function. I'd love to integrate it with my bracket-generator module (which is very basic and only does lower seed, higher seed, and random currently).
Re: Show HN: March Madness for Hackers
#45Re: Show HN: March Madness for Hackers
#46Sorry if this sounds dumb... but what's a bracket?
Re: Show HN: March Madness for Hackers
#47Using this for Buffet's Billion Dollar Bracket Challenge (because no one is going to win that anyways!)
I went to enter my bracket on Yahoo, same as I've done for the last 15 years, and it's demanding to "verify" a mobile number for me, and forcing me to agree to accept marketing txts. There's no way for me to "verify" a mobile number without agreeing to marketing txts. There's no way for me to create a bracket without "verifying" a mobile number. Yeah, no. And thus ends my 15 years of using the site for this, with an…
Re: Show HN: March Madness for Hackers
#48Re: Show HN: March Madness for Hackers
#49Could you add the last couple years' brackets and stats as an algorithm tester? Would be cool to run your algorithm against previous years to see how it would have done so you can refine it before submitting. I'm imagining coloring the final bracket green/red for correctly/incorrectly predicted games in the simulation.
Re: Show HN: March Madness for Hackers
#50function(game, team1, team2){
if (team1.rpi > team2.rpi) {
team2.winsGame();
} else {
team1.winsGame();
}
}I want to custom build from a known index via ESPN but don't if the team objects hold all the stats necessary.