Posted On October 15, 2021

The 5 Rules of Thumb of Business Presentation (To Attract Investors)

kimconnect 0 comments
blog.KimConnect.com >> Codes >> The 5 Rules of Thumb of Business Presentation (To Attract Investors)

I’m noting this here so that I can revisit these bullet points in the future…

1. Define the problem or need of the users in the market
2. Present your team or yourself as the expert who can solve this problem
3. Present the solution from the users’ perspective
4. Show a growth chart: users, revenue, traffic
5. Vision: must be realistic and credible

Credit: Justin Kan (one of the heros on my list)

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

PowerShell: Outdated Method of Sending Emails

# Credentials section $emailFrom = "[email protected]" $password = "eatYourSalad!" | ConvertTo-SecureString -AsPlainText -Force # plaintext…

PowerShell: Quick 1-Liner to Check Status of URL

The kommand: Invoke-WebRequest "https://blog.kimconnect.com" -MaximumRedirection 0 -ErrorAction SilentlyContinue | Select-Object StatusCode,StatusDescription Sample Result: StatusCode StatusDescription----------…

PowerShell: HashMap Enumeration Example – Set Active-X on Internet Explorer

function allowActiveX($zone='Trusted'){ #Source: https://learn.microsoft.com/en-us/previous-versions/troubleshoot/browsers/security-privacy/ie-security-zones-registry-entries #Reference table: #Value Setting #------------------------------ #0 My Computer #1 Local Intranet…