Updates
This commit is contained in:
parent
f0ec286024
commit
7360248e8e
|
@ -29,9 +29,11 @@ layout: default
|
||||||
|
|
||||||
## Command prefixes
|
## Command prefixes
|
||||||
|
|
||||||
- Ignore errors
|
| Prefix | Description |
|
||||||
@ Don't print command
|
| ------ | ----------- |
|
||||||
+ Run even if Make is in 'don't execute' mode
|
| `-` | Ignore errors |
|
||||||
|
| `@` | Don't print command |
|
||||||
|
| `+` | Run even if Make is in 'don't execute' mode |
|
||||||
|
|
||||||
build:
|
build:
|
||||||
@echo "compiling"
|
@echo "compiling"
|
||||||
|
|
|
@ -15,14 +15,16 @@ layout: default
|
||||||
|
|
||||||
* Sources: meat, egg, legumes
|
* Sources: meat, egg, legumes
|
||||||
* Major benefits: test boost, immune boost
|
* Major benefits: test boost, immune boost
|
||||||
* Doesn't go well with [Iron](#iron)
|
* Doesn't go well with [Iron](#iron), [Magnesium](#magnesium)
|
||||||
* Dosage: 5-10mg daily
|
* Dosage: 5-10mg daily
|
||||||
|
|
||||||
### Magnesium
|
### Magnesium
|
||||||
|
|
||||||
* Sources: grains, nuts, leafy vegetables
|
* Sources: grains, nuts, leafy vegetables
|
||||||
* Dosage: 200-450mg daily
|
* Dosage: 200-450mg daily
|
||||||
* Major benefits: lower blood glucose
|
* Major benefits: lower blood glucose, sleep, insulin sensitivity
|
||||||
|
* Don't get Magnesium Oxide (low bioavailability)
|
||||||
|
* Get Magnesium Citrate
|
||||||
|
|
||||||
### Selenium
|
### Selenium
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,20 @@
|
||||||
|
# Watchman
|
||||||
|
|
||||||
|
### Getting started
|
||||||
|
|
||||||
|
```
|
||||||
|
watchman watch ~/src
|
||||||
|
watchman -- trigger ~/src remake '*.js' -- make
|
||||||
|
```
|
||||||
|
|
||||||
|
### Watching
|
||||||
|
|
||||||
|
```
|
||||||
|
watchman watch ~/src
|
||||||
|
watchman watch-list
|
||||||
|
watchman watch-del ~/src
|
||||||
|
```
|
||||||
|
|
||||||
|
### Reference
|
||||||
|
|
||||||
|
* [Documentation](https://facebook.github.io/watchman/docs/install.html) (github.io)
|
Loading…
Reference in New Issue