Files
personal-site/source/pages/bookkeeping.html
T
2026-08-28 13:14:15 +02:00

109 lines
3.8 KiB
HTML

{{define "nav"}}
<div>
<p class="sidebar-label">navigate</p>
<div class="sidebar-links">
<a href="#about">about</a>
<a href="#product">product</a>
<a href="#install">Installation</a>
</div>
</div>
<div>
<p class="sidebar-label">links</p>
<div class="sidebar-links">
<a href="https://git.samantha42.xyz/samantha/accounting/releases">git repo</a>
</div>
</div>
<div>
<p class="sidebar-label">subjects</p>
<div class="skill-list">
<div class="skill-item">opinion</div>
<div class="skill-item">due diligence</div>
<div class="skill-item">performance</div>
</div>
</div>
{{end}}
{{define "body"}}
<section class="hero" id="about">
<p class="hero-eyebrow">bookkeeping · 2026</p>
<h1>Administration<br><span>infrastructure</span>
</h1>
<p class="hero-bio">
buildout of internal tooling the hardship of this endiver and leason learn of programming for reliability and easy use.
</p>
</section>
<section id="paradigms">
<div class="section-head">
<h2>Record Keeping paradigm</h2>
</div>
<div class="exp-card">
<div class="exp-header">
<span class="exp-title">Emultable entries/data</span>
</div>
<p class="exp-body">
Book keeping and other record keeping tasks, benefit of not having a real deletation of data/infomation. Rather have a record of change.
<br>
</p>
</div>
<br>
<div style=" display: flex;">
<p class="exp-body">
records i have logged as "events" that is the real dated action of the company, this could be a purchase of inventory or sale of finished product.
The underlying "entry" contain the credit or debit value posted into a "account" that is referenced to a book section like liquidity/cash or deprestion of assset and the liabilities the compnay may have.
<br>
All this infomation is inserted into sqlite tables. The database is very cheap regarding storage.
<br>But the attachments to events i have compressed as these mostly pdf are significantly more expensive.
</p>
<img style="width: 25rem; padding: 10px;" src="/static/images/sql.png">
</div>
</section>
<section id="product">
<div class="section-head">
<h2>Web based access</h2>
</div>
<div class="exp-card">
<div class="exp-header">
<span class="exp-title">minimal</span>
</div>
<p class="exp-body">
later versions will have more user account restricted access, in this beta version, web access is consider the same user.
<br>
I can assume all actions is myself as i self host on my local network.
</p>
</div>
<br>
<div style=" display: flex;">
<p class="exp-body">
</p>
</div>
</section>
<section id="install">
<div class="section-head">
<h2>Installation Guide</h2>
</div>
<div class="exp-card">
<div class="exp-header">
<span class="exp-title">Independent Equity Research</span>
<span class="exp-tag">finance</span>
</div>
<p class="exp-body">Fundamental analysis using SEC filings (10-K, 10-Q) and earnings reports. Assess
profitability, liquidity, risk factors, and long-term business sustainability. Handle incomplete or
low-transparency information through structured cross-validation.</p>
</div>
</section>
{{end}}