massive refactor
This commit is contained in:
parent
033b1a54e2
commit
08bd1d739a
30 changed files with 312 additions and 300 deletions
1
_share/media/fonts
Symbolic link
1
_share/media/fonts
Symbolic link
|
|
@ -0,0 +1 @@
|
||||||
|
/Users/ronny/notes/_share/media/fonts
|
||||||
|
|
@ -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');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
1
_share/media/js/collapsible.js
Symbolic link
1
_share/media/js/collapsible.js
Symbolic link
|
|
@ -0,0 +1 @@
|
||||||
|
/Users/ronny/notes/_share/media/js/collapsible.js
|
||||||
1
_share/media/sass/_fonts.sass
Symbolic link
1
_share/media/sass/_fonts.sass
Symbolic link
|
|
@ -0,0 +1 @@
|
||||||
|
/Users/ronny/notes/_share/media/sass/_fonts.sass
|
||||||
1
_share/media/sass/_mixins.sass
Symbolic link
1
_share/media/sass/_mixins.sass
Symbolic link
|
|
@ -0,0 +1 @@
|
||||||
|
/Users/ronny/notes/_share/media/sass/_mixins.sass
|
||||||
|
|
@ -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: '”'
|
|
||||||
|
|
@ -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
|
|
||||||
87
_share/media/sass/business.sass
Normal file
87
_share/media/sass/business.sass
Normal file
|
|
@ -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
|
||||||
|
|
@ -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
|
|
||||||
|
|
||||||
1
_share/media/sass/collapsible.sass
Symbolic link
1
_share/media/sass/collapsible.sass
Symbolic link
|
|
@ -0,0 +1 @@
|
||||||
|
/Users/ronny/notes/_share/media/sass/collapsible.sass
|
||||||
1
_share/media/sass/content-overview.sass
Symbolic link
1
_share/media/sass/content-overview.sass
Symbolic link
|
|
@ -0,0 +1 @@
|
||||||
|
/Users/ronny/notes/_share/media/sass/content-overview.sass
|
||||||
1
_share/media/sass/default-org-mode.sass
Symbolic link
1
_share/media/sass/default-org-mode.sass
Symbolic link
|
|
@ -0,0 +1 @@
|
||||||
|
/Users/ronny/notes/_share/media/sass/default-org-mode.sass
|
||||||
1
_share/media/sass/font-library
Symbolic link
1
_share/media/sass/font-library
Symbolic link
|
|
@ -0,0 +1 @@
|
||||||
|
/Users/ronny/notes/_share/media/sass/font-library
|
||||||
|
|
@ -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
|
|
||||||
76
_share/media/sass/themes/golden-ledger.sass
Normal file
76
_share/media/sass/themes/golden-ledger.sass
Normal file
|
|
@ -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
|
||||||
|
|
||||||
76
_share/media/sass/themes/sienna-elegance.sass
Normal file
76
_share/media/sass/themes/sienna-elegance.sass
Normal file
|
|
@ -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
|
||||||
|
|
||||||
42
mba-main.org
42
mba-main.org
|
|
@ -1,37 +1,45 @@
|
||||||
#+title: An Entire MBA in 1 Course - Chris Haroun
|
#+title: An Entire MBA in 1 Course - Chris Haroun
|
||||||
#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../../../_share/media/css/org-mode.css" />
|
#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="_share/media/css/business.css" />
|
||||||
#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="./_share/media/css/theme-business.css" />
|
#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="_share/media/css/content-overview.css" />
|
||||||
|
|
||||||
* Links
|
* Links
|
||||||
|
#+attr_html: :class links
|
||||||
- [[../../course-listings.org][Course Listing]]
|
- [[../../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]]
|
- [[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
|
* Table of Contents
|
||||||
** Section 1 - Launching a new company
|
** Section 1 - Launching a new company
|
||||||
*** [[./mba/ch05.org][Chapter 05. How to Legally Protect Your Company]]
|
#+attr_html: :class contents-overview
|
||||||
*** [[./mba/ch07.org][Chapter 07. How to Network]]
|
- [[./mba/ch05.org][Chapter 05. How to Legally Protect Your Company]]
|
||||||
|
- [[./mba/ch07.org][Chapter 07. How to Network]]
|
||||||
|
|
||||||
** Section 2 - Business Presentations
|
** Section 2 - Business Presentations
|
||||||
*** [[./mba/ch13.org][Chapter 13. Present Like Steve Jobs]]
|
#+attr_html: :class contents-overview
|
||||||
*** [[./mba/ch14.org][Chapter 14. What to include in your Business Presentation]]
|
- [[./mba/ch13.org][Chapter 13. Present Like Steve Jobs]]
|
||||||
*** [[./mba/ch15.org][Chapter 15. Hiring and Firing]]
|
- [[./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
|
** 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]]
|
#+attr_html: :class contents-overview
|
||||||
*** [[./mba/ch19.org][Chapter 19. Recap]]
|
- [[./mba/ch18.org][Chapter 18. What is VC, How to Raise Money, Get Board of Advisors]]
|
||||||
*** [[./mba/ch20.org][Chapter 20. Sales technique]]
|
- [[./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
|
** 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]]
|
#+attr_html: :class contents-overview
|
||||||
*** [[./mba/ch24.org][Chapter 24. What Investors You Should Target + How Investors do Due Dilligence on You]]
|
- [[./mba/ch23.org][Chapter 23. VC History Review]]
|
||||||
*** [[./mba/ch25.org][Chapter 25. Security Structures]]
|
- [[./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
|
** 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
|
** Section 6 - Financial Analysis
|
||||||
*** [[./mba/ch34.org][Chapter 34. Income Statment, Balance Sheet, Financial Risk]]
|
#+attr_html: :class contents-overview
|
||||||
*** [[./mba/ch36.org][Chapter 36. Financial Rations, Leverage]]
|
- [[./mba/ch34.org][Chapter 34. Income Statment, Balance Sheet, Financial Risk]]
|
||||||
|
- [[./mba/ch36.org][Chapter 36. Financial Rations, Leverage]]
|
||||||
|
|
||||||
** Section 7 - Managing Cash Flow
|
** 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]]
|
||||||
|
|
|
||||||
|
|
@ -1,13 +1,12 @@
|
||||||
#+title: How to Legally Protect Your Company
|
#+title: How to Legally Protect Your Company
|
||||||
#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../../../../_share/media/css/org-mode.css" />
|
#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../_share/media/css/business.css" />
|
||||||
#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../_share/media/css/theme-business.css" />
|
|
||||||
#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../_share/media/css/ch05.css" />
|
|
||||||
|
|
||||||
[[./../mba-main.org][Business TOC]]
|
* Links
|
||||||
|
#+attr_html: :class links
|
||||||
|
- [[./../mba-main.org][TOC | Business]]
|
||||||
|
|
||||||
|
|
||||||
* how to legally protect your company
|
* how to legally protect your company
|
||||||
|
|
||||||
** what kind of legal entity should I set up?
|
** what kind of legal entity should I set up?
|
||||||
|
|
||||||
*** Overview
|
*** Overview
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,9 @@
|
||||||
#+title: How To Network
|
#+title: How To Network
|
||||||
#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../../../../_share/media/css/org-mode.css" />
|
#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../_share/media/css/business.css" />
|
||||||
#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../_share/media/css/theme-business.css" />
|
|
||||||
|
|
||||||
[[./../mba-main.org][Business TOC]]
|
* Links
|
||||||
|
#+attr_html: :class links
|
||||||
|
- [[./../mba-main.org][TOC | Business]]
|
||||||
|
|
||||||
* Do at least one information meeting per week
|
* Do at least one information meeting per week
|
||||||
** Helps you
|
** Helps you
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,9 @@
|
||||||
#+title: Section 2| Lesson 13 - How to Present like Steve Jobs
|
#+title: Section 2| Lesson 13 - How to Present like Steve Jobs
|
||||||
#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../../../../_share/media/css/org-mode.css" />
|
#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../_share/media/css/business.css" />
|
||||||
#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../_share/media/css/theme-business.css" />
|
|
||||||
|
|
||||||
* Links
|
* Links
|
||||||
- [[./../mba-main.org][<Back to Main MBA]]
|
#+attr_html: :class links
|
||||||
|
- [[./../mba-main.org][TOC | Business]]
|
||||||
- [[https://www.udemy.com/course/an-entire-mba-in-1-courseaward-winning-business-school-prof/learn/lecture/4282784#overview][S02:L13 - how to present like jobs]]
|
- [[https://www.udemy.com/course/an-entire-mba-in-1-courseaward-winning-business-school-prof/learn/lecture/4282784#overview][S02:L13 - how to present like jobs]]
|
||||||
|
|
||||||
* Notes
|
* Notes
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,9 @@
|
||||||
#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../../../../_share/media/css/org-mode.css" />
|
|
||||||
#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../_share/media/css/theme-business.css" />
|
|
||||||
|
|
||||||
#+title: Section 2| Lesson 14 - What to Include in Your business Presentation
|
#+title: Section 2| Lesson 14 - What to Include in Your business Presentation
|
||||||
|
#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../_share/media/css/business.css" />
|
||||||
|
|
||||||
* Links
|
* Links
|
||||||
- [[./../mba-main.org][<Back to Main MBA]]
|
#+attr_html: :class links
|
||||||
|
- [[./../mba-main.org][TOC | Business]]
|
||||||
- [[https://www.udemy.com/course/an-entire-mba-in-1-courseaward-winning-business-school-prof/learn/lecture/4282912#overview][S02:L14 - What to include in your business presentation]]
|
- [[https://www.udemy.com/course/an-entire-mba-in-1-courseaward-winning-business-school-prof/learn/lecture/4282912#overview][S02:L14 - What to include in your business presentation]]
|
||||||
|
|
||||||
* Notes
|
* Notes
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,10 @@
|
||||||
#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../../../../_share/media/css/org-mode.css" />
|
|
||||||
#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../_share/media/css/theme-business.css" />
|
|
||||||
|
|
||||||
#+title: Section 2| Lesson 15 - Hiring and Firing
|
#+title: Section 2| Lesson 15 - Hiring and Firing
|
||||||
|
#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../_share/media/css/business.css" />
|
||||||
|
|
||||||
* Links
|
* Links
|
||||||
- [[./../mba-main.org][<Back to Main MBA]]
|
#+attr_html: :class links
|
||||||
- [[https://www.udemy.com/course/an-entire-mba-in-1-courseaward-winning-business-school-prof/learn/lecture/4321730#overview][S02:L14 - Hiring and Firing]]
|
- [[./../mba-main.org][TOC | Business]]
|
||||||
|
- [[https://www.udemy.com/course/an-entire-mba-in-1-courseaward-winning-business-school-prof/learn/lecture/4321730#overview][S02:L15 - Hiring and Firing]]
|
||||||
|
|
||||||
* Notes
|
* Notes
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,9 @@
|
||||||
#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../../../../_share/media/css/org-mode.css" />
|
|
||||||
#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../_share/media/css/theme-business.css" />
|
|
||||||
|
|
||||||
#+title: Section 3| Lesson 18 - What is a VC / How to Raise Money
|
#+title: Section 3| Lesson 18 - What is a VC / How to Raise Money
|
||||||
|
#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../_share/media/css/business.css" />
|
||||||
|
|
||||||
* Links
|
* Links
|
||||||
- [[./../mba-main.org][<Back to Main MBA]]
|
#+attr_html: :class links
|
||||||
|
- [[./../mba-main.org][TOC | Business]]
|
||||||
- [[https://www.udemy.com/course/an-entire-mba-in-1-courseaward-winning-business-school-prof/learn/lecture/4282944#overview][S03:L18 - What is a VC / How to Raise Money / Get a Board of Advisors]]
|
- [[https://www.udemy.com/course/an-entire-mba-in-1-courseaward-winning-business-school-prof/learn/lecture/4282944#overview][S03:L18 - What is a VC / How to Raise Money / Get a Board of Advisors]]
|
||||||
|
|
||||||
* Notes
|
* Notes
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,9 @@
|
||||||
#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../../../../_share/media/css/org-mode.css" />
|
|
||||||
#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../_share/media/css/theme-business.css" />
|
|
||||||
|
|
||||||
#+title: Section 3| Lesson 19 - How to Improve Your Management Team + More
|
#+title: Section 3| Lesson 19 - How to Improve Your Management Team + More
|
||||||
|
#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../_share/media/css/business.css" />
|
||||||
|
|
||||||
* Links
|
* Links
|
||||||
- [[./../mba-main.org][<Back to Main MBA]]
|
- [[./../mba-main.org][TOC | Business]]
|
||||||
[[https://www.udemy.com/course/an-entire-mba-in-1-courseaward-winning-business-school-prof/learn/lecture/4282872#overview][S03:L19 - Recap]]
|
- [[https://www.udemy.com/course/an-entire-mba-in-1-courseaward-winning-business-school-prof/learn/lecture/4282872#overview][S03:L19 - Recap]]
|
||||||
|
|
||||||
* Notes
|
* Notes
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,8 @@
|
||||||
#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../../../../_share/media/css/org-mode.css" />
|
|
||||||
#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../_share/media/css/theme-business.css" />
|
|
||||||
|
|
||||||
#+title: Section 3| Lesson 20 - Sales technique
|
#+title: Section 3| Lesson 20 - Sales technique
|
||||||
|
#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../_share/media/css/business.css" />
|
||||||
|
|
||||||
* Links
|
* Links
|
||||||
- [[./../mba-main.org][<Back to Main MBA]]
|
- [[./../mba-main.org][TOC | Business]]
|
||||||
- [[https://www.udemy.com/course/an-entire-mba-in-1-courseaward-winning-business-school-prof/learn/lecture/4321862#overview][S03:L20 - Sales Technique]]
|
- [[https://www.udemy.com/course/an-entire-mba-in-1-courseaward-winning-business-school-prof/learn/lecture/4321862#overview][S03:L20 - Sales Technique]]
|
||||||
|
|
||||||
* Notes
|
* Notes
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,8 @@
|
||||||
#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../../../../_share/media/css/org-mode.css" />
|
|
||||||
#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../_share/media/css/theme-business.css" />
|
|
||||||
|
|
||||||
#+title: Section 4 | Lesson 23 - VC History is Crucial to Review
|
#+title: Section 4 | Lesson 23 - VC History is Crucial to Review
|
||||||
|
#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../_share/media/css/business.css" />
|
||||||
|
|
||||||
* Links
|
* Links
|
||||||
- [[./../mba-main.org][<Back to Main MBA]]
|
- [[./../mba-main.org][TOC | Business]]
|
||||||
- [[https://www.udemy.com/course/an-entire-mba-in-1-courseaward-winning-business-school-prof/learn/lecture/4282862#overview][S04:L23 - VC History is Crucial to Review]]
|
- [[https://www.udemy.com/course/an-entire-mba-in-1-courseaward-winning-business-school-prof/learn/lecture/4282862#overview][S04:L23 - VC History is Crucial to Review]]
|
||||||
|
|
||||||
* Notes
|
* Notes
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,8 @@
|
||||||
#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../../../../_share/media/css/org-mode.css" />
|
|
||||||
#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../_share/media/css/theme-business.css" />
|
|
||||||
|
|
||||||
#+title: Section 4 | Lesson 24 - What Investors You Should Target + How Investord do Due Dilligence on You
|
#+title: Section 4 | Lesson 24 - What Investors You Should Target + How Investord do Due Dilligence on You
|
||||||
|
#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../_share/media/css/business.css" />
|
||||||
|
|
||||||
* Links
|
* Links
|
||||||
- [[./../mba-main.org][<Back to Main MBA]]
|
- [[./../mba-main.org][TOC | Business]]
|
||||||
- [[https://www.udemy.com/course/an-entire-mba-in-1-courseaward-winning-business-school-prof/learn/lecture/4282924#overview][S04:L24 - What Investors You Should Target / Due Dilligence]]
|
- [[https://www.udemy.com/course/an-entire-mba-in-1-courseaward-winning-business-school-prof/learn/lecture/4282924#overview][S04:L24 - What Investors You Should Target / Due Dilligence]]
|
||||||
|
|
||||||
* Notes
|
* Notes
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,8 @@
|
||||||
#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../../../../_share/media/css/org-mode.css" />
|
|
||||||
#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../_share/media/css/theme-business.css" />
|
|
||||||
|
|
||||||
#+title: Section 4 | Lesson 25 - Not Understanding Security Structures can Hurt You
|
#+title: Section 4 | Lesson 25 - Not Understanding Security Structures can Hurt You
|
||||||
|
#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../_share/media/css/business.css" />
|
||||||
|
|
||||||
* Links
|
* Links
|
||||||
- [[./../mba-main.org][<Back to Main MBA]]
|
- [[./../mba-main.org][TOC | Business]]
|
||||||
- [[https://www.udemy.com/course/an-entire-mba-in-1-courseaward-winning-business-school-prof/learn/lecture/4311456#overview][S04:L25 - Not Understanding Security Structures Can Hurt You]]
|
- [[https://www.udemy.com/course/an-entire-mba-in-1-courseaward-winning-business-school-prof/learn/lecture/4311456#overview][S04:L25 - Not Understanding Security Structures Can Hurt You]]
|
||||||
|
|
||||||
* Notes
|
* Notes
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,8 @@
|
||||||
#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../../../../_share/media/css/org-mode.css" />
|
|
||||||
#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../_share/media/css/theme-business.css" />
|
|
||||||
|
|
||||||
#+title: Section 5 | Lesson 30 - Venture Capital Part 3
|
#+title: Section 5 | Lesson 30 - Venture Capital Part 3
|
||||||
|
#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../_share/media/css/business.css" />
|
||||||
|
|
||||||
* Links
|
* Links
|
||||||
- [[./../mba-main.org][<Back to Main MBA]]
|
- [[./../mba-main.org][TOC | Business]]
|
||||||
- [[https://www.udemy.com/course/an-entire-mba-in-1-courseaward-winning-business-school-prof/learn/lecture/4311466#overview][S05:L30 Venture Capital Part 3]]
|
- [[https://www.udemy.com/course/an-entire-mba-in-1-courseaward-winning-business-school-prof/learn/lecture/4311466#overview][S05:L30 Venture Capital Part 3]]
|
||||||
|
|
||||||
* Notes
|
* Notes
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,8 @@
|
||||||
#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../../../../_share/media/css/org-mode.css" />
|
|
||||||
#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../_share/media/css/theme-business.css" />
|
|
||||||
|
|
||||||
#+title: Section 6 | Lesson 34 - Balance Sheet, Cash Flow Statement
|
#+title: Section 6 | Lesson 34 - Balance Sheet, Cash Flow Statement
|
||||||
|
#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../_share/media/css/business.css" />
|
||||||
|
|
||||||
* Links
|
* Links
|
||||||
- [[./../mba-main.org][<Back to Main MBA]]
|
- [[./../mba-main.org][TOC | Business]]
|
||||||
- [[https://www.udemy.com/course/an-entire-mba-in-1-courseaward-winning-business-school-prof/learn/lecture/4311526#overview][S06:L34 Income Statement, Balance Sheet, Financial Risk]]
|
- [[https://www.udemy.com/course/an-entire-mba-in-1-courseaward-winning-business-school-prof/learn/lecture/4311526#overview][S06:L34 Income Statement, Balance Sheet, Financial Risk]]
|
||||||
- [[https://www.udemy.com/course/an-entire-mba-in-1-courseaward-winning-business-school-prof/learn/lecture/4311576#overview][S06:L35 Cash Flow Statement]]
|
- [[https://www.udemy.com/course/an-entire-mba-in-1-courseaward-winning-business-school-prof/learn/lecture/4311576#overview][S06:L35 Cash Flow Statement]]
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,8 @@
|
||||||
#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../../../../_share/media/css/org-mode.css" />
|
|
||||||
#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../_share/media/css/theme-business.css" />
|
|
||||||
|
|
||||||
#+title: Section 6 | Lesson 36 - Financial Rations, Leverage
|
#+title: Section 6 | Lesson 36 - Financial Rations, Leverage
|
||||||
|
#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../_share/media/css/business.css" />
|
||||||
|
|
||||||
* Links
|
* Links
|
||||||
- [[./../mba-main.org][<Back to Main MBA]]
|
- [[./../mba-main.org][TOC | Business]]
|
||||||
- [[https://www.udemy.com/course/an-entire-mba-in-1-courseaward-winning-business-school-prof/learn/lecture/4282978#overview][S06:L36 Financial Ratios]]
|
- [[https://www.udemy.com/course/an-entire-mba-in-1-courseaward-winning-business-school-prof/learn/lecture/4282978#overview][S06:L36 Financial Ratios]]
|
||||||
|
|
||||||
* Notes
|
* Notes
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,8 @@
|
||||||
#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../../../../_share/media/css/org-mode.css" />
|
|
||||||
#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../_share/media/css/theme-business.css" />
|
|
||||||
|
|
||||||
#+title: Section 7 | Lesson 40 - Forecasting, Budgeting, Fiscal Year
|
#+title: Section 7 | Lesson 40 - Forecasting, Budgeting, Fiscal Year
|
||||||
|
#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../_share/media/css/business.css" />
|
||||||
|
|
||||||
* Links
|
* Links
|
||||||
- [[./../mba-main.org][<Back to Main MBA]]
|
- [[./../mba-main.org][TOC | Business]]
|
||||||
- [[https://www.udemy.com/course/an-entire-mba-in-1-courseaward-winning-business-school-prof/learn/lecture/4282974#overview][S07:L40 Forecasting, Budgeting, Fiscal Year]]
|
- [[https://www.udemy.com/course/an-entire-mba-in-1-courseaward-winning-business-school-prof/learn/lecture/4282974#overview][S07:L40 Forecasting, Budgeting, Fiscal Year]]
|
||||||
|
|
||||||
* Notes
|
* Notes
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue