mutt notes
This commit is contained in:
parent
20f9856dec
commit
910f8f0a8b
@ -1,4 +1,4 @@
|
|||||||
|
|
||||||
https://github.com/forbesmyester/esqlate
|
https://github.com/forbesmyester/esqlate
|
||||||
|
|
||||||
builds little forms out of sql
|
builds little forms out of sql
|
@ -1,22 +1,22 @@
|
|||||||
PDMN24-1 Maintain Product Structure
|
PDMN24-1 Maintain Product Structure
|
||||||
IVMN02-4 Maint Part/Plant
|
IVMN02-4 Maint Part/Plant
|
||||||
IVMN14-7 Costing Sheet
|
IVMN14-7 Costing Sheet
|
||||||
PDMN31-1 WO Production Reporting
|
PDMN31-1 WO Production Reporting
|
||||||
PDMN06 Maintain WO
|
PDMN06 Maintain WO
|
||||||
|
|
||||||
|
|
||||||
`lgdat.mrprct` is output of nightly MRP job, show actual with `PD`, `PO` flags and suggested in `MRP` flag
|
`lgdat.mrprct` is output of nightly MRP job, show actual with `PD`, `PO` flags and suggested in `MRP` flag
|
||||||
`lgdat.mrpdmd` is output if nightly MRP (shoudl be very close to `inva`)
|
`lgdat.mrpdmd` is output if nightly MRP (shoudl be very close to `inva`)
|
||||||
|
|
||||||
|
|
||||||
|CLTIER|CLDESC |
|
|CLTIER|CLDESC |
|
||||||
|------|------------------------------|
|
|------|------------------------------|
|
||||||
|B |BASE |
|
|B |BASE |
|
||||||
|C |CUSTOM |
|
|C |CUSTOM |
|
||||||
|E |ECOGROW |
|
|E |ECOGROW |
|
||||||
|O |ORGANIC |
|
|O |ORGANIC |
|
||||||
|M |PREMIUM CORE (C) |
|
|M |PREMIUM CORE (C) |
|
||||||
|L |PRINCIPAL CORE (B) |
|
|L |PRINCIPAL CORE (B) |
|
||||||
|P |PROGRAM |
|
|P |PROGRAM |
|
||||||
|T |TRADITIONAL CORE (A) |
|
|T |TRADITIONAL CORE (A) |
|
||||||
|W |WAXTOUGH |
|
|W |WAXTOUGH |
|
||||||
|
16
mutt.md
Normal file
16
mutt.md
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
## Office 365 Setup
|
||||||
|
|
||||||
|
[office365 config](https://github.com/ork/mutt-office365)
|
||||||
|
|
||||||
|
[setup html viewer in mutt](http://jasonwryan.com/blog/2012/05/12/mutt/)
|
||||||
|
|
||||||
|
* requires w3m
|
||||||
|
* add this to .mutt/muttrc
|
||||||
|
```
|
||||||
|
auto_view text/html # view html automatically
|
||||||
|
alternative_order text/plain text/enriched text/html # save html for last
|
||||||
|
```
|
||||||
|
* add this to .mutt/mailcap
|
||||||
|
```
|
||||||
|
text/html; w3m -I %{charset} -T text/html; copiousoutput;
|
||||||
|
```
|
@ -1,28 +1,28 @@
|
|||||||
version management
|
version management
|
||||||
===================================================================================================================================
|
===================================================================================================================================
|
||||||
|
|
||||||
## nvm
|
## nvm
|
||||||
|
|
||||||
can use nvm to manage nodejs versions.
|
can use nvm to manage nodejs versions.
|
||||||
not really sure how this works, but it is per user and operates off bash scripts and variables ¯\_(ツ)_/¯
|
not really sure how this works, but it is per user and operates off bash scripts and variables ¯\_(ツ)_/¯
|
||||||
|
|
||||||
going to have to pull from github. It will curl to clone the repo and then add some stuff to your bashrc to make it work.
|
going to have to pull from github. It will curl to clone the repo and then add some stuff to your bashrc to make it work.
|
||||||
`exec bash` after install to refresh
|
`exec bash` after install to refresh
|
||||||
|
|
||||||
nvm install --lts
|
nvm install --lts
|
||||||
nvm use version
|
nvm use version
|
||||||
|
|
||||||
## npm n helper
|
## npm n helper
|
||||||
|
|
||||||
npm can be used to manage node itself through n
|
npm can be used to manage node itself through n
|
||||||
https://github.com/tj/n
|
https://github.com/tj/n
|
||||||
|
|
||||||
sudo npm cache clean -f
|
sudo npm cache clean -f
|
||||||
|
|
||||||
|
|
||||||
1. setup & *own* directyory with versions
|
1. setup & *own* directyory with versions
|
||||||
* `sudo mkdir -p /usr/local/n`
|
* `sudo mkdir -p /usr/local/n`
|
||||||
* `sudo chown -R $(whoami) /usr/local/n`
|
* `sudo chown -R $(whoami) /usr/local/n`
|
||||||
2. own the instalation folders
|
2. own the instalation folders
|
||||||
* `sudo chown -R $(whoami) /usr/local/bin /usr/local/lib /usr/local/include /usr/local/share`
|
* `sudo chown -R $(whoami) /usr/local/bin /usr/local/lib /usr/local/include /usr/local/share`
|
||||||
3. install n: `sudo npm install -g n`
|
3. install n: `sudo npm install -g n`
|
||||||
|
Loading…
Reference in New Issue
Block a user