reorganized everything and started a new topic
This commit is contained in:
parent
95d9b7d2a6
commit
8063908a2d
14 changed files with 127 additions and 198 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
|
@ -1,6 +1,9 @@
|
||||||
# Created by https://www.toptal.com/developers/gitignore/api/sass,vim,osx
|
# Created by https://www.toptal.com/developers/gitignore/api/sass,vim,osx
|
||||||
# Edit at https://www.toptal.com/developers/gitignore?templates=sass,vim,osx
|
# Edit at https://www.toptal.com/developers/gitignore?templates=sass,vim,osx
|
||||||
|
|
||||||
|
*.html
|
||||||
|
*.css
|
||||||
|
|
||||||
### OSX ###
|
### OSX ###
|
||||||
# General
|
# General
|
||||||
.DS_Store
|
.DS_Store
|
||||||
|
|
|
||||||
Binary file not shown.
|
Before Width: | Height: | Size: 1.2 MiB |
|
|
@ -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
|
|
||||||
|
|
@ -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
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
#+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/org-mode.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/theme-business.css" />
|
||||||
#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../_share/media/css/ch05.css" />
|
#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../../_share/media/css/ch05.css" />
|
||||||
|
|
||||||
[[./../mba-main.org][Business TOC]]
|
[[./../mba-main.org][Business TOC]]
|
||||||
|
|
||||||
10
_subsections/marketing-knowledge/community.org
Normal file
10
_subsections/marketing-knowledge/community.org
Normal file
|
|
@ -0,0 +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/business.css" />
|
||||||
|
#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../../../_share/media/css/simon-squib.css" />
|
||||||
|
#+HTML_HEAD: <script src="../../../../../_share/media/js/collapsible.js"></script>
|
||||||
|
#+title: marketing knowledge: community
|
||||||
|
|
||||||
|
|
||||||
|
[[../../marketing-knowledge.org][<Back to Main Contents]]
|
||||||
|
|
||||||
|
* Notes
|
||||||
36
_subsections/marketing-knowledge/hustle.org
Normal file
36
_subsections/marketing-knowledge/hustle.org
Normal file
|
|
@ -0,0 +1,36 @@
|
||||||
|
#+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/simon-squib.css" />
|
||||||
|
#+HTML_HEAD: <script src="../../../../../_share/media/js/collapsible.js"></script>
|
||||||
|
#+title: marketing knowledge: hustle
|
||||||
|
|
||||||
|
|
||||||
|
[[../../marketing-knowledge.org][<Back to Main Contents]]
|
||||||
|
|
||||||
|
* Notes
|
||||||
|
|
||||||
|
one of the hardest things to do
|
||||||
|
- confidence
|
||||||
|
- strategy
|
||||||
|
|
||||||
|
** stickers
|
||||||
|
- cheap, doesn't have to cost money
|
||||||
|
- subliminal
|
||||||
|
- stencils work too
|
||||||
|
|
||||||
|
** make a scene
|
||||||
|
- have fun
|
||||||
|
- take a risk
|
||||||
|
|
||||||
|
*** example
|
||||||
|
got dressed up as batman for a star wars party, a bunch of
|
||||||
|
guys got into a confrontation and it made the papers
|
||||||
|
|
||||||
|
** knocking on doors
|
||||||
|
- not glamorous
|
||||||
|
- free
|
||||||
|
|
||||||
|
** wear your brand
|
||||||
|
- have your brand attached to your vehicle
|
||||||
|
- wear it on your tshirt
|
||||||
|
- everywhere you go
|
||||||
24
_subsections/marketing-knowledge/intro.org
Normal file
24
_subsections/marketing-knowledge/intro.org
Normal file
|
|
@ -0,0 +1,24 @@
|
||||||
|
#+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" />
|
||||||
|
#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../../../_share/media/css/simon-squib.css" />
|
||||||
|
#+HTML_HEAD: <script src="../../../../../_share/media/js/collapsible.js"></script>
|
||||||
|
#+title: marketing knowledge: intro
|
||||||
|
|
||||||
|
|
||||||
|
[[../../marketing-knowledge.org][<Back to Main Contents]]
|
||||||
|
|
||||||
|
* Notes
|
||||||
|
|
||||||
|
- lot of bragging about how awesome he his
|
||||||
|
- telling me im a big faggot if i dont' watch it
|
||||||
|
|
||||||
|
** types of marketing
|
||||||
|
- hustle
|
||||||
|
- community
|
||||||
|
- social
|
||||||
|
- profit
|
||||||
|
- Partner
|
||||||
|
- Paid
|
||||||
|
- data
|
||||||
|
- PR
|
||||||
|
- fuck the newspapers
|
||||||
24
business-knowledge.org
Normal file
24
business-knowledge.org
Normal file
|
|
@ -0,0 +1,24 @@
|
||||||
|
#+title: 30 Years of Business Knowledge in 2 hours - Simon Squib
|
||||||
|
#+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" />
|
||||||
|
|
||||||
|
* Playlist
|
||||||
|
1. [[https://youtu.be/9VlvbpXwLJs?si=VD9PzhAxTpyr_a4Q][intro]]
|
||||||
|
2. [[https://youtu.be/9VlvbpXwLJs?si=Or7367XBK0RmkmFz&t=177][how to start a business with no money]]
|
||||||
|
3. [[https://youtu.be/9VlvbpXwLJs?si=PSYS3MlOLMfZohKD&t=685][how to win]]
|
||||||
|
4. [[https://youtu.be/9VlvbpXwLJs?si=5ZaeaPZVMI08BmdO&t=1054][how to lose]]
|
||||||
|
5. [[https://youtu.be/9VlvbpXwLJs?si=t4GLX0FFa9UEjf7t&t=1244][how to do a mind map (business plan)]]
|
||||||
|
6. [[https://youtu.be/9VlvbpXwLJs?si=DDU3SVq1fpQb_rTu&t=1695][how to find purpose]]
|
||||||
|
7. [[https://youtu.be/9VlvbpXwLJs?si=sbq9doa9B3eMba8l&t=2074][how to find a co-founder]]
|
||||||
|
8. [[https://youtu.be/9VlvbpXwLJs?si=JiJPrRaMpcj3eHMx&t=2427][how to sell]]
|
||||||
|
9. [[https://youtu.be/9VlvbpXwLJs?si=gFv4zoiRQTB-TK-A&t=2935][how to market your business]]
|
||||||
|
10. [[https://youtu.be/9VlvbpXwLJs?si=Bx2gEijLb39D_AdN&t=3668][how to pr your business]]
|
||||||
|
11. [[https://youtu.be/9VlvbpXwLJs?si=RyYSd6if8-zWtQOB&t=4048][how to get an investor]]
|
||||||
|
12. [[https://youtu.be/9VlvbpXwLJs?si=b4DJewxs3EolxPLg&t=5002][how to get sponsors]]
|
||||||
|
13. [[https://youtu.be/9VlvbpXwLJs?si=w8CJzPxESzXmVzy2&t=5565][how to build a brand]]
|
||||||
|
14. [[https://youtu.be/9VlvbpXwLJs?si=dcuuVCk4fLDfjBwA&t=6166][how to hire grow and build]]
|
||||||
|
15. [[https://youtu.be/9VlvbpXwLJs?si=uGvdyKOcyBtyMIzn&t=6751][how to fire someone]]
|
||||||
|
16. [[https://youtu.be/9VlvbpXwLJs?si=09yKR2NCMlmuBgCC&t=7107][how to go global]]
|
||||||
|
17. [[https://youtu.be/9VlvbpXwLJs?si=3Tzk-xwuAQLVP2Li&t=7322][how to get a mentor]]
|
||||||
|
18. [[https://youtu.be/9VlvbpXwLJs?si=0fGaH5YXSqwiOYKS&t=7717][how equity works]]
|
||||||
|
19. [[https://youtu.be/9VlvbpXwLJs?si=VkT_M1gLCi-p0JvK&t=8393][how to sell your business]]
|
||||||
28
marketing-knowledge.org
Normal file
28
marketing-knowledge.org
Normal file
|
|
@ -0,0 +1,28 @@
|
||||||
|
#+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/simon-squib.css" />
|
||||||
|
#+HTML_HEAD: <script src="../../../_share/media/js/collapsible.js"></script>
|
||||||
|
|
||||||
|
#+title: 30 Years of Marketing Knowledge in 53 Minutes
|
||||||
|
|
||||||
|
Link: [[https://youtu.be/QIQYzi7IPGk?si=BK4tOS2EBDumkHtZ&t=1][30 Years of Marketing Research]]
|
||||||
|
|
||||||
|
* Notes
|
||||||
|
** [[./_subsections/marketing-knowledge/intro.org][intro]]
|
||||||
|
** [[./_subsections/marketing-knowledge/hustle.org][Hustle Marketing]]
|
||||||
|
** [[./_subsections/marketing-knowledge/community.org][Community Marketing]]
|
||||||
|
** Social Marketing
|
||||||
|
|
||||||
|
|
||||||
|
* Contents
|
||||||
|
|
||||||
|
#+attr_html: :class contents
|
||||||
|
1. [[https://youtu.be/QIQYzi7IPGk?si=BK4tOS2EBDumkHtZ&t=1][intro]]
|
||||||
|
2. [[https://youtu.be/QIQYzi7IPGk?si=E-j1eo3pAqvCQJbn&t=112][Hustle Marketing]]
|
||||||
|
3. [[https://www.youtube.com/watch?v=QIQYzi7IPGk&t=1796s][Community marketing]] *current*
|
||||||
|
4. [[https://youtu.be/QIQYzi7IPGk?si=zd0AGcjKoAlInyGV&t=720][Social marketing]]
|
||||||
|
5. [[https://youtu.be/QIQYzi7IPGk?si=iHghg-kvqH1rZemS&t=1032][Profitable Marketing]]
|
||||||
|
6. [[https://youtu.be/QIQYzi7IPGk?si=ro_r9JrriqdGJs2M&t=1456][Partner Marketing]]
|
||||||
|
7. [[https://youtu.be/QIQYzi7IPGk?si=acmLYs_MLxzE-Gf5&t=1937][Data Marketing]]
|
||||||
|
8. [[https://youtu.be/QIQYzi7IPGk?si=qQjo0XqWwSf8r0tt&t=2279][PR Marketing]]
|
||||||
|
9. [[https://youtu.be/QIQYzi7IPGk?si=RPJ9rDZyY8O9Rcat&t=2701][Brand Marketing]]
|
||||||
11
mba-main.org
11
mba-main.org
|
|
@ -1,11 +0,0 @@
|
||||||
#+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/theme-business.css" />
|
|
||||||
|
|
||||||
* 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]]
|
|
||||||
|
|
||||||
** Section 2 - Business Presentations
|
|
||||||
*** [[./mba/ch13.org][Chapter 13. Present Like Steve Jobs]]
|
|
||||||
Loading…
Add table
Reference in a new issue