-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixing BizOps Documentation
- Loading branch information
Showing
12 changed files
with
248 additions
and
132 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
--- | ||
layout: ../../layouts/theme/mdx.astro | ||
title: "August : 24" | ||
category: Daily | ||
date: 2023-08-24 | ||
client: Self | ||
img: https://images.unsplash.com/photo-1604050170221-aed634784f64?fit=crop&q=85&w=1400&h=700 | ||
description: Daily Log for August, 24 of each year. | ||
tags: | ||
- daily | ||
--- | ||
|
||
## Notes | ||
|
||
- 8:40am - Nvdia's bubble is insane but also the fact that they have a margin of around almost 70% is mind blowing. | ||
- 9:45am - Okay we are seeing some pull back from the markets but I need to focus on some of the stuff for work, so I will keep this journal a bit small in that sense. | ||
- 6:00pm - Finally finished up with the general work related tasks, the backup recovery is still having some issues that I need to migrate and fix but I will test case that on my own time. | ||
- 7:20pm - Currently making sure all my accounts are ready for the hackathon tomorrow and that includes making sure we have the basics out of the way. | ||
- 8:08pm - There was an issue with the Business operations aka BizOps document not rendering the graphs, so I will fix that right now. | ||
|
||
## Quote | ||
|
||
> If you do not express your own original ideas, if you do not listen to your own being, you will have betrayed yourself. | ||
> — <cite>Rollo May</cite> | ||
--- | ||
|
||
## Tasks | ||
|
||
- [x] Prep for Hackathon. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
--- | ||
const graphs = await Astro.glob('./*.md*'); | ||
import MDXJS from '@w/MDXJS.astro'; | ||
--- | ||
|
||
{ | ||
graphs.map((graph) => ( | ||
<MDXJS transparent={false}> | ||
<div> | ||
<article class=""> | ||
<h2>{graph.frontmatter.title}</h2> | ||
<p>{graph.frontmatter.description}</p> | ||
|
||
<graph.Content /> | ||
</article> | ||
</div> | ||
</MDXJS> | ||
)) | ||
} | ||
|
||
<script> | ||
/** | ||
* Originally from https://github.com/JuanM04 | ||
* Taken from https://github.com/withastro/astro/issues/4433#issuecomment-1584019991 | ||
* @params {HTMLCollectionOf<HTMLElement>} graphs | ||
*/ | ||
async function renderDiagrams(graphs) { | ||
const { default: mermaid } = await import('mermaid'); | ||
mermaid.initialize({ | ||
startOnLoad: false, | ||
fontFamily: 'var(--sans-font)', | ||
// @ts-ignore This works, but TS expects a enum for some reason | ||
theme: 'dark', | ||
}); | ||
|
||
for (const graph of graphs) { | ||
const content = graph.getAttribute('data-content'); | ||
if (!content) continue; | ||
let svg = document.createElement('svg'); | ||
const id = (svg.id = 'mermaid-' + Math.round(Math.random() * 100000)); | ||
graph.appendChild(svg); | ||
mermaid.render(id, content).then((result) => { | ||
graph.innerHTML = result.svg; | ||
}); | ||
} | ||
} | ||
|
||
const graphs = document.getElementsByClassName('mermaid'); | ||
if (document.getElementsByClassName('mermaid').length > 0) { | ||
renderDiagrams(graphs); | ||
} | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
--- | ||
title: Beta Setup | ||
description: | | ||
Init. Beta Business Setup | ||
--- | ||
|
||
|
||
```mermaid | ||
graph | ||
A["Holding Company (LLC)"] --> B["Investment Company (LLC)"] | ||
A --> C["Finance Co. (LLC)"] | ||
A --> D["Parent Co. (LLC)"] | ||
B --> E["VC Co. (LLC)"] | ||
E --> I["Z90 Studios (LLC)"] | ||
I --> J["Arteematic.com (LLC)"] | ||
I --> K["Other Projects (Etc.)"] | ||
``` | ||
|
||
Name | Description | ||
---- | ---- | ||
Holding Company | To remove liability from me, anonymous based in Wyoming. Only owns shares in other companies. | ||
Investment Company | To shelter any risks the VC company could face by sponsoring, or etc. | ||
VC Co. | Actually owns shares in the companies that make the money. | ||
Finance Co. | Accountant & Law Firm for the Holding Company | ||
Parent Co. | Operating Company. These are the ones that handle operations within this structure. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
--- | ||
title: Initial Setup | ||
description: | | ||
Initial Organizational Structure | ||
--- | ||
|
||
### Initital Setup | ||
|
||
```mermaid | ||
graph TD | ||
A["Holding Company (LLC)"] --> B["Z90 Studios (LLC)"] | ||
B --> C["Arteematic.com (LLC)"] | ||
B --> D["Other Projects (Etc.)"] | ||
linkStyle default stroke:white | ||
``` | ||
- Setup the holding company with the Wyoming Law Firm | ||
- Search the terms Real Estate | ||
- ("Digital Real Estate") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
--- | ||
title: Sigma Setup | ||
description: | | ||
Sigma business operations setup | ||
--- | ||
|
||
|
||
### Sigma Setup | ||
|
||
```mermaid | ||
graph | ||
A["0. Holding Company"] --> B["1. Investment Company"] | ||
A --> C["1. Finance Co."] | ||
A --> D["1. Parent Co."] | ||
B --> E["2. Operating Co."] | ||
D --> EM["2. Holding Co. (2)"] | ||
EM --> RE["3. Real Estate (2)"] | ||
RE --> LE["4. Leasing Co. (2)"] | ||
E --> F["3. VC Co."] | ||
E --> G["3. Real Estate Co."] | ||
G --> H["4. Leasing Co."] | ||
F --> I["4. Z90 Studios"] | ||
I --> J["5. Arteematic.com"] | ||
I --> K["5. Other Projects"] | ||
``` | ||
|
||
Name | Description | ||
---- | ---- | ||
Holding Company | To remove liability from me, anonymous based in Wyoming. Only owns shares in other companies. | ||
Investment Company | To shelter any risks the VC company could face by sponsoring, or etc. | ||
VC Co. | Actually owns shares in the companies that make the money. | ||
Finance Co. | Accountant & Law Firm for the Holding Company | ||
Parent Co. | Operating Company. These are the ones that handle operations within thin this structure. | ||
|
||
When you buy the property, the leasing co you have has no direct connection to the actual property owner. |
19 changes: 19 additions & 0 deletions
19
src/content/theory/bizops/_investment/InvestmentGlob.astro
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
--- | ||
const investment = await Astro.glob('./*.md*'); | ||
import MDXJS from '@w/MDXJS.astro'; | ||
--- | ||
{ | ||
investment.map((note) => ( | ||
<MDXJS transparent={false}> | ||
<div> | ||
<article class=""> | ||
<h2>{note.frontmatter.title}</h2> | ||
<p>{note.frontmatter.description}</p> | ||
|
||
<note.Content /> | ||
</article> | ||
</div> | ||
</MDXJS> | ||
)) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
--- | ||
title: Funding Notes | ||
description: | | ||
Funding Notes | ||
--- | ||
|
||
### Funding Information | ||
|
||
It takes money to make money! | ||
Capital and access to credit/debt markets are two fundamental areas when it comes to company health, formation and its future. | ||
|
||
### VC | ||
|
||
Venture Capital is a common source for funding when dealing with startups. | ||
|
||
Here are a couple popular references to reach out once your MVP and strucutre is ready. | ||
|
||
- [AirTable of Seed VCs](https://airtable.com/shrkohpeE2AO2ldeq/tbl5Q8N7NuW22z5Bt?backgroundColor=cyan&viewControls=on) | ||
- [VCSheet](https://www.vcsheet.com/) |
Oops, something went wrong.