Updates
This commit is contained in:
parent
f0ec286024
commit
7360248e8e
|
@ -29,9 +29,11 @@ layout: default
|
|||
|
||||
## Command prefixes
|
||||
|
||||
- Ignore errors
|
||||
@ Don't print command
|
||||
+ Run even if Make is in 'don't execute' mode
|
||||
| Prefix | Description |
|
||||
| ------ | ----------- |
|
||||
| `-` | Ignore errors |
|
||||
| `@` | Don't print command |
|
||||
| `+` | Run even if Make is in 'don't execute' mode |
|
||||
|
||||
build:
|
||||
@echo "compiling"
|
||||
|
|
|
@ -15,14 +15,16 @@ layout: default
|
|||
|
||||
* Sources: meat, egg, legumes
|
||||
* 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
|
||||
|
||||
### Magnesium
|
||||
|
||||
* Sources: grains, nuts, leafy vegetables
|
||||
* 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
|
||||
|
||||
|
|
|
@ -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