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: Regex Examples

# Example 1 Simple 10-digit match $x='123-456-7890' [regex]$regex10Digits='\({0,1}\d{0,1}\){0,1}\-{0,1}(\d{3})' $areaCode=$regex10Digits.Match($x).Groups[1].Value # Example 2 IP Version 4…

Last Logon Dates of List of AD Accounts

import-module activedirectory$output=""Get-Content C:\Users\kimconnect\Desktop\targetAccounts.txt | Foreach-Object -Process{ #  cast an array object as string before using…

PowerShell: Copying Only Files From a Folder

Function (snippet): function copyOnlyFiles{ param( [Parameter(Mandatory=$true)][string]$sourceFolder, [Parameter(Mandatory=$true)][string]$destinationFolder ) $totalSizeBytes=0; # Get-ChildItem "C:\Temp"|?{!$_.PSIsContainer}|%{robocopy "C:\Temp" "C:\TempCopy" $_}…