Algorithmic Contract Design for Crowdsourced Ranking: Warm-up: Agents With Known Equal Disutility

:::info This paper is available on arxiv under CC 4.0 license. Authors: (1) Kiriaki Frangias; (2) Andrew Lin; (3) Ellen Vitercik; (4) Manolis Zampetakis. ::: Table of Links Abstract and Introduction Warm-up: Agents with known equal disutility Agents with unknown disutilites Experiments Conclusions and future directions, References A Summary of notation B Omitted proofs from … Read more

How to Sell Your Business Model to VCs in 2024

A few weeks earlier, I received an email from a founder seeking help with his pitch deck. This deck wasn’t getting much traction, with one investor bluntly responding to it, “Your revenue model doesn’t make much sense.” And it really didn’t—at least, not on the slide: 7 different revenue streams, confusing pricing models, and zero … Read more

Premature Memoization: How to Properly Apply It – Code Smell 250

Memoization is awesome. Let’s abuse it. TL;DR: Don’t apply premature optimization too early Problems Readability Code Complexity Premature Optimization Obscured Logic Solutions Apply memoization in actual real business situations, and measure its impact through empirical benchmarks. Context Memoization can help you improve the performance of recursive functions involving redundant computations but compromise code readability and … Read more