This commit is contained in:
Rico Sta. Cruz 2015-03-30 10:26:40 +08:00
parent f0ec286024
commit 7360248e8e
3 changed files with 29 additions and 5 deletions

View File

@ -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"

View File

@ -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

20
watchman.md Normal file
View File

@ -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)