Skip to content

Instantly share code, notes, and snippets.

@imvetri
imvetri / QUESTIONS.md
Created February 10, 2023 10:31 — forked from miguelmota/QUESTIONS.md
YCombinator Questions

YCombinator Questions

  • 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?
// 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"
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
@imvetri
imvetri / app.jsx
Last active August 14, 2016 05:36 — forked from samcorcos/app.jsx
Replacing return with paranthesis
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)
}