├── 2017 ├── June │ └── OPEN-pfdw-1w.html ├── March │ ├── pfdw-2w.html │ └── pfdw-3w.html └── May │ ├── pfdw-1w.html │ └── pfdw-2w.html ├── .gitignore ├── AREA.md └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | *.DS_Store 2 | .AppleDouble 3 | .LSOverride 4 | 5 | # Icon must end with two \r 6 | Icon 7 | 8 | 9 | # Thumbnails 10 | ._* 11 | 12 | # Files that might appear in the root of a volume 13 | .DocumentRevisions-V100 14 | .fseventsd 15 | .Spotlight-V100 16 | .TemporaryItems 17 | .Trashes 18 | .VolumeIcon.icns 19 | .com.apple.timemachine.donotpresent 20 | 21 | # Directories potentially created on remote AFP share 22 | .AppleDB 23 | .AppleDesktop 24 | Network Trash Folder 25 | Temporary Items 26 | .apdisk 27 | -------------------------------------------------------------------------------- /2017/June/OPEN-pfdw-1w.html: -------------------------------------------------------------------------------- 1 |
2 |
169 |
|
445 |
171 |
|
460 |
171 |
|
459 |
174 |
|
477 |
174 |
|
469 |