-
The Engineering Question: Can you create breakthrough technology (vs. incremental improvement)?
-
The Timing Question: Is now the right time to start this particular business?
-
The Monopoly Question: Are you starting with a big share of a small market?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int length = 10; | |
var numbers = new int[length]; | |
int r = 0; | |
for (int i = 0; i < 100000; i++) | |
{ | |
r = unchecked(r + 1); | |
numbers[r % length] = r; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Program | |
{ | |
private static string baseAddress = "http://localhost:5000/api"; | |
static async System.Threading.Tasks.Task Main(string[] args) | |
{ | |
var journey = new JourneyBuilder(new Uri(args.FirstOrDefault() ?? baseAddress)); | |
var discountDetails = new AddDiscountForm() | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
``` | |
Insurance quote people microservice. | |
rel method href | |
GET / | |
{ // Root links } | |
people:quotes GET /quotes |