move files around and add email options

This commit is contained in:
Trowbridge 2019-01-10 16:24:17 -05:00
parent fc9e9af717
commit dc6439c94b
11 changed files with 186 additions and 241 deletions

View File

@ -0,0 +1,3 @@
iredmail
mailinabox
mailcow

View File

@ -1,17 +0,0 @@
what i'm good at
-------------------------
* Modeling historic and forecasted financial & other events
1. Employer - Supply Chain Team - Ground up forecasting of sales, inventory, and operations which feeds financial projections down to cash flow
2. Employer - Sales Team - Build sales database (Postgres) and analytics for the sales team synced with financials & ledger
3. Employer - Ops Team - Develop detailed standard cost transaction ledger for production analytics syned with financials & ledger
4. Employer - Finance Team - Develop Ad-Hoc consolidations and real-time financial statement logic
5. Side Proj- brother Seth & I - Develop basic general ledger application (in-progress) implementing the concept of basic pecuniary record (Goetz, 1939)
6. Side Proj- brother & I - Develop ETL-like tool for quick storage of data from third parties (bank data, competitor products, API results, etc)
* Dealing with limited-value tasks that need to be done
1. State & Local registrations; filings
2. Bank recs, account recs
3. Integrity of balance sheet
4. Audits, formal financial statements

View File

@ -1,2 +0,0 @@
new business startup on $1000 and 90 days [blog](https://medium.com/the-mission/seth-godin-new-business-5-step-fdb354988c23)

View File

@ -1,20 +0,0 @@
CREATE TABLE mast.node
(
id bigint GENERATED BY DEFAULT AS IDENTITY PRIMARY KEY
,nam text
,sch text
,doc jsonb
)
CREATE TABLE acct.accm
(
id bigint GENERATED BY DEFAULT AS IDENTITY PRIMARY KEY
,nam text
--reference to node ids
--should be limited to certain types of nodes, like location, product line, fsline, perhaps an enum?
,nodes bigint[]
--node attributes pooled here
,doc jsonb
)

View File

@ -1,19 +0,0 @@
pivot table (done)
* order days
* ASP & ASC
* calendar year
data rebuild
* Field names need to make sense and then evaluate
* Break out bill-to ship-to
* difference between forecast and actual, or budget and actual
* orders versus budget
* sales versus budget
* bring currency or value in original currency
* open orders - request date
* forecasted available date (Marty claims it is available)
* get rid of goofy fields like `FLAG-O`
forecasting
* Forecast iterations (evaluate at time all the other fields evaluated)
* Mechanism to build a live self-informing forecast

View File