Skip to content

Commit

Permalink
Fixing BizOps Documentation
Browse files Browse the repository at this point in the history
Fixing BizOps Documentation
  • Loading branch information
h0lybyte committed Aug 25, 2023
1 parent 8280bb4 commit ebd0e90
Show file tree
Hide file tree
Showing 12 changed files with 248 additions and 132 deletions.
7 changes: 7 additions & 0 deletions .astro/types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1503,6 +1503,13 @@ declare module 'astro:content' {
collection: "journal";
data: InferEntrySchema<"journal">
} & { render(): Render[".md"] };
"08-24.md": {
id: "08-24.md";
slug: "08-24";
body: string;
collection: "journal";
data: InferEntrySchema<"journal">
} & { render(): Render[".md"] };
"asset.mdx": {
id: "asset.mdx";
slug: "asset";
Expand Down
34 changes: 17 additions & 17 deletions src/content/.obsidian/workspace.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"state": {
"type": "markdown",
"state": {
"file": "journal/08-23.md",
"file": "journal/08-24.md",
"mode": "source",
"source": false
}
Expand Down Expand Up @@ -93,7 +93,7 @@
"state": {
"type": "backlink",
"state": {
"file": "journal/08-23.md",
"file": "journal/08-24.md",
"collapseAll": false,
"extraContext": false,
"sortOrder": "alphabetical",
Expand All @@ -110,7 +110,7 @@
"state": {
"type": "outgoing-link",
"state": {
"file": "journal/08-23.md",
"file": "journal/08-24.md",
"linksCollapsed": false,
"unlinkedCollapsed": true
}
Expand All @@ -133,7 +133,7 @@
"state": {
"type": "outline",
"state": {
"file": "journal/08-23.md"
"file": "journal/08-24.md"
}
}
}
Expand All @@ -157,18 +157,20 @@
},
"active": "1e65db65e2721f35",
"lastOpenFiles": [
"journal/08-22.md",
"theory/bizops/_investment/funding.mdx",
"theory/bizops/_investment/InvestmentGlob.astro",
"theory/bizops/_investment/funding-mdx",
"theory/bizops/_investment",
"theory/bizops/_graph/initial-setup.mdx",
"theory/bizops/_graph/beta-setup.mdx",
"theory/bizops/_graph/beta-setup,mdx",
"theory/bizops/_graph/sigma-setup.mdx",
"journal/08-23.md",
"journal/08-24.md",
"application/git/_github/GithubGlob.astro",
"application/git/_github",
"journal/08-22.md",
"stock/aapl/_charts",
"application/appwrite/_sdk/appwrite-python.mdx",
"stock/aapl/aapl.mdx",
"application/docker/_core/CoreGlob.astro",
"application/docker/_core/NotesGlob.astro",
"application/docker/_core/dockerfile.mdx",
"application/docker/_core",
"application/docker/_notes/NotesGlob.astro",
"application/docker/_notes",
"application/docker/_gui",
"journal/08-21.md",
"journal/08-20.md",
"journal/08-19.md",
Expand All @@ -190,8 +192,6 @@
"application/pocketbase/_journal/j1.md",
"application/pocketbase/_notes/pocketbase_docker.md",
"application/pocketbase/_notes/pocketbase_notes.md",
"application/pocketbase/_data/_backups/pocketbase_backups.md",
"application/pocketbase/_data/_notes/pocketbase_notes.md",
"application/pocketbase/_data/pocketbase_notes.md"
"application/pocketbase/_data/_backups/pocketbase_backups.md"
]
}
Empty file.
2 changes: 1 addition & 1 deletion src/content/journal/08-23.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ tags:

- 8:10am - I believe I got the general flow of the docker container! Yay!
- 6:51pm - Going to sync the notes in between the sessions. Okay, now I need to add github actions to the `NodePy`. so that it can build the images without having any major issues. As for the key storage, I am thinking that it would be an AES style encryption, so that there would not be any major issues.
- 7:40pm - I added the docker image creation test casing, under the workflow.
- 7:40pm - I added the docker image creation test casing, under the workflow. Going to add the Clarifai Python and then maybe cargo too.

## Quote

Expand Down
30 changes: 30 additions & 0 deletions src/content/journal/08-24.md
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.
52 changes: 52 additions & 0 deletions src/content/theory/bizops/_graph/GraphGlob.astro
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>
26 changes: 26 additions & 0 deletions src/content/theory/bizops/_graph/beta-setup.mdx
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.
20 changes: 20 additions & 0 deletions src/content/theory/bizops/_graph/initial-setup.mdx
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")
36 changes: 36 additions & 0 deletions src/content/theory/bizops/_graph/sigma-setup.mdx
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 src/content/theory/bizops/_investment/InvestmentGlob.astro
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>
))
}
19 changes: 19 additions & 0 deletions src/content/theory/bizops/_investment/funding.mdx
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/)
Loading

0 comments on commit ebd0e90

Please sign in to comment.