- What do you understand that others don’t?
- Why will you succeed?
- How big an opportunity is there?
- What problems/hurdles are you anticipating?
- Who would use your product?
- How much does customer acquisition cost?
- How will you make money?
- How much money could you make per year?
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
// no copilot | |
// develop a function that takes two args | |
// args are strings, they represent decimal integers | |
// the function return different between those numbers | |
// i.e subtraction | |
// inputA = "200" | |
// inputB = "1" |
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
I was drawn to programming, science, technology and science fiction | |
ever since I was a little kid. I can't say it's because I wanted to | |
make the world a better place. Not really. I was simply drawn to it | |
because I was drawn to it. Writing programs was fun. Figuring out how | |
nature works was fascinating. Science fiction felt like a grand | |
adventure. | |
Then I started a software company and poured every ounce of energy | |
into it. It failed. That hurt, but that part is ok. I made a lot of | |
mistakes and learned from them. This experience made me much, much |
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
import React from 'react' | |
import { connect } from 'react-redux' | |
import Actions from './Actions.js' | |
class App extends React.Component { | |
constructor(props) { | |
super(props) | |
this.addOne = this.addOne.bind(this) | |
} | |