diff --git a/_share/media/fonts b/_share/media/fonts new file mode 120000 index 0000000..6f076aa --- /dev/null +++ b/_share/media/fonts @@ -0,0 +1 @@ +/Users/ronny/notes/_share/media/fonts \ No newline at end of file diff --git a/_share/media/js/collapsible.js b/_share/media/js/collapsible.js deleted file mode 100644 index ded1a8a..0000000 --- a/_share/media/js/collapsible.js +++ /dev/null @@ -1,17 +0,0 @@ -document.addEventListener('DOMContentLoaded', function() { - var headers = document.querySelectorAll('h4'); - - headers.forEach(function(header) { - header.addEventListener('click', function() { - var nextElement = header.nextElementSibling; - if (nextElement) { - var collapsibleList = nextElement.querySelector('.playlist, .notes, .contents'); - if (collapsibleList) { - header.classList.toggle('active'); - collapsibleList.classList.toggle('active'); - } - } - }); - }); -}); - diff --git a/_share/media/js/collapsible.js b/_share/media/js/collapsible.js new file mode 120000 index 0000000..c7c8b09 --- /dev/null +++ b/_share/media/js/collapsible.js @@ -0,0 +1 @@ +/Users/ronny/notes/_share/media/js/collapsible.js \ No newline at end of file diff --git a/_share/media/sass/_fonts.sass b/_share/media/sass/_fonts.sass new file mode 120000 index 0000000..1f0bc5e --- /dev/null +++ b/_share/media/sass/_fonts.sass @@ -0,0 +1 @@ +/Users/ronny/notes/_share/media/sass/_fonts.sass \ No newline at end of file diff --git a/_share/media/sass/_mixins.sass b/_share/media/sass/_mixins.sass new file mode 120000 index 0000000..a37f859 --- /dev/null +++ b/_share/media/sass/_mixins.sass @@ -0,0 +1 @@ +/Users/ronny/notes/_share/media/sass/_mixins.sass \ No newline at end of file diff --git a/_share/media/sass/_tables.sass b/_share/media/sass/_tables.sass deleted file mode 100644 index 653b3a7..0000000 --- a/_share/media/sass/_tables.sass +++ /dev/null @@ -1,23 +0,0 @@ -// Quotes Table Style -.quotes - border-collapse: collapse - width: 8em // Set the width to 8em for a much shorter table - margin: 20px 0 - border: none // Ensure no borders are applied to the table - - td - padding: 10px 0 - vertical-align: top - border: none // Remove borders between rows - - td:first-child - text-align: left - font-weight: bold - - td:last-child - text-align: right - font-style: italic - &:before - content: '“' - &:after - content: '”' diff --git a/_share/media/sass/_variables.sass b/_share/media/sass/_variables.sass deleted file mode 100644 index d80ec7a..0000000 --- a/_share/media/sass/_variables.sass +++ /dev/null @@ -1,57 +0,0 @@ -@use "sass:map" - -// Color Variables -$primary-color: #c0392b // Darker red for main headers -$secondary-color: #2c3e50 // Darker navy blue for headers -$tertiary-color: #27ae60 // Darker green for subheaders -$quaternary-color: #7d3c98 // Darker purple for smaller headers -$link-color-primary: #d35400 // Darker and more saturated orange for primary links -$link-color-secondary: #1f618d // Darker and more saturated blue for secondary links -$background-color: #e5e5e5 // Slightly darker background -$text-color: #2c3e50 // Darker text color for better contrast -$table-header-bg: #b9770e // Even darker shade of orange for table headers -$table-border-color: #aaa // Darker border color - -// Header Sizes and Colors Map -$header-styles: (h1: (size: 2em, color: $primary-color, border-size: 2px)) -$header-styles: map.set($header-styles, h2, (size: 1.75em, color: $secondary-color, border-size: 2px)) -$header-styles: map.set($header-styles, h3, (size: 1.3em, color: $tertiary-color, border-size: 1px)) -$header-styles: map.set($header-styles, h4, (size: 1.25em, color: $quaternary-color, border-size: 1px)) - -// Font Variables -$body-font: 'Fira Mono', monospace -$header-font: 'Roboto', sans-serif - -// Table Style Variables -$table-padding: 10px -$code-bg-color: #d3d3d3 // Darker code background color -$code-font-color: $text-color -$code-border-radius: 5px -$list-padding-left: 20px - -// Link Style Mixins -@mixin link-primary - color: $link-color-primary - text-decoration: none - - &:hover - color: darken($link-color-primary, 10%) - text-decoration: underline - -@mixin link-secondary - color: $link-color-secondary - text-decoration: underline - - &:hover - color: lighten($link-color-secondary, 10%) - -@mixin link-inverse - color: white - background-color: $link-color-primary - padding: 2px 4px - text-decoration: none - border-radius: 3px - - &:hover - background-color: darken($link-color-primary, 10%) - color: white diff --git a/_share/media/sass/business.sass b/_share/media/sass/business.sass new file mode 100644 index 0000000..9aea1ea --- /dev/null +++ b/_share/media/sass/business.sass @@ -0,0 +1,87 @@ +@use "sass:map" +@use "sass:color" + +@use 'default-org-mode' + +@use 'themes/sienna-elegance' as * +@use 'fonts' as fonts +@use 'mixins' as mixins-basic + +@include mixins-basic.set-header-sizes($default-header-sizes) +@include mixins-basic.set-header-colors($default-header-colors) +@include mixins-basic.set-header-margins-sides($default-header-margins-sides) +@include mixins-basic.set-header-margins-vertical($default-header-margins-vertical) + + +/* Base Styles */ +body + font-family: $primary-font + color: $text-color + background-color: $background-color + +/* Link Styles */ +a + color: $anchor-color + + &:hover + color: $anchor-hover-color + +// Lists +ul, ol + padding-left: $list-padding-left + +// Blockquotes +blockquote + border-color: $secondary-color + color: color.adjust($text-color, $lightness: 10%) + font-family: $secondary-font + +// Tables +table + color: $text-color + +th, td + border-color: $table-border-color + +th + background-color: $table-header-bg + color: $text-color + +tr:nth-child(even) + background-color: color.adjust($background-color, $lightness: 5%) + +/* Code Block Styles */ +pre, code + background-color: $code-background-color + color: $code-text-color + + font-family: $secondary-font + +/* Header Styles */ +h1, h2, h3, h4, h5, h6 + font-family: $secondary-font + +h3 + a + color: color.adjust($anchor-color, $lightness: -12%) + &:hover + color: color.adjust($anchor-hover-color, $lightness: -12%) + +// Notes +.note + background-color: $note-background-color + border-color: $note-border-color + color: $text-color + +div#postamble + border-color: $note-border-color + color: color.adjust($note-border-color, $lightness: 20%) + +/* Table of Contents Link */ +.toc + color: $primary-color + +div#table-of-contents ul li a + color: $toc-anchor-color + &:hover + color: $toc-anchor-hover-color diff --git a/_share/media/sass/collapsible.sass b/_share/media/sass/collapsible.sass deleted file mode 100644 index f5ba439..0000000 --- a/_share/media/sass/collapsible.sass +++ /dev/null @@ -1,20 +0,0 @@ -h4 - cursor: pointer - &:after - content: "▸" - font-size: 0.8em - margin-left: 10px - transition: transform 0.2s - - &.active:after - transform: rotate(90deg) - -div.outline-text-4 - display: block - - .playlist, .notes, .contents - display: none - - &.active - display: block - diff --git a/_share/media/sass/collapsible.sass b/_share/media/sass/collapsible.sass new file mode 120000 index 0000000..ee40e7b --- /dev/null +++ b/_share/media/sass/collapsible.sass @@ -0,0 +1 @@ +/Users/ronny/notes/_share/media/sass/collapsible.sass \ No newline at end of file diff --git a/_share/media/sass/content-overview.sass b/_share/media/sass/content-overview.sass new file mode 120000 index 0000000..c3fdb93 --- /dev/null +++ b/_share/media/sass/content-overview.sass @@ -0,0 +1 @@ +/Users/ronny/notes/_share/media/sass/content-overview.sass \ No newline at end of file diff --git a/_share/media/sass/default-org-mode.sass b/_share/media/sass/default-org-mode.sass new file mode 120000 index 0000000..aa84fc8 --- /dev/null +++ b/_share/media/sass/default-org-mode.sass @@ -0,0 +1 @@ +/Users/ronny/notes/_share/media/sass/default-org-mode.sass \ No newline at end of file diff --git a/_share/media/sass/font-library b/_share/media/sass/font-library new file mode 120000 index 0000000..bc08e68 --- /dev/null +++ b/_share/media/sass/font-library @@ -0,0 +1 @@ +/Users/ronny/notes/_share/media/sass/font-library \ No newline at end of file diff --git a/_share/media/sass/theme-business.sass b/_share/media/sass/theme-business.sass deleted file mode 100644 index c12f8f9..0000000 --- a/_share/media/sass/theme-business.sass +++ /dev/null @@ -1,105 +0,0 @@ -@import 'variables' - -// Base body styles -body - font-family: $body-font - font-size: 16px - line-height: 1.6 - color: $text-color - background-color: $background-color - -// Headers -@each $header, $props in $header-styles - #{$header} - font-family: $header-font - font-weight: bold - color: map-get($props, color) - font-size: map-get($props, size) - margin-top: 20px - margin-bottom: 10px - -// Default Link Style (Primary) -a - @include link-primary - -// Specific Link Styles -a.secondary - @include link-secondary - -a.inverse - @include link-inverse - -h3 - border-top: solid 1px $tertiary-color - -h4 a - margin-left: 2em - @include link-secondary - -// Tables -table - width: 100% - border-collapse: collapse - margin: 20px 0 - font-size: 14px - -th, td - padding: $table-padding - text-align: left - border-bottom: 1px solid $table-border-color - -th - background-color: $table-header-bg - color: white - -tr:nth-child(even) - background-color: lighten($table-border-color, 20%) - -// Special Classes -.positives-negatives - th, td - text-align: center - padding: 12px - tr:nth-child(even) - background-color: lighten($tertiary-color, 30%) - th - background-color: $tertiary-color - color: white - -.tax-bracket - th, td - padding: 8px - text-align: right - th - background-color: $primary-color - color: white - -.ip-recap - th, td - padding: 10px - text-align: left - th - background-color: $quaternary-color - color: white - -// Code Blocks -pre, code - background-color: $code-bg-color - padding: 10px - border-radius: $code-border-radius - font-family: $body-font - color: $code-font-color - overflow-x: auto - font-size: 14px - -// Lists -ul, ol - margin-left: $list-padding-left - padding-left: $list-padding-left - list-style-position: inside - -li - margin-bottom: 5px - -img - width: 20em diff --git a/_share/media/sass/themes/golden-ledger.sass b/_share/media/sass/themes/golden-ledger.sass new file mode 100644 index 0000000..724faad --- /dev/null +++ b/_share/media/sass/themes/golden-ledger.sass @@ -0,0 +1,76 @@ +// _variables.sass + +@use "sass:map" +@use "sass:color" +@use '../fonts' as fonts + +$list-padding-left: 1.2em + +// Color Variables + +// Colors + +$primary-color: #0056b3 // Rich navy blue for links +$secondary-color: #f5b800 // Golden yellow for secondary elements +$tertiary-color: #198754 // Professional green for tertiary elements +$quaternary-color: #6c757d // Muted gray for highlights +$quinary-color: #d63384 // Refined pinkish-red for subtle accents + +$code-background-color: #2d2f33 // Softer dark gray-blue for code blocks +$code-text-color: #e8e9eb // Light gray for code text + +$note-background-color: #f4f4f6 // Light grayish-neutral for note background +$note-border-color: $quinary-color // Matches the refined pinkish-red accent + +// Text +$text-color: #2b2c2f // Dark gray with a slight warmth for text +$background-color: #f5f5f7 // Soft light gray for background, reducing eye strain + +// Links, Anchors +$anchor-color: color.adjust($primary-color, $lightness: 15%) +$anchor-hover-color: color.adjust($primary-color, $lightness: -10%) +$toc-anchor-color: color.adjust($secondary-color, $lightness: -5%) +$toc-anchor-hover-color: color.adjust($secondary-color, $lightness: -10%) + +// Tables +$table-header-bg: #e0e0e5 // Light neutral gray for table headers +$table-border-color: #b5b5b8 // Subtle gray for borders + +$default-header-sizes: () +$default-header-sizes: map.set($default-header-sizes, h1, 2.5em) +$default-header-sizes: map.set($default-header-sizes, h2, 2em) +$default-header-sizes: map.set($default-header-sizes, h3, 1.8em) +$default-header-sizes: map.set($default-header-sizes, h4, 1.4em) +$default-header-sizes: map.set($default-header-sizes, h5, 1.2em) +$default-header-sizes: map.set($default-header-sizes, h6, 1.1em) + +$default-header-colors: () +$default-header-colors: map.set($default-header-colors, h1, $primary-color) +$default-header-colors: map.set($default-header-colors, h2, $secondary-color) +$default-header-colors: map.set($default-header-colors, h3, $tertiary-color) +$default-header-colors: map.set($default-header-colors, h4, $quaternary-color) + +// Initialize empty maps +$default-header-margins-sides: () +$default-header-margins-vertical: () + +// Dynamically populate sides map +$default-header-margins-sides: map.set($default-header-margins-sides, h1, (left: 0, right: 0)) +$default-header-margins-sides: map.set($default-header-margins-sides, h2, (left: 0, right: 0)) +$default-header-margins-sides: map.set($default-header-margins-sides, h3, (left: 0, right: 0)) +$default-header-margins-sides: map.set($default-header-margins-sides, h4, (left: 0, right: 0)) +$default-header-margins-sides: map.set($default-header-margins-sides, h5, (left: 0, right: 0)) +$default-header-margins-sides: map.set($default-header-margins-sides, h6, (left: 0, right: 0)) + +// Dynamically populate vertical map +$default-header-margins-vertical: map.set($default-header-margins-vertical, h1, (top: 1em, bottom: 0.5em)) +$default-header-margins-vertical: map.set($default-header-margins-vertical, h2, (top: 1em, bottom: 0em)) +$default-header-margins-vertical: map.set($default-header-margins-vertical, h3, (top: 0em, bottom: 0.5em)) +$default-header-margins-vertical: map.set($default-header-margins-vertical, h4, (top: 0em, bottom: 0.5em)) +$default-header-margins-vertical: map.set($default-header-margins-vertical, h5, (top: 1em, bottom: 0.5em)) +$default-header-margins-vertical: map.set($default-header-margins-vertical, h6, (top: 1em, bottom: 0.5em)) + +// Fonts +$primary-font: 'Roboto Slab', serif // Professional serif font for primary content +$secondary-font: 'Open Sans', sans-serif // Clean sans-serif for secondary content + diff --git a/_share/media/sass/themes/sienna-elegance.sass b/_share/media/sass/themes/sienna-elegance.sass new file mode 100644 index 0000000..029e0b1 --- /dev/null +++ b/_share/media/sass/themes/sienna-elegance.sass @@ -0,0 +1,76 @@ +// _variables.sass + +@use "sass:map" +@use "sass:color" +@use '../fonts' as fonts + +$list-padding-left: 1.2em + +// Color Variables + +// Colors + +$primary-color: #8c6239 // Warm brown for links +$secondary-color: #c69c6d // Light tan for secondary elements +$tertiary-color: #7b8a4f // Olive green for tertiary elements +$quaternary-color: #b4b7b4 // Muted gray for highlights +$quinary-color: #d67474 // Subtle coral for accents + +$code-background-color: #fdf6e3 // Warm beige for code blocks +$code-text-color: #657b83 // Muted teal-gray for code text + +$note-background-color: #f6eee0 // Soft beige for note background +$note-border-color: $quinary-color // Matches the coral accent + +// Text +$text-color: #4d4d4d // Rich dark gray for text +$background-color: #fdfaf6 // Warm light beige for background + +// Links, Anchors +$anchor-color: color.adjust($primary-color, $lightness: 10%) +$anchor-hover-color: color.adjust($primary-color, $lightness: -10%) +$toc-anchor-color: color.adjust($secondary-color, $lightness: -5%) +$toc-anchor-hover-color: color.adjust($secondary-color, $lightness: -10%) + +// Tables +$table-header-bg: #ede0d1 // Light warm tan for table headers +$table-border-color: #cabfa5 // Soft brown-gray for borders + +$default-header-sizes: () +$default-header-sizes: map.set($default-header-sizes, h1, 2.5em) +$default-header-sizes: map.set($default-header-sizes, h2, 2em) +$default-header-sizes: map.set($default-header-sizes, h3, 1.8em) +$default-header-sizes: map.set($default-header-sizes, h4, 1.4em) +$default-header-sizes: map.set($default-header-sizes, h5, 1.2em) +$default-header-sizes: map.set($default-header-sizes, h6, 1.1em) + +$default-header-colors: () +$default-header-colors: map.set($default-header-colors, h1, $primary-color) +$default-header-colors: map.set($default-header-colors, h2, $secondary-color) +$default-header-colors: map.set($default-header-colors, h3, $tertiary-color) +$default-header-colors: map.set($default-header-colors, h4, $quaternary-color) + +// Initialize empty maps +$default-header-margins-sides: () +$default-header-margins-vertical: () + +// Dynamically populate sides map +$default-header-margins-sides: map.set($default-header-margins-sides, h1, (left: 0, right: 0)) +$default-header-margins-sides: map.set($default-header-margins-sides, h2, (left: 0, right: 0)) +$default-header-margins-sides: map.set($default-header-margins-sides, h3, (left: 0, right: 0)) +$default-header-margins-sides: map.set($default-header-margins-sides, h4, (left: 0, right: 0)) +$default-header-margins-sides: map.set($default-header-margins-sides, h5, (left: 0, right: 0)) +$default-header-margins-sides: map.set($default-header-margins-sides, h6, (left: 0, right: 0)) + +// Dynamically populate vertical map +$default-header-margins-vertical: map.set($default-header-margins-vertical, h1, (top: 1em, bottom: 0.5em)) +$default-header-margins-vertical: map.set($default-header-margins-vertical, h2, (top: 1em, bottom: 0em)) +$default-header-margins-vertical: map.set($default-header-margins-vertical, h3, (top: 0em, bottom: 0.5em)) +$default-header-margins-vertical: map.set($default-header-margins-vertical, h4, (top: 0em, bottom: 0.5em)) +$default-header-margins-vertical: map.set($default-header-margins-vertical, h5, (top: 1em, bottom: 0.5em)) +$default-header-margins-vertical: map.set($default-header-margins-vertical, h6, (top: 1em, bottom: 0.5em)) + +// Fonts +$primary-font: 'Source Serif Pro', serif // Elegant serif for primary content +$secondary-font: 'Noto Sans', sans-serif // Clean sans-serif for secondary content + diff --git a/mba-main.org b/mba-main.org index a2a50ba..34f0dd3 100644 --- a/mba-main.org +++ b/mba-main.org @@ -1,37 +1,45 @@ #+title: An Entire MBA in 1 Course - Chris Haroun -#+HTML_HEAD: -#+HTML_HEAD: +#+HTML_HEAD: +#+HTML_HEAD: * Links +#+attr_html: :class links - [[../../course-listings.org][Course Listing]] - [[https://www.udemy.com/course/an-entire-mba-in-1-courseaward-winning-business-school-prof/learn/lecture/4589926#overview][Udemy MBA course]] * Table of Contents ** Section 1 - Launching a new company -*** [[./mba/ch05.org][Chapter 05. How to Legally Protect Your Company]] -*** [[./mba/ch07.org][Chapter 07. How to Network]] +#+attr_html: :class contents-overview +- [[./mba/ch05.org][Chapter 05. How to Legally Protect Your Company]] +- [[./mba/ch07.org][Chapter 07. How to Network]] ** Section 2 - Business Presentations -*** [[./mba/ch13.org][Chapter 13. Present Like Steve Jobs]] -*** [[./mba/ch14.org][Chapter 14. What to include in your Business Presentation]] -*** [[./mba/ch15.org][Chapter 15. Hiring and Firing]] +#+attr_html: :class contents-overview +- [[./mba/ch13.org][Chapter 13. Present Like Steve Jobs]] +- [[./mba/ch14.org][Chapter 14. What to include in your Business Presentation]] +- [[./mba/ch15.org][Chapter 15. Hiring and Firing]] ** Section 3 - Venture Capital part 1: How to Raise Money -*** [[./mba/ch18.org][Chapter 18. What is VC, How to Raise Money, Get Board of Advisors]] -*** [[./mba/ch19.org][Chapter 19. Recap]] -*** [[./mba/ch20.org][Chapter 20. Sales technique]] +#+attr_html: :class contents-overview +- [[./mba/ch18.org][Chapter 18. What is VC, How to Raise Money, Get Board of Advisors]] +- [[./mba/ch19.org][Chapter 19. Recap]] +- [[./mba/ch20.org][Chapter 20. Sales technique]] ** Section 4 - Venture Capital part 2: Security/ Legal Structures to Protect you and make you more money -*** [[./mba/ch23.org][Chapter 23. VC History Review]] -*** [[./mba/ch24.org][Chapter 24. What Investors You Should Target + How Investors do Due Dilligence on You]] -*** [[./mba/ch25.org][Chapter 25. Security Structures]] +#+attr_html: :class contents-overview +- [[./mba/ch23.org][Chapter 23. VC History Review]] +- [[./mba/ch24.org][Chapter 24. What Investors You Should Target + How Investors do Due Dilligence on You]] +- [[./mba/ch25.org][Chapter 25. Security Structures]] ** Section 5 - Investor Valuation Topics and Dilution -*** [[./mba/ch30.org][Chapter 30. Case Study on How to Deal with VC Firms Investing in Your Company]] +#+attr_html: :class contents-overview +- [[./mba/ch30.org][Chapter 30. Case Study on How to Deal with VC Firms Investing in Your Company]] ** Section 6 - Financial Analysis -*** [[./mba/ch34.org][Chapter 34. Income Statment, Balance Sheet, Financial Risk]] -*** [[./mba/ch36.org][Chapter 36. Financial Rations, Leverage]] +#+attr_html: :class contents-overview +- [[./mba/ch34.org][Chapter 34. Income Statment, Balance Sheet, Financial Risk]] +- [[./mba/ch36.org][Chapter 36. Financial Rations, Leverage]] ** Section 7 - Managing Cash Flow -*** [[./mba/ch40.org][Chapter40. Forecasting, Budgeting, Fiscal Year]] +#+attr_html: :class contents-overview +- [[./mba/ch40.org][Chapter40. Forecasting, Budgeting, Fiscal Year]] diff --git a/mba/ch05.org b/mba/ch05.org index 1f45019..9290440 100644 --- a/mba/ch05.org +++ b/mba/ch05.org @@ -1,13 +1,12 @@ #+title: How to Legally Protect Your Company -#+HTML_HEAD: -#+HTML_HEAD: -#+HTML_HEAD: +#+HTML_HEAD: -[[./../mba-main.org][Business TOC]] +* Links +#+attr_html: :class links +- [[./../mba-main.org][TOC | Business]] * how to legally protect your company - ** what kind of legal entity should I set up? *** Overview diff --git a/mba/ch07.org b/mba/ch07.org index 7c1afb4..8bd88a1 100644 --- a/mba/ch07.org +++ b/mba/ch07.org @@ -1,8 +1,9 @@ #+title: How To Network -#+HTML_HEAD: -#+HTML_HEAD: +#+HTML_HEAD: -[[./../mba-main.org][Business TOC]] +* Links +#+attr_html: :class links +- [[./../mba-main.org][TOC | Business]] * Do at least one information meeting per week ** Helps you diff --git a/mba/ch13.org b/mba/ch13.org index ac705d2..6d78315 100644 --- a/mba/ch13.org +++ b/mba/ch13.org @@ -1,9 +1,9 @@ #+title: Section 2| Lesson 13 - How to Present like Steve Jobs -#+HTML_HEAD: -#+HTML_HEAD: +#+HTML_HEAD: * Links -- [[./../mba-main.org][ -#+HTML_HEAD: - #+title: Section 2| Lesson 14 - What to Include in Your business Presentation +#+HTML_HEAD: * Links -- [[./../mba-main.org][ -#+HTML_HEAD: - #+title: Section 2| Lesson 15 - Hiring and Firing +#+HTML_HEAD: * Links -- [[./../mba-main.org][ -#+HTML_HEAD: - #+title: Section 3| Lesson 18 - What is a VC / How to Raise Money +#+HTML_HEAD: * Links -- [[./../mba-main.org][ -#+HTML_HEAD: - #+title: Section 3| Lesson 19 - How to Improve Your Management Team + More +#+HTML_HEAD: * Links -- [[./../mba-main.org][ -#+HTML_HEAD: - #+title: Section 3| Lesson 20 - Sales technique +#+HTML_HEAD: * Links -- [[./../mba-main.org][ -#+HTML_HEAD: - #+title: Section 4 | Lesson 23 - VC History is Crucial to Review +#+HTML_HEAD: * Links -- [[./../mba-main.org][ -#+HTML_HEAD: - #+title: Section 4 | Lesson 24 - What Investors You Should Target + How Investord do Due Dilligence on You +#+HTML_HEAD: * Links -- [[./../mba-main.org][ -#+HTML_HEAD: - #+title: Section 4 | Lesson 25 - Not Understanding Security Structures can Hurt You +#+HTML_HEAD: * Links -- [[./../mba-main.org][ -#+HTML_HEAD: - #+title: Section 5 | Lesson 30 - Venture Capital Part 3 +#+HTML_HEAD: * Links -- [[./../mba-main.org][ -#+HTML_HEAD: - #+title: Section 6 | Lesson 34 - Balance Sheet, Cash Flow Statement +#+HTML_HEAD: * Links -- [[./../mba-main.org][ -#+HTML_HEAD: - #+title: Section 6 | Lesson 36 - Financial Rations, Leverage +#+HTML_HEAD: * Links -- [[./../mba-main.org][ -#+HTML_HEAD: - #+title: Section 7 | Lesson 40 - Forecasting, Budgeting, Fiscal Year +#+HTML_HEAD: * Links -- [[./../mba-main.org][