├── .editorconfig ├── .gitattributes ├── .gitignore ├── .gitmodules ├── .scss-lint.yml ├── .snyk ├── .vscode └── settings.json ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── Rakefile ├── _config.dev.yml ├── _config.yml ├── gulp ├── paths.js └── tasks │ ├── assets.js │ ├── build.js │ ├── clean.js │ ├── copy.js │ ├── fonts.js │ ├── html.js │ ├── images.js │ └── uploading.js ├── gulpfile.js ├── netlify.toml ├── package.json ├── src ├── .htaccess ├── _colors │ ├── colors-neutral.html │ ├── colors-secondary.html │ └── colors-social-brand.html ├── _components │ ├── buttons-block.html │ ├── buttons-danger.html │ ├── buttons-default.html │ ├── buttons-disabled.html │ ├── buttons-info.html │ ├── buttons-inverse.html │ ├── buttons-success.html │ ├── buttons-warning.html │ ├── forms-paypal.html │ ├── forms-wufoo.html │ ├── media-post-figures-2-col.html │ ├── media-post-figures-3-col.html │ ├── media-post-figures-palette.html │ ├── media-post-figures.html │ ├── notices-post-danger.html │ ├── notices-post-default.html │ ├── notices-post-info.html │ ├── notices-post-success.html │ ├── notices-post-warning.html │ ├── thumbnail-image-grid.html │ ├── typography-post-blockquotes.html │ ├── typography-post-headings.html │ ├── typography-post-lists-ordered.html │ ├── typography-post-lists-unordered.html │ ├── typography-post-paragraph-text.html │ └── typography-post-tables.html ├── _data │ ├── comments │ │ ├── 365-days-of-drawing │ │ │ ├── comment-1377880142000.yml │ │ │ └── comment-1377895505000.yml │ │ ├── aarongreenlee-portrait │ │ │ └── comment-1471630435206.yml │ │ ├── autumn-refresh │ │ │ ├── comment-1542071071893.yml │ │ │ ├── comment-1542115612745.yml │ │ │ ├── comment-1544606547011.yml │ │ │ └── comment-1550151313746.yml │ │ ├── basics │ │ │ ├── comment-1392005320000.yml │ │ │ ├── comment-1392183730000.yml │ │ │ ├── comment-1392190613000.yml │ │ │ ├── comment-1395203917000.yml │ │ │ ├── comment-1396815357000.yml │ │ │ ├── comment-1396868974000.yml │ │ │ ├── comment-1405157030000.yml │ │ │ ├── comment-1410264861000.yml │ │ │ ├── comment-1418196361000.yml │ │ │ ├── comment-1421525588000.yml │ │ │ ├── comment-1421527288000.yml │ │ │ ├── comment-1427013256000.yml │ │ │ ├── comment-1427033128000.yml │ │ │ ├── comment-1436977013000.yml │ │ │ ├── comment-1436983501000.yml │ │ │ ├── comment-1441808621000.yml │ │ │ ├── comment-1441808820000.yml │ │ │ ├── comment-1441811844000.yml │ │ │ ├── comment-1492075741093.yml │ │ │ ├── comment-1492084628478.yml │ │ │ ├── comment-1495334506124.yml │ │ │ └── comment-1495457432610.yml │ │ ├── color-picker │ │ │ ├── comment-1421964202000.yml │ │ │ ├── comment-1462774965000.yml │ │ │ ├── comment-1462794743000.yml │ │ │ ├── comment-1474598387454.yml │ │ │ ├── comment-1484235423197.yml │ │ │ ├── comment-1522763618367.yml │ │ │ ├── comment-1522766218504.yml │ │ │ ├── comment-1535761860911.yml │ │ │ ├── comment-1535805470885.yml │ │ │ └── comment-1564807469280.yml │ │ ├── contour-drawing │ │ │ ├── comment-1390268003000.yml │ │ │ ├── comment-1390304292000.yml │ │ │ ├── comment-1390307306000.yml │ │ │ ├── comment-1390308947000.yml │ │ │ ├── comment-1390311361000.yml │ │ │ ├── comment-1394549542000.yml │ │ │ ├── comment-1395769302000.yml │ │ │ ├── comment-1395769842000.yml │ │ │ ├── comment-1397642850000.yml │ │ │ ├── comment-1397645442000.yml │ │ │ └── comment-1397648727000.yml │ │ ├── drawing-clouds │ │ │ ├── comment-1378398921000.yml │ │ │ ├── comment-1378503842000.yml │ │ │ ├── comment-1378689620000.yml │ │ │ ├── comment-1379403972000.yml │ │ │ ├── comment-1379418558000.yml │ │ │ ├── comment-1379714880000.yml │ │ │ ├── comment-1380204661000.yml │ │ │ ├── comment-1393483754000.yml │ │ │ ├── comment-1393506505000.yml │ │ │ ├── comment-1393604491000.yml │ │ │ ├── comment-1393604736000.yml │ │ │ ├── comment-1393972879000.yml │ │ │ ├── comment-1396486944000.yml │ │ │ ├── comment-1396490404000.yml │ │ │ ├── comment-1398017412000.yml │ │ │ ├── comment-1400770265000.yml │ │ │ └── comment-1400770703000.yml │ │ ├── drawing-faces │ │ │ ├── comment-1398153549000.yml │ │ │ ├── comment-1398158232000.yml │ │ │ ├── comment-1398160932000.yml │ │ │ ├── comment-1398170698000.yml │ │ │ ├── comment-1398198848000.yml │ │ │ ├── comment-1398199078000.yml │ │ │ ├── comment-1398221444000.yml │ │ │ ├── comment-1398222726000.yml │ │ │ ├── comment-1398253969000.yml │ │ │ ├── comment-1398288006000.yml │ │ │ ├── comment-1398310673000.yml │ │ │ ├── comment-1398372070000.yml │ │ │ ├── comment-1398372262000.yml │ │ │ ├── comment-1398387151000.yml │ │ │ ├── comment-1398388580000.yml │ │ │ ├── comment-1398620475000.yml │ │ │ ├── comment-1398982327000.yml │ │ │ ├── comment-1406616895000.yml │ │ │ ├── comment-1406638106000.yml │ │ │ ├── comment-1409312521000.yml │ │ │ ├── comment-1409313922000.yml │ │ │ ├── comment-1411510619000.yml │ │ │ ├── comment-1411516024000.yml │ │ │ ├── comment-1411948473000.yml │ │ │ ├── comment-1411953728000.yml │ │ │ ├── comment-1411955472000.yml │ │ │ ├── comment-1411955887000.yml │ │ │ ├── comment-1411956100000.yml │ │ │ ├── comment-1411956551000.yml │ │ │ ├── comment-1417548428000.yml │ │ │ ├── comment-1417548739000.yml │ │ │ ├── comment-1420028827000.yml │ │ │ ├── comment-1420046018000.yml │ │ │ └── comment-1432135554000.yml │ │ ├── drawing-hair │ │ │ ├── comment-1377103010000.yml │ │ │ ├── comment-1392903055000.yml │ │ │ ├── comment-1402794538000.yml │ │ │ └── comment-1507473437365.yml │ │ ├── drawing-outer-space │ │ │ ├── comment-1420577872000.yml │ │ │ ├── comment-1420579819000.yml │ │ │ ├── comment-1420843616000.yml │ │ │ └── comment-1420847567000.yml │ │ ├── drawing-textures │ │ │ ├── comment-1385426180000.yml │ │ │ ├── comment-1385439861000.yml │ │ │ ├── comment-1385442241000.yml │ │ │ ├── comment-1385757928000.yml │ │ │ ├── comment-1400096924000.yml │ │ │ ├── comment-1424636878000.yml │ │ │ ├── comment-1424638048000.yml │ │ │ └── comment-1492192153413.yml │ │ ├── drawing-trees │ │ │ ├── comment-1377977017000.yml │ │ │ ├── comment-1377979372000.yml │ │ │ ├── comment-1378115206000.yml │ │ │ ├── comment-1378316991000.yml │ │ │ ├── comment-1398671612000.yml │ │ │ ├── comment-1454043552000.yml │ │ │ └── comment-1454069139000.yml │ │ ├── drawing-water │ │ │ ├── comment-1380489094000.yml │ │ │ ├── comment-1380502193000.yml │ │ │ ├── comment-1380696432000.yml │ │ │ ├── comment-1380990189000.yml │ │ │ ├── comment-1381125001000.yml │ │ │ └── comment-1418528111000.yml │ │ ├── erasing │ │ │ ├── comment-1426749852000.yml │ │ │ ├── comment-1431422847000.yml │ │ │ ├── comment-1490449760606.yml │ │ │ ├── comment-1490719042258.yml │ │ │ ├── comment-1501441514764.yml │ │ │ └── comment-1501458789383.yml │ │ ├── faux-layer │ │ │ ├── comment-1432144791000.yml │ │ │ ├── comment-1436215043000.yml │ │ │ ├── comment-1444847560000.yml │ │ │ ├── comment-1492117216851.yml │ │ │ └── comment-1492129124617.yml │ │ ├── github-pages-publishing-source │ │ │ ├── comment-1497161092518.yml │ │ │ └── comment-1555099604565.yml │ │ ├── going-static │ │ │ ├── comment-1373843710000.yml │ │ │ ├── comment-1374248081000.yml │ │ │ ├── comment-1379416079000.yml │ │ │ ├── comment-1379419095000.yml │ │ │ ├── comment-1379450127000.yml │ │ │ ├── comment-1415626124000.yml │ │ │ ├── comment-1415626349000.yml │ │ │ ├── comment-1431466796000.yml │ │ │ └── comment-1453938901000.yml │ │ ├── grid-method │ │ │ ├── comment-1404681796000.yml │ │ │ ├── comment-1408741037000.yml │ │ │ ├── comment-1408744437000.yml │ │ │ ├── comment-1410503147000.yml │ │ │ ├── comment-1419770628000.yml │ │ │ ├── comment-1455241232000.yml │ │ │ ├── comment-1455241724000.yml │ │ │ ├── comment-1455304633000.yml │ │ │ └── comment-1505750732930.yml │ │ ├── hpstr-jekyll-theme │ │ │ ├── comment-1378490781000.yml │ │ │ ├── comment-1378491505000.yml │ │ │ ├── comment-1382267949000.yml │ │ │ ├── comment-1382279338000.yml │ │ │ ├── comment-1382298797000.yml │ │ │ ├── comment-1382299442000.yml │ │ │ ├── comment-1382331744000.yml │ │ │ ├── comment-1384875475000.yml │ │ │ ├── comment-1384875785000.yml │ │ │ ├── comment-1385307053000.yml │ │ │ ├── comment-1385310110000.yml │ │ │ ├── comment-1385320193000.yml │ │ │ ├── comment-1387334931000.yml │ │ │ ├── comment-1387336844000.yml │ │ │ ├── comment-1387382934000.yml │ │ │ ├── comment-1387383560000.yml │ │ │ ├── comment-1387503726000.yml │ │ │ ├── comment-1387507127000.yml │ │ │ ├── comment-1401061948000.yml │ │ │ ├── comment-1401066644000.yml │ │ │ ├── comment-1401597076000.yml │ │ │ ├── comment-1401640822000.yml │ │ │ ├── comment-1409683191000.yml │ │ │ ├── comment-1409684508000.yml │ │ │ ├── comment-1409689561000.yml │ │ │ ├── comment-1409708937000.yml │ │ │ ├── comment-1409755306000.yml │ │ │ ├── comment-1409756965000.yml │ │ │ ├── comment-1415694745000.yml │ │ │ ├── comment-1415711210000.yml │ │ │ ├── comment-1415712041000.yml │ │ │ ├── comment-1418852181000.yml │ │ │ ├── comment-1418857828000.yml │ │ │ ├── comment-1422710194000.yml │ │ │ ├── comment-1422719464000.yml │ │ │ └── comment-1445196870000.yml │ │ ├── improving-jekyll-static-comments │ │ │ ├── comment-1481460884456.yml │ │ │ ├── comment-1481474339051.yml │ │ │ ├── comment-1481479533346.yml │ │ │ ├── comment-1481624126585.yml │ │ │ ├── comment-1481658090053.yml │ │ │ ├── comment-1481731561641.yml │ │ │ ├── comment-1481741970849.yml │ │ │ ├── comment-1484103390668.yml │ │ │ ├── comment-1484105090367.yml │ │ │ ├── comment-1485221585967.yml │ │ │ ├── comment-1485262979779.yml │ │ │ ├── comment-1485263102754.yml │ │ │ ├── comment-1485550986001.yml │ │ │ ├── comment-1485776306404.yml │ │ │ ├── comment-1485812680030.yml │ │ │ ├── comment-1485989740666.yml │ │ │ ├── comment-1485995518222.yml │ │ │ ├── comment-1486056520229.yml │ │ │ ├── comment-1487392474995.yml │ │ │ ├── comment-1488548814588.yml │ │ │ ├── comment-1488553821919.yml │ │ │ ├── comment-1488881391127.yml │ │ │ ├── comment-1488890174632.yml │ │ │ ├── comment-1488969645855.yml │ │ │ ├── comment-1488978650754.yml │ │ │ ├── comment-1489052011587.yml │ │ │ ├── comment-1489104203645.yml │ │ │ ├── comment-1489108834795.yml │ │ │ ├── comment-1489110137352.yml │ │ │ ├── comment-1489607030788.yml │ │ │ ├── comment-1490457260680.yml │ │ │ ├── comment-1491030238309.yml │ │ │ ├── comment-1491175352402.yml │ │ │ ├── comment-1491627404813.yml │ │ │ ├── comment-1492658318898.yml │ │ │ ├── comment-1493172436156.yml │ │ │ ├── comment-1493173314433.yml │ │ │ ├── comment-1493175052061.yml │ │ │ ├── comment-1493214835599.yml │ │ │ ├── comment-1493220517612.yml │ │ │ ├── comment-1493271734325.yml │ │ │ ├── comment-1499931059948.yml │ │ │ ├── comment-1499949178643.yml │ │ │ ├── comment-1500146774391.yml │ │ │ ├── comment-1500158643482.yml │ │ │ ├── comment-1500179899352.yml │ │ │ ├── comment-1500216139951.yml │ │ │ ├── comment-1501076401771.yml │ │ │ ├── comment-1501079213007.yml │ │ │ ├── comment-1502678904866.yml │ │ │ ├── comment-1502712383041.yml │ │ │ ├── comment-1502719408873.yml │ │ │ └── comment-1503767042418.yml │ │ ├── introduction-tool-guide │ │ │ ├── comment-1375311525000.yml │ │ │ ├── comment-1375312155000.yml │ │ │ ├── comment-1375407240000.yml │ │ │ ├── comment-1375731850000.yml │ │ │ ├── comment-1375852140000.yml │ │ │ ├── comment-1375878105000.yml │ │ │ ├── comment-1376040798000.yml │ │ │ ├── comment-1376625477000.yml │ │ │ ├── comment-1376684545000.yml │ │ │ ├── comment-1376684893000.yml │ │ │ ├── comment-1376794161000.yml │ │ │ ├── comment-1376984306000.yml │ │ │ ├── comment-1377166098000.yml │ │ │ ├── comment-1377170401000.yml │ │ │ ├── comment-1377972100000.yml │ │ │ ├── comment-1378006060000.yml │ │ │ ├── comment-1379258836000.yml │ │ │ ├── comment-1381756066000.yml │ │ │ ├── comment-1381953329000.yml │ │ │ ├── comment-1384279598000.yml │ │ │ ├── comment-1384279891000.yml │ │ │ ├── comment-1384938799000.yml │ │ │ ├── comment-1385076228000.yml │ │ │ ├── comment-1392222165000.yml │ │ │ ├── comment-1394046009000.yml │ │ │ ├── comment-1394046321000.yml │ │ │ ├── comment-1395342927000.yml │ │ │ ├── comment-1395344315000.yml │ │ │ ├── comment-1395382469000.yml │ │ │ ├── comment-1400766868000.yml │ │ │ ├── comment-1400767548000.yml │ │ │ ├── comment-1407354540000.yml │ │ │ ├── comment-1408198975000.yml │ │ │ ├── comment-1408225050000.yml │ │ │ ├── comment-1409523852000.yml │ │ │ ├── comment-1411341215000.yml │ │ │ ├── comment-1426443252000.yml │ │ │ ├── comment-1426446187000.yml │ │ │ ├── comment-1426559129000.yml │ │ │ ├── comment-1426621912000.yml │ │ │ ├── comment-1436371794000.yml │ │ │ ├── comment-1436373150000.yml │ │ │ ├── comment-1436637701000.yml │ │ │ ├── comment-1436715257000.yml │ │ │ ├── comment-1436717252000.yml │ │ │ ├── comment-1436726596000.yml │ │ │ ├── comment-1436873234000.yml │ │ │ ├── comment-1449835011000.yml │ │ │ ├── comment-1449850201000.yml │ │ │ ├── comment-1450828345000.yml │ │ │ ├── comment-1450829807000.yml │ │ │ ├── comment-1450829987000.yml │ │ │ ├── comment-1450830099000.yml │ │ │ ├── comment-1482796039786.yml │ │ │ ├── comment-1483358374441.yml │ │ │ ├── comment-1483378029067.yml │ │ │ ├── comment-1521003277476.yml │ │ │ └── comment-1521031808041.yml │ │ ├── ipad-pro │ │ │ ├── comment-1443288485000.yml │ │ │ ├── comment-1443288919000.yml │ │ │ ├── comment-1445087452000.yml │ │ │ ├── comment-1445094865000.yml │ │ │ ├── comment-1446477237000.yml │ │ │ ├── comment-1446477609000.yml │ │ │ ├── comment-1446825359000.yml │ │ │ ├── comment-1446825629000.yml │ │ │ └── comment-1459302268000.yml │ │ ├── jekyll-static-comments │ │ │ ├── comment-1471818805944.yml │ │ │ ├── comment-1471902168765.yml │ │ │ ├── comment-1471904599908.yml │ │ │ ├── comment-1473470466689.yml │ │ │ ├── comment-1473476859458.yml │ │ │ ├── comment-1474541157403.yml │ │ │ ├── comment-1474544952860.yml │ │ │ ├── comment-1475225027509.yml │ │ │ ├── comment-1475234134458.yml │ │ │ ├── comment-1475236046603.yml │ │ │ ├── comment-1475310701030.yml │ │ │ ├── comment-1475532174089.yml │ │ │ ├── comment-1475632403135.yml │ │ │ ├── comment-1477998248959.yml │ │ │ ├── comment-1478016071095.yml │ │ │ ├── comment-1478063323913.yml │ │ │ ├── comment-1480411331742.yml │ │ │ ├── comment-1480420973319.yml │ │ │ ├── comment-1480543395287.yml │ │ │ ├── comment-1481420308218.yml │ │ │ ├── comment-1483340098562.yml │ │ │ ├── comment-1483381261200.yml │ │ │ ├── comment-1486117804509.yml │ │ │ ├── comment-1486142233909.yml │ │ │ ├── comment-1486169040991.yml │ │ │ ├── comment-1486206444999.yml │ │ │ ├── comment-1486222105647.yml │ │ │ ├── comment-1494496419518.yml │ │ │ ├── comment-1494504562948.yml │ │ │ ├── comment-1494703323003.yml │ │ │ └── comment-1508081755669.yml │ │ ├── jekyll-style-guide │ │ │ ├── comment-1423858419000.yml │ │ │ ├── comment-1424188094000.yml │ │ │ ├── comment-1429720942000.yml │ │ │ ├── comment-1429721096000.yml │ │ │ ├── comment-1429722033000.yml │ │ │ ├── comment-1451908434000.yml │ │ │ ├── comment-1474160329348.yml │ │ │ ├── comment-1480597317935.yml │ │ │ ├── comment-1480617534927.yml │ │ │ ├── comment-1480641516709.yml │ │ │ ├── comment-1480648884375.yml │ │ │ └── comment-1509381022944.yml │ │ ├── jekyll-themes │ │ │ ├── comment-1472608507317.yml │ │ │ ├── comment-1473482520505.yml │ │ │ ├── comment-1473556533295.yml │ │ │ ├── comment-1473558917905.yml │ │ │ ├── comment-1477568749399.yml │ │ │ ├── comment-1477582192405.yml │ │ │ ├── comment-1477583060139.yml │ │ │ └── comment-1477660246228.yml │ │ ├── kramdown-table-html │ │ │ ├── comment-1486592019781.yml │ │ │ ├── comment-1486649903528.yml │ │ │ └── comment-1486666477277.yml │ │ ├── minimal-mistakes-jekyll-theme │ │ │ ├── comment-1374242320000.yml │ │ │ ├── comment-1374242363000.yml │ │ │ ├── comment-1376016953000.yml │ │ │ ├── comment-1380310527000.yml │ │ │ ├── comment-1380310612000.yml │ │ │ ├── comment-1382812169000.yml │ │ │ ├── comment-1382816973000.yml │ │ │ ├── comment-1383048145000.yml │ │ │ ├── comment-1384332903000.yml │ │ │ ├── comment-1384343739000.yml │ │ │ ├── comment-1384349480000.yml │ │ │ ├── comment-1412440284000.yml │ │ │ ├── comment-1412448545000.yml │ │ │ ├── comment-1412858111000.yml │ │ │ ├── comment-1413708833000.yml │ │ │ ├── comment-1413994614000.yml │ │ │ ├── comment-1414713040000.yml │ │ │ ├── comment-1414763591000.yml │ │ │ ├── comment-1418667408000.yml │ │ │ ├── comment-1418916531000.yml │ │ │ ├── comment-1421030768000.yml │ │ │ └── comment-1421031174000.yml │ │ ├── mix │ │ │ ├── comment-1412753804000.yml │ │ │ ├── comment-1492205887363.yml │ │ │ ├── comment-1492213260760.yml │ │ │ ├── comment-1504542666081.yml │ │ │ └── comment-1504543993669.yml │ │ ├── moleskine-book │ │ │ ├── comment-1384271634000.yml │ │ │ ├── comment-1384374095000.yml │ │ │ ├── comment-1384716886000.yml │ │ │ ├── comment-1389535857000.yml │ │ │ ├── comment-1389540070000.yml │ │ │ ├── comment-1396289276000.yml │ │ │ ├── comment-1396300941000.yml │ │ │ ├── comment-1407656447000.yml │ │ │ ├── comment-1407693910000.yml │ │ │ ├── comment-1409500178000.yml │ │ │ ├── comment-1409500579000.yml │ │ │ ├── comment-1409501319000.yml │ │ │ ├── comment-1414348570000.yml │ │ │ ├── comment-1416273233000.yml │ │ │ ├── comment-1419841481000.yml │ │ │ └── comment-1419875526000.yml │ │ ├── moving-the-loupe │ │ │ ├── comment-1409692467000.yml │ │ │ ├── comment-1409709008000.yml │ │ │ ├── comment-1411765932000.yml │ │ │ ├── comment-1411775661000.yml │ │ │ ├── comment-1411776807000.yml │ │ │ ├── comment-1444333805000.yml │ │ │ ├── comment-1444333880000.yml │ │ │ └── comment-1444369942000.yml │ │ ├── paper-2-0 │ │ │ ├── comment-1412001283000.yml │ │ │ ├── comment-1412001496000.yml │ │ │ ├── comment-1414194263000.yml │ │ │ ├── comment-1414194627000.yml │ │ │ ├── comment-1414195676000.yml │ │ │ ├── comment-1414200349000.yml │ │ │ ├── comment-1414201059000.yml │ │ │ ├── comment-1414208123000.yml │ │ │ ├── comment-1418870081000.yml │ │ │ └── comment-1418870541000.yml │ │ ├── paper-3-features │ │ │ ├── comment-1442496381000.yml │ │ │ ├── comment-1444847315000.yml │ │ │ ├── comment-1451637735000.yml │ │ │ └── comment-1451669973000.yml │ │ ├── paperfaces-ipad-portrait-project │ │ │ ├── comment-1397086226000.yml │ │ │ ├── comment-1409086872000.yml │ │ │ ├── comment-1409101674000.yml │ │ │ └── comment-1409744303000.yml │ │ ├── pencil-53-review │ │ │ ├── comment-1386811734000.yml │ │ │ ├── comment-1386856922000.yml │ │ │ ├── comment-1387010432000.yml │ │ │ ├── comment-1387034954000.yml │ │ │ ├── comment-1387035962000.yml │ │ │ ├── comment-1387036146000.yml │ │ │ ├── comment-1387384508000.yml │ │ │ ├── comment-1387384550000.yml │ │ │ ├── comment-1387386524000.yml │ │ │ ├── comment-1387510284000.yml │ │ │ ├── comment-1387512031000.yml │ │ │ ├── comment-1389279619000.yml │ │ │ ├── comment-1389280429000.yml │ │ │ ├── comment-1389384921000.yml │ │ │ ├── comment-1389386537000.yml │ │ │ ├── comment-1389418192000.yml │ │ │ ├── comment-1389540148000.yml │ │ │ ├── comment-1389540794000.yml │ │ │ ├── comment-1392007917000.yml │ │ │ ├── comment-1392037704000.yml │ │ │ ├── comment-1392090379000.yml │ │ │ ├── comment-1392090856000.yml │ │ │ ├── comment-1393404529000.yml │ │ │ ├── comment-1393421987000.yml │ │ │ ├── comment-1393504408000.yml │ │ │ ├── comment-1393506266000.yml │ │ │ ├── comment-1393898470000.yml │ │ │ ├── comment-1393902897000.yml │ │ │ ├── comment-1393910402000.yml │ │ │ ├── comment-1393935628000.yml │ │ │ ├── comment-1393937463000.yml │ │ │ ├── comment-1395503214000.yml │ │ │ ├── comment-1395507949000.yml │ │ │ ├── comment-1396120588000.yml │ │ │ ├── comment-1396121500000.yml │ │ │ ├── comment-1396125122000.yml │ │ │ ├── comment-1396128011000.yml │ │ │ ├── comment-1396561268000.yml │ │ │ ├── comment-1396561743000.yml │ │ │ ├── comment-1396565918000.yml │ │ │ ├── comment-1396566326000.yml │ │ │ ├── comment-1396990903000.yml │ │ │ ├── comment-1396996022000.yml │ │ │ ├── comment-1396998621000.yml │ │ │ ├── comment-1396999153000.yml │ │ │ ├── comment-1398686996000.yml │ │ │ ├── comment-1398687575000.yml │ │ │ ├── comment-1407690127000.yml │ │ │ ├── comment-1407694071000.yml │ │ │ ├── comment-1407694916000.yml │ │ │ ├── comment-1410046553000.yml │ │ │ ├── comment-1410046857000.yml │ │ │ ├── comment-1412487441000.yml │ │ │ ├── comment-1412519582000.yml │ │ │ ├── comment-1412568846000.yml │ │ │ ├── comment-1413223557000.yml │ │ │ ├── comment-1413223824000.yml │ │ │ ├── comment-1413224830000.yml │ │ │ ├── comment-1413225527000.yml │ │ │ ├── comment-1413227104000.yml │ │ │ ├── comment-1413694720000.yml │ │ │ ├── comment-1413733738000.yml │ │ │ ├── comment-1421335108000.yml │ │ │ ├── comment-1421351459000.yml │ │ │ ├── comment-1422163526000.yml │ │ │ ├── comment-1422197574000.yml │ │ │ ├── comment-1424229701000.yml │ │ │ ├── comment-1424230597000.yml │ │ │ ├── comment-1424724380000.yml │ │ │ ├── comment-1424724894000.yml │ │ │ ├── comment-1427108535000.yml │ │ │ ├── comment-1427112426000.yml │ │ │ ├── comment-1427152059000.yml │ │ │ ├── comment-1427156659000.yml │ │ │ ├── comment-1429900591000.yml │ │ │ ├── comment-1431446463000.yml │ │ │ ├── comment-1437157323000.yml │ │ │ └── comment-1475677581969.yml │ │ ├── pencil-first-look │ │ │ ├── comment-1384966062000.yml │ │ │ ├── comment-1385043547000.yml │ │ │ ├── comment-1385070180000.yml │ │ │ ├── comment-1385159741000.yml │ │ │ ├── comment-1385162772000.yml │ │ │ ├── comment-1385260314000.yml │ │ │ └── comment-1385260939000.yml │ │ ├── pencil │ │ │ ├── comment-1436507171000.yml │ │ │ ├── comment-1436635594000.yml │ │ │ ├── comment-1450107421000.yml │ │ │ ├── comment-1454859871000.yml │ │ │ └── comment-1498956349543.yml │ │ ├── pogo-connect-sensitivity │ │ │ ├── comment-1387991266000.yml │ │ │ ├── comment-1388028878000.yml │ │ │ ├── comment-1392146177000.yml │ │ │ ├── comment-1392148971000.yml │ │ │ ├── comment-1392149260000.yml │ │ │ ├── comment-1392149533000.yml │ │ │ ├── comment-1395837289000.yml │ │ │ └── comment-1395845527000.yml │ │ ├── pogo-connect-smart-pen │ │ │ ├── comment-1376491873000.yml │ │ │ ├── comment-1376491912000.yml │ │ │ ├── comment-1376665972000.yml │ │ │ ├── comment-1376666976000.yml │ │ │ ├── comment-1376743549000.yml │ │ │ ├── comment-1377055622000.yml │ │ │ ├── comment-1379019102000.yml │ │ │ ├── comment-1379039532000.yml │ │ │ ├── comment-1380161985000.yml │ │ │ ├── comment-1380162833000.yml │ │ │ ├── comment-1423345272000.yml │ │ │ └── comment-1423348022000.yml │ │ ├── short-guide │ │ │ ├── comment-1372721299000.yml │ │ │ ├── comment-1375453850000.yml │ │ │ ├── comment-1375454172000.yml │ │ │ ├── comment-1380651998000.yml │ │ │ ├── comment-1383110161000.yml │ │ │ ├── comment-1383134271000.yml │ │ │ ├── comment-1392306483000.yml │ │ │ ├── comment-1392320882000.yml │ │ │ ├── comment-1392385299000.yml │ │ │ ├── comment-1396062860000.yml │ │ │ ├── comment-1396063398000.yml │ │ │ ├── comment-1397168579000.yml │ │ │ ├── comment-1397171013000.yml │ │ │ ├── comment-1397252467000.yml │ │ │ ├── comment-1397259544000.yml │ │ │ ├── comment-1404910582000.yml │ │ │ ├── comment-1404911653000.yml │ │ │ ├── comment-1405128379000.yml │ │ │ ├── comment-1410119824000.yml │ │ │ ├── comment-1410136998000.yml │ │ │ ├── comment-1425120630000.yml │ │ │ ├── comment-1425146368000.yml │ │ │ ├── comment-1428282766000.yml │ │ │ ├── comment-1428285070000.yml │ │ │ ├── comment-1428325994000.yml │ │ │ ├── comment-1430472945000.yml │ │ │ ├── comment-1432953004000.yml │ │ │ ├── comment-1432958065000.yml │ │ │ ├── comment-1432960234000.yml │ │ │ ├── comment-1439393532000.yml │ │ │ ├── comment-1439403660000.yml │ │ │ ├── comment-1477264530494.yml │ │ │ └── comment-1477270163289.yml │ │ ├── skinny-bones-jekyll │ │ │ ├── comment-1413902978000.yml │ │ │ ├── comment-1413994452000.yml │ │ │ ├── comment-1415781199000.yml │ │ │ ├── comment-1415909727000.yml │ │ │ ├── comment-1415911498000.yml │ │ │ ├── comment-1415911529000.yml │ │ │ ├── comment-1416897798000.yml │ │ │ ├── comment-1417297264000.yml │ │ │ ├── comment-1418625404000.yml │ │ │ ├── comment-1418660390000.yml │ │ │ ├── comment-1430184358000.yml │ │ │ ├── comment-1430239460000.yml │ │ │ └── comment-1430240907000.yml │ │ ├── so-simple-jekyll-theme │ │ │ ├── comment-1372917246000.yml │ │ │ ├── comment-1372926897000.yml │ │ │ ├── comment-1372945264000.yml │ │ │ ├── comment-1372945305000.yml │ │ │ ├── comment-1373660261000.yml │ │ │ ├── comment-1374677809000.yml │ │ │ ├── comment-1377475983000.yml │ │ │ ├── comment-1377476182000.yml │ │ │ ├── comment-1378075560000.yml │ │ │ ├── comment-1378078073000.yml │ │ │ ├── comment-1378092010000.yml │ │ │ ├── comment-1382543473000.yml │ │ │ ├── comment-1382543885000.yml │ │ │ ├── comment-1382544558000.yml │ │ │ ├── comment-1382672424000.yml │ │ │ ├── comment-1382709900000.yml │ │ │ ├── comment-1382711236000.yml │ │ │ ├── comment-1384373346000.yml │ │ │ ├── comment-1384373944000.yml │ │ │ ├── comment-1384374016000.yml │ │ │ ├── comment-1384375315000.yml │ │ │ ├── comment-1385165860000.yml │ │ │ ├── comment-1385166847000.yml │ │ │ ├── comment-1385205251000.yml │ │ │ ├── comment-1385214969000.yml │ │ │ ├── comment-1386794979000.yml │ │ │ ├── comment-1386795345000.yml │ │ │ ├── comment-1386795767000.yml │ │ │ ├── comment-1386796040000.yml │ │ │ ├── comment-1386796421000.yml │ │ │ ├── comment-1389569354000.yml │ │ │ ├── comment-1389577232000.yml │ │ │ ├── comment-1389605588000.yml │ │ │ ├── comment-1389618393000.yml │ │ │ ├── comment-1389640551000.yml │ │ │ ├── comment-1389641807000.yml │ │ │ ├── comment-1389642711000.yml │ │ │ ├── comment-1389654080000.yml │ │ │ ├── comment-1389655402000.yml │ │ │ ├── comment-1389743148000.yml │ │ │ ├── comment-1400553642000.yml │ │ │ ├── comment-1400554108000.yml │ │ │ ├── comment-1400597874000.yml │ │ │ ├── comment-1407035174000.yml │ │ │ ├── comment-1407041676000.yml │ │ │ ├── comment-1409551365000.yml │ │ │ ├── comment-1409576060000.yml │ │ │ ├── comment-1426887243000.yml │ │ │ ├── comment-1426887793000.yml │ │ │ ├── comment-1429121005000.yml │ │ │ ├── comment-1429121818000.yml │ │ │ ├── comment-1437941442000.yml │ │ │ ├── comment-1437963631000.yml │ │ │ ├── comment-1438174282000.yml │ │ │ ├── comment-1438279663000.yml │ │ │ └── comment-1438279817000.yml │ │ ├── starting-young │ │ │ └── comment-1394230607000.yml │ │ ├── static-files │ │ │ ├── comment-1501076534924.yml │ │ │ └── comment-1501079498159.yml │ │ ├── styling-language-specific-code-blocks │ │ │ ├── comment-1529428168932.yml │ │ │ └── comment-1529431155141.yml │ │ ├── switching-tools │ │ │ ├── comment-1467572586000.yml │ │ │ ├── comment-1467589181000.yml │ │ │ ├── comment-1481814504362.yml │ │ │ ├── comment-1481941020093.yml │ │ │ ├── comment-1506997770265.yml │ │ │ ├── comment-1507028659960.yml │ │ │ ├── comment-1513644933497.yml │ │ │ ├── comment-1513799890769.yml │ │ │ └── comment-1537523000100.yml │ │ ├── using-jekyll-2016 │ │ │ ├── comment-1456173274000.yml │ │ │ ├── comment-1456173679000.yml │ │ │ ├── comment-1456359857000.yml │ │ │ ├── comment-1457539295000.yml │ │ │ ├── comment-1457544717000.yml │ │ │ ├── comment-1459780880000.yml │ │ │ ├── comment-1462321842000.yml │ │ │ ├── comment-1465717020000.yml │ │ │ ├── comment-1470948072000.yml │ │ │ ├── comment-1471971078169.yml │ │ │ ├── comment-1472328172720.yml │ │ │ ├── comment-1474985907795.yml │ │ │ ├── comment-1477648425453.yml │ │ │ ├── comment-1477653386098.yml │ │ │ ├── comment-1477876188317.yml │ │ │ ├── comment-1477882463696.yml │ │ │ ├── comment-1478819325223.yml │ │ │ ├── comment-1478882631813.yml │ │ │ ├── comment-1479107988971.yml │ │ │ ├── comment-1479124935027.yml │ │ │ ├── comment-1479614551877.yml │ │ │ ├── comment-1480254831825.yml │ │ │ ├── comment-1482736520075.yml │ │ │ ├── comment-1483032133577.yml │ │ │ ├── comment-1487186769933.yml │ │ │ ├── comment-1487198510540.yml │ │ │ ├── comment-1488193553159.yml │ │ │ ├── comment-1488693925938.yml │ │ │ ├── comment-1488728466677.yml │ │ │ ├── comment-1489380756760.yml │ │ │ ├── comment-1490718393006.yml │ │ │ ├── comment-1490725506574.yml │ │ │ ├── comment-1499455795259.yml │ │ │ ├── comment-1506546037079.yml │ │ │ └── comment-1506553327824.yml │ │ ├── using-jekyll-2017 │ │ │ ├── comment-1507012075364.yml │ │ │ ├── comment-1507729840090.yml │ │ │ ├── comment-1509502007119.yml │ │ │ ├── comment-1511543323906.yml │ │ │ ├── comment-1511553630734.yml │ │ │ ├── comment-1524912555802.yml │ │ │ ├── comment-1528407001776.yml │ │ │ ├── comment-1528472466107.yml │ │ │ ├── comment-1529069230477.yml │ │ │ ├── comment-1533307031563.yml │ │ │ ├── comment-1535983368087.yml │ │ │ ├── comment-1538453831567.yml │ │ │ └── comment-1538482151295.yml │ │ ├── watercolor-brush-update │ │ │ ├── comment-1410929331000.yml │ │ │ └── comment-1411401026000.yml │ │ └── website-tools │ │ │ ├── comment-1456305172000.yml │ │ │ ├── comment-1456306928000.yml │ │ │ ├── comment-1456338618000.yml │ │ │ └── comment-1477781723006.yml │ ├── slugs.yml │ └── taxonomy.yml ├── _drafts │ ├── background-color.md │ ├── kitchen-sink.md │ └── testing-gatsby-js.md ├── _faqs │ ├── drawing-experience.md │ ├── export-paper-art.md │ ├── glitching-images.md │ ├── learn-to-draw.md │ ├── mastering-paper-book.md │ ├── paint-smooth.md │ ├── paper-videos.md │ ├── straight-lines.md │ ├── stylus-recommendations.md │ ├── website-tools.md │ └── what-tablet.md ├── _includes │ ├── affiliate-disclosure.html │ ├── algolia-search-scripts.html │ ├── archive.html │ ├── author.liquid │ ├── boilerplate │ │ ├── paperfaces-2.md │ │ ├── paperfaces-3.md │ │ ├── paperfaces-4.md │ │ ├── paperfaces-5.md │ │ ├── paperfaces.md │ │ ├── procreate-2.md │ │ ├── procreate-3.md │ │ ├── procreate.md │ │ └── watercolor.md │ ├── breadcrumbs.html │ ├── comment-form.html │ ├── comment.html │ ├── comments.html │ ├── component-color.html │ ├── component.html │ ├── critical-archive.css │ ├── critical-home.css │ ├── critical-post.css │ ├── entry.html │ ├── favicons.html │ ├── footer.html │ ├── gallery.html │ ├── google-analytics.html │ ├── head-seo.html │ ├── head.html │ ├── image__caption.html │ ├── masthead.html │ ├── navigation.html │ ├── page-intro.html │ ├── page__cover.html │ ├── page__pagination.html │ ├── page__related.html │ ├── pager-category.html │ ├── popular-topics.html │ ├── post-list.html │ ├── posts-all.html │ ├── posts-paginated.html │ ├── read-time.html │ ├── scripts.html │ ├── search-form.html │ ├── section.html │ ├── skip-links.html │ └── support.html ├── _layouts │ ├── archive.html │ ├── archive_work.html │ ├── atom_feed.html │ ├── autopage_tags.html │ ├── default.html │ ├── home.html │ ├── json_feed.html │ ├── page.html │ └── post.html ├── _pages │ ├── 404.md │ ├── about.md │ ├── articles.md │ ├── contact.md │ ├── faqs.md │ ├── mastering-paper.md │ ├── notes.md │ ├── portraits.md │ ├── sitemap.md │ ├── style-guide.md │ ├── support.md │ ├── tag.md │ ├── terms.md │ └── work.md ├── _plugins │ ├── filters.rb │ ├── lazyload.rb │ ├── markdown_img_replacement.rb │ ├── mm_seo_title.rb │ ├── notice.rb │ ├── sort_name.rb │ └── video_embed.rb ├── _posts │ ├── articles │ │ ├── 2008-07-18-display-problems-imac-g5.md │ │ ├── 2009-01-05-animal-crossing-city-folk-impressions.md │ │ ├── 2012-03-19-going-static.md │ │ ├── 2014-08-29-paperfaces-retrospective.md │ │ ├── 2015-02-10-jekyll-style-guide.md │ │ ├── 2015-09-25-ipad-pro.md │ │ ├── 2016-02-17-using-jekyll-2016.md │ │ ├── 2016-08-21-jekyll-static-comments.md │ │ ├── 2016-12-08-improving-jekyll-static-comments.md │ │ └── 2017-08-30-using-jekyll-2017.md │ ├── mastering-paper │ │ ├── 2013-02-13-short-guide.md │ │ ├── 2013-05-10-drawing-hair.md │ │ ├── 2013-05-16-drawing-blank-faces.md │ │ ├── 2013-07-08-pogo-connect-smart-pen.md │ │ ├── 2013-07-31-introduction-tool-guide.md │ │ ├── 2013-08-31-drawing-trees.md │ │ ├── 2013-09-05-drawing-clouds.md │ │ ├── 2013-09-29-drawing-water.md │ │ ├── 2013-11-08-moleskine-book.md │ │ ├── 2013-11-20-pencil-first-look.md │ │ ├── 2013-11-25-drawing-textures.md │ │ ├── 2013-12-18-pogo-connect-sensitivity.md │ │ ├── 2014-01-13-contour-drawing.md │ │ ├── 2014-02-09-basics.md │ │ ├── 2014-04-21-drawing-faces.md │ │ ├── 2014-07-03-moving-the-loupe.md │ │ ├── 2014-07-06-grid-method.md │ │ ├── 2014-09-16-mix-with-me.md │ │ ├── 2014-09-16-watercolor-brush-update.md │ │ ├── 2014-09-29-paper-2-0.md │ │ ├── 2014-10-25-erasing.md │ │ ├── 2014-11-25-mix.md │ │ ├── 2014-11-28-pencil-53-review.md │ │ ├── 2014-12-18-color-picker.md │ │ ├── 2015-01-02-drawing-outer-space.md │ │ ├── 2015-04-15-faux-layer.md │ │ ├── 2015-06-24-pencil.md │ │ ├── 2015-09-11-paper-3-features.md │ │ └── 2016-05-16-switching-tools.md │ ├── notes │ │ ├── 2006-09-23-feeling-kinda-stuck-half-nelson.md │ │ ├── 2006-10-25-ipod-battery-settlement.md │ │ ├── 2007-06-05-la-moustache-impressions.md │ │ ├── 2007-06-10-tale-two-sisters-impressions.md │ │ ├── 2007-07-28-sunshine-movie-impressions.md │ │ ├── 2007-09-14-one-week-new-ipod-classic.md │ │ ├── 2007-11-17-upgrade-imac-g5-osx-leopard.md │ │ ├── 2007-12-12-rriiccee-show-last-night-soundlab.md │ │ ├── 2008-01-29-diving-bell-butterfly-impressions.md │ │ ├── 2008-04-06-using-rasterbator.md │ │ ├── 2009-01-25-blurb-book-quality-printing.md │ │ ├── 2009-03-29-birds-bird-cage-tattoos.md │ │ ├── 2009-06-09-palm-pre-impressions.md │ │ ├── 2009-10-17-eviltron-prank-review.md │ │ ├── 2009-12-13-doppleganger-credit-card-scammer.md │ │ ├── 2010-06-16-soldout-iphone-4.md │ │ ├── 2010-06-25-iphone4-impressions.md │ │ ├── 2011-04-04-makings-mistake.md │ │ ├── 2011-04-06-knowing-grids-means-breaking-grids.md │ │ ├── 2011-04-12-typography-urban-outfitters.md │ │ ├── 2011-04-21-collecting-records-artwork.md │ │ ├── 2011-04-25-record-art-review-agna-moraines-autobiography-7-inch.md │ │ ├── 2011-05-08-urban-outfitters-typography-goof.md │ │ ├── 2011-05-10-free-aboutme-business-cards.md │ │ ├── 2011-05-19-record-art-review-corn-on-macabre-7-inch.md │ │ ├── 2012-04-04-romance-egg-engagement.md │ │ ├── 2012-08-31-paperfaces-ipad-portrait-project.md │ │ ├── 2013-08-29-365-days-of-drawing.md │ │ ├── 2014-03-07-starting-young.md │ │ ├── 2014-04-01-inspiring-faces.md │ │ ├── 2014-08-24-paperfaces-giveaway.md │ │ ├── 2016-10-17-inktober-2016-failure.md │ │ ├── 2016-10-24-using-ssi.md │ │ ├── 2016-10-25-css-blur-effect.md │ │ ├── 2016-10-27-oil-pastels.md │ │ ├── 2016-11-04-github-pages-publishing-source.md │ │ ├── 2016-11-08-kramdown-table-html.md │ │ ├── 2017-01-30-static-files.md │ │ ├── 2017-05-16-styling-language-specific-code-blocks.md │ │ ├── 2018-11-12-autumn-refresh.md │ │ └── 2019-02-26-faster-netlify-builds.md │ ├── paperfaces │ │ ├── 2012-09-01-veganwendy-portrait.md │ │ ├── 2012-09-02-mmistakes-portrait.md │ │ ├── 2012-09-03-endonend-portrait.md │ │ ├── 2012-09-04-anniejz-portrait.md │ │ ├── 2012-09-04-arialem-portrait.md │ │ ├── 2012-09-04-ashtonjames-portrait.md │ │ ├── 2012-09-04-cellobiafra-portrait.md │ │ ├── 2012-09-04-endonend-2-portrait.md │ │ ├── 2012-09-04-ohhoe-portrait.md │ │ ├── 2012-09-04-pop-ultra-portrait.md │ │ ├── 2012-09-04-ssgetchel-portrait.md │ │ ├── 2012-09-05-rraacchheeaall-portrait.md │ │ ├── 2012-09-05-ryandwillis-portrait.md │ │ ├── 2012-09-05-sheng-ching-portrait.md │ │ ├── 2012-09-06-joaosevilhano-portrait.md │ │ ├── 2012-09-06-kennwhite-portrait.md │ │ ├── 2012-09-06-sippey-portrait.md │ │ ├── 2012-09-06-zainjoyce-portrait.md │ │ ├── 2012-09-10-allegedlymark-portrait.md │ │ ├── 2012-09-10-dev-jac-portrait.md │ │ ├── 2012-09-10-errade-portrait.md │ │ ├── 2012-09-10-lsinger-portrait.md │ │ ├── 2012-09-10-mitchellnicola-portrait.md │ │ ├── 2012-09-10-paulmwatson-portrait.md │ │ ├── 2012-09-10-rattazong-portrait.md │ │ ├── 2012-09-10-robinbailey-portrait.md │ │ ├── 2012-09-10-stephenrevesz-portrait.md │ │ ├── 2012-09-10-thebrady-portrait.md │ │ ├── 2012-09-10-theskull-com-portrait.md │ │ ├── 2012-09-13-ashleymnunn-portrait.md │ │ ├── 2012-09-13-frivmo-portrait.md │ │ ├── 2012-09-13-kevinwoodland-portrait.md │ │ ├── 2012-09-13-khollybell-portrait.md │ │ ├── 2012-09-13-robinbailey-2-portrait.md │ │ ├── 2012-09-13-tedwinder-portrait.md │ │ ├── 2012-09-17-bradleyjp-portrait.md │ │ ├── 2012-09-17-catdrawingguy-portrait.md │ │ ├── 2012-09-17-kristysf-portrait.md │ │ ├── 2012-09-17-markgurman-portrait.md │ │ ├── 2012-09-17-natalyokay-portrait.md │ │ ├── 2012-09-17-tonjac-portrait.md │ │ ├── 2012-09-17-uwenna-portrait.md │ │ ├── 2012-09-18-eggsteff-portrait.md │ │ ├── 2012-09-18-jakesutton-portrait.md │ │ ├── 2012-09-18-mjchamplin-portrait.md │ │ ├── 2012-09-18-zinfiend-portrait.md │ │ ├── 2012-09-20-clamteeth-portrait.md │ │ ├── 2012-09-20-karahesse-portrait.md │ │ ├── 2012-09-20-mike-ftw-portrait.md │ │ ├── 2012-09-21-hotdogwithsauce-portrait.md │ │ ├── 2012-09-21-jossvalo-portrait.md │ │ ├── 2012-09-24-cynthia-portrait.md │ │ ├── 2012-09-24-danimal-portrait.md │ │ ├── 2012-09-24-ochaukin-portrait.md │ │ ├── 2012-09-24-therealamylou-portrait.md │ │ ├── 2012-09-24-timespace-portrait.md │ │ ├── 2012-09-25-bengiroux-portrait.md │ │ ├── 2012-09-25-bulletproofjen-portrait.md │ │ ├── 2012-09-25-marissa-portrait.md │ │ ├── 2012-09-27-4lala-portrait.md │ │ ├── 2012-09-27-dhm-portrait.md │ │ ├── 2012-09-27-kessler-portrait.md │ │ ├── 2012-10-01-arbitral-portrait.md │ │ ├── 2012-10-01-eliglazier-portrait.md │ │ ├── 2012-10-01-flexbrowne-portrait.md │ │ ├── 2012-10-01-guylschmidt-portrait.md │ │ ├── 2012-10-01-joshuaskaroff-portrait.md │ │ ├── 2012-10-01-marianeville-84-portrait.md │ │ ├── 2012-10-04-bi11jon-portrait.md │ │ ├── 2012-10-04-brohatch-portrait.md │ │ ├── 2012-10-04-cranekicker-portrait.md │ │ ├── 2012-10-08-dereklakin-portrait.md │ │ ├── 2012-10-08-lightnessalways-portrait.md │ │ ├── 2012-10-08-matt-mullin-portrait.md │ │ ├── 2012-10-08-niall-obrien-portrait.md │ │ ├── 2012-10-10-editorialism-portrait.md │ │ ├── 2012-10-10-fostermatt-portrait.md │ │ ├── 2012-10-10-karensd-portrait.md │ │ ├── 2012-10-10-melchoyce-portrait.md │ │ ├── 2012-10-15-andreikharlanov-portrait.md │ │ ├── 2012-10-15-fenderf4i-portrait.md │ │ ├── 2012-10-15-jbenton-portrait.md │ │ ├── 2012-10-15-ladygeekgeek-portrait.md │ │ ├── 2012-10-15-marianoabdala-portrait.md │ │ ├── 2012-10-15-maxquattromani-portrait.md │ │ ├── 2012-10-15-mommanofool-portrait.md │ │ ├── 2012-10-17-cassini-portrait.md │ │ ├── 2012-10-17-hugeshark-portrait.md │ │ ├── 2012-10-17-sarakenobi-portrait.md │ │ ├── 2012-10-22-M1RRN-portrait.md │ │ ├── 2012-10-22-allara-portrait.md │ │ ├── 2012-10-22-brackin-portrait.md │ │ ├── 2012-10-22-ewalshe2-portrait.md │ │ ├── 2012-10-22-faresf-portrait.md │ │ ├── 2012-10-22-hallaek-portrait.md │ │ ├── 2012-10-22-moonflowerchild-portrait.md │ │ ├── 2012-10-26-choise-portrait.md │ │ ├── 2012-10-26-morganmiller250-portrait.md │ │ ├── 2012-10-26-ncfc-mad-portrait.md │ │ ├── 2012-10-26-ruth-goodwin-2-portrait.md │ │ ├── 2012-10-26-ruth-goodwin-portrait.md │ │ ├── 2012-10-29-jfskjaerbaek-portrait.md │ │ ├── 2012-10-29-kealey-portrait.md │ │ ├── 2012-10-29-the-boii-portrait.md │ │ ├── 2012-10-29-toberl-portrait.md │ │ ├── 2012-10-30-bdf413-portrait.md │ │ ├── 2012-10-30-eternallife-portrait.md │ │ ├── 2012-10-30-farrenbennett-portrait.md │ │ ├── 2012-11-05-andrew-shaw23-portrait.md │ │ ├── 2012-11-05-fitt-kimberley-portrait.md │ │ ├── 2012-11-05-joshthecantor-portrait.md │ │ ├── 2012-11-05-karen-melgar-portrait.md │ │ ├── 2012-11-05-laurel-renne-portrait.md │ │ ├── 2012-11-05-mr-craig-portrait.md │ │ ├── 2012-11-05-rbartolome-portrait.md │ │ ├── 2012-11-05-realpaul8rown-portrait.md │ │ ├── 2012-11-07-ajkonieckijr-portrait.md │ │ ├── 2012-11-07-carriehammer-portrait.md │ │ ├── 2012-11-07-curlycrazy-portrait.md │ │ ├── 2012-11-07-raquibahasan-portrait.md │ │ ├── 2012-11-12-geekbabe-portrait.md │ │ ├── 2012-11-12-jen-portrait.md │ │ ├── 2012-11-12-kerby-portrait.md │ │ ├── 2012-11-12-mh-portrait.md │ │ ├── 2012-11-12-tasselflower-portrait.md │ │ ├── 2012-11-14-akaheini-portrait.md │ │ ├── 2012-11-14-d-agostino-portrait.md │ │ ├── 2012-11-14-davidpoblador-portrait.md │ │ ├── 2012-11-14-meggandeth-portrait.md │ │ ├── 2012-11-14-theordovician-portrait.md │ │ ├── 2012-11-19-katypegg-portrait.md │ │ ├── 2012-11-19-neckbeard-portrait.md │ │ ├── 2012-11-19-pepfre-portrait.md │ │ ├── 2012-11-19-soaps-portrait.md │ │ ├── 2012-11-19-superbeffie-portrait.md │ │ ├── 2012-11-19-torop4in-portrait.md │ │ ├── 2012-11-19-unlockthedoc-portrait.md │ │ ├── 2012-11-21-commadelimited-portrait.md │ │ ├── 2012-11-21-sarelrivera-portrait.md │ │ ├── 2012-11-26-acostamt-portrait.md │ │ ├── 2012-11-26-alittlebluestar-portrait.md │ │ ├── 2012-11-26-chris-obyrne-portrait.md │ │ ├── 2012-11-26-jaceanderson-portrait.md │ │ ├── 2012-11-26-jarrardcole-portrait.md │ │ ├── 2012-11-26-omri-mor-portrait.md │ │ ├── 2012-11-26-pjrvswp-portrait.md │ │ ├── 2012-11-26-theejana-portrait.md │ │ ├── 2012-11-26-xavdog-portrait.md │ │ ├── 2012-11-27-parisba-portrait.md │ │ ├── 2012-11-30-benjaminzamayo-portrait.md │ │ ├── 2012-11-30-dave-buxton-portrait.md │ │ ├── 2012-11-30-ichris-portrait.md │ │ ├── 2012-11-30-joelmartinez-portrait.md │ │ ├── 2012-11-30-karenkho-portrait.md │ │ ├── 2012-11-30-liamdaly-portrait.md │ │ ├── 2012-11-30-stottle-portrait.md │ │ ├── 2012-12-03-jloupe-portrait.md │ │ ├── 2012-12-03-kennedysgarage-portrait.md │ │ ├── 2012-12-06-annraoiod-portrait.md │ │ ├── 2012-12-06-berniecakez-portrait.md │ │ ├── 2012-12-06-chelseawears-portrait.md │ │ ├── 2012-12-06-christyxcore-portrait.md │ │ ├── 2012-12-06-daigansf-portrait.md │ │ ├── 2012-12-06-krkwd-portrait.md │ │ ├── 2012-12-10-a-farlow44-portrait.md │ │ ├── 2012-12-10-bradenransome-portrait.md │ │ ├── 2012-12-10-getoutyourmap-portrait.md │ │ ├── 2012-12-10-jkusunoki-portrait.md │ │ ├── 2012-12-10-mattdusenbury-portrait.md │ │ ├── 2012-12-10-vilkina-portrait.md │ │ ├── 2012-12-10-zachfulkerson-portrait.md │ │ ├── 2012-12-13-alextrott-portrait.md │ │ ├── 2012-12-13-ameeko-portrait.md │ │ ├── 2012-12-13-benmarsh-portrait.md │ │ ├── 2012-12-13-chetyeary-portrait.md │ │ ├── 2012-12-13-eberth-portrait.md │ │ ├── 2012-12-13-f5point6-portrait.md │ │ ├── 2012-12-13-jonikorpi-portrait.md │ │ ├── 2012-12-13-lyetz-portrait.md │ │ ├── 2012-12-13-mandrl-portrait.md │ │ ├── 2012-12-13-ninomh-portrait.md │ │ ├── 2012-12-13-roblawton-portrait.md │ │ ├── 2012-12-13-stefstivala-portrait.md │ │ ├── 2012-12-13-tarungangwani-portrait.md │ │ ├── 2012-12-13-thetombell-portrait.md │ │ ├── 2012-12-13-yaraher-portrait.md │ │ ├── 2012-12-19-fra-cek-portrait.md │ │ ├── 2012-12-19-maique-portrait.md │ │ ├── 2012-12-31-adeirra-portrait.md │ │ ├── 2012-12-31-amy-lew-portrait.md │ │ ├── 2012-12-31-aragost-portrait.md │ │ ├── 2012-12-31-carlfriend-portrait.md │ │ ├── 2012-12-31-kimkimcachoo-portrait.md │ │ ├── 2012-12-31-leahchu-portrait.md │ │ ├── 2012-12-31-londonwebdev-portrait.md │ │ ├── 2012-12-31-m0rph3v5-portrait.md │ │ ├── 2012-12-31-mattlawton87-portrait.md │ │ ├── 2012-12-31-michaeltomko-portrait.md │ │ ├── 2012-12-31-mriddickw-portrait.md │ │ ├── 2012-12-31-mukealicious-portrait.md │ │ ├── 2012-12-31-ottmark-portrait.md │ │ ├── 2012-12-31-psychoticmilkma-portrait.md │ │ ├── 2012-12-31-quimeraimantada-portrait.md │ │ ├── 2012-12-31-santa-claus-portrait.md │ │ ├── 2012-12-31-sushobhan-portrait.md │ │ ├── 2012-12-31-wiremum-portrait.md │ │ ├── 2012-12-31-wiretillidie-portrait.md │ │ ├── 2013-01-01-bradyv-portrait.md │ │ ├── 2013-01-01-eighthree-portrait.md │ │ ├── 2013-01-01-ihatealexwright-portrait.md │ │ ├── 2013-01-01-jamesslock-portrait.md │ │ ├── 2013-01-01-keyflake-portrait.md │ │ ├── 2013-01-01-michael-rose-portrait.md │ │ ├── 2013-01-01-patrickleary-portrait.md │ │ ├── 2013-01-03-campbell-soupp-portrait.md │ │ ├── 2013-01-03-lemon-lime-portrait.md │ │ ├── 2013-01-03-njklas-portrait.md │ │ ├── 2013-01-03-thebrady-khollybell-portrait.md │ │ ├── 2013-01-06-calwahab-portrait.md │ │ ├── 2013-01-06-chrbutler-portrait.md │ │ ├── 2013-01-06-munkimatt-portrait.md │ │ ├── 2013-01-06-ssetlik-portrait.md │ │ ├── 2013-01-09-slicknet-portrait.md │ │ ├── 2013-01-09-swiftkickcoach-portrait.md │ │ ├── 2013-01-09-tellyoumore-portrait.md │ │ ├── 2013-01-10-aaronrustad-portrait.md │ │ ├── 2013-01-10-gothamity-portrait.md │ │ ├── 2013-01-13-cenk-portrait.md │ │ ├── 2013-01-13-moriartied-portrait.md │ │ ├── 2013-01-13-rasmusfisker-portrait.md │ │ ├── 2013-01-13-slace-portrait.md │ │ ├── 2013-01-17-genevasands-portrait.md │ │ ├── 2013-01-17-melaniejcooke-portrait.md │ │ ├── 2013-01-17-rudy-portrait.md │ │ ├── 2013-01-17-shinfu-portrait.md │ │ ├── 2013-01-17-vragal-portrait.md │ │ ├── 2013-01-20-miemzzz-portrait.md │ │ ├── 2013-01-20-oog-portrait.md │ │ ├── 2013-01-23-cynthia-2-portrait.md │ │ ├── 2013-01-23-gimmeapuck-portrait.md │ │ ├── 2013-01-23-guy1067-portrait.md │ │ ├── 2013-01-23-parisba-2-portrait.md │ │ ├── 2013-01-25-bradykent-portrait.md │ │ ├── 2013-01-25-jamesonroot-portrait.md │ │ ├── 2013-01-25-ryandawidjan-portrait.md │ │ ├── 2013-01-28-andrewjbryk-portrait.md │ │ ├── 2013-01-28-b-sheehan-portrait.md │ │ ├── 2013-01-28-coffeeplz-portrait.md │ │ ├── 2013-01-28-kyle-bridget-portrait.md │ │ ├── 2013-02-01-juanrod82-portrait.md │ │ ├── 2013-02-01-manjumadhav93-portrait.md │ │ ├── 2013-02-01-nick-aylward-portrait.md │ │ ├── 2013-02-01-shamaiela-portrait.md │ │ ├── 2013-02-01-sjr-online-portrait.md │ │ ├── 2013-02-01-slaunchaman-portrait.md │ │ ├── 2013-02-06-antoninygaard-portrait.md │ │ ├── 2013-02-06-justkimolly-portrait.md │ │ ├── 2013-02-06-lisablackler-portrait.md │ │ ├── 2013-02-06-padulantonio-portrait.md │ │ ├── 2013-02-06-pichfl-portrait.md │ │ ├── 2013-02-06-rt44man-portrait.md │ │ ├── 2013-02-07-jamesiii-portrait.md │ │ ├── 2013-02-08-ihamzadev-portrait.md │ │ ├── 2013-02-12-jupiter909-portrait.md │ │ ├── 2013-02-12-sbach-portrait.md │ │ ├── 2013-02-12-tr4y-portrait.md │ │ ├── 2013-02-17-generala-ron-portrait.md │ │ ├── 2013-02-17-kendallina-portrait.md │ │ ├── 2013-02-17-mscynthialee-portrait.md │ │ ├── 2013-02-17-vmasto-2-portrait.md │ │ ├── 2013-02-17-vmasto-portrait.md │ │ ├── 2013-02-20-doertedev-portrait.md │ │ ├── 2013-02-20-ijango-portrait.md │ │ ├── 2013-02-20-itonus-portrait.md │ │ ├── 2013-02-20-mlucus-portrait.md │ │ ├── 2013-02-20-neikura-portrait.md │ │ ├── 2013-02-26-cliquesaurus-portrait.md │ │ ├── 2013-02-26-designhawg-portrait.md │ │ ├── 2013-02-26-josephdjohn-portrait.md │ │ ├── 2013-02-26-tinyrach-portrait.md │ │ ├── 2013-02-26-tylr-portrait.md │ │ ├── 2013-03-03-danmurillo-portrait.md │ │ ├── 2013-03-03-fraulein-doktor-portrait.md │ │ ├── 2013-03-03-kilsey-portrait.md │ │ ├── 2013-03-03-lovisaslife-portrait.md │ │ ├── 2013-03-03-macjaeger-portrait.md │ │ ├── 2013-03-03-stefanhartwig-portrait.md │ │ ├── 2013-03-11-ancratyne-portrait.md │ │ ├── 2013-03-11-asinrope-portrait.md │ │ ├── 2013-03-11-dopplegl-portrait.md │ │ ├── 2013-03-11-ferisb-portrait.md │ │ ├── 2013-03-11-gudmundur-portrait.md │ │ ├── 2013-03-11-missrachilli-portrait.md │ │ ├── 2013-03-11-n8foo-portrait.md │ │ ├── 2013-03-11-sdtechgirl-portrait.md │ │ ├── 2013-03-11-togsy-portrait.md │ │ ├── 2013-03-15-agentkyle-portrait.md │ │ ├── 2013-03-15-ginacrat-portrait.md │ │ ├── 2013-03-15-h3pps-portrait.md │ │ ├── 2013-03-15-hamkate-portrait.md │ │ ├── 2013-03-15-lord-faethor-portrait.md │ │ ├── 2013-03-21-aarongreenlee-portrait.md │ │ ├── 2013-03-21-aripalo-portrait.md │ │ ├── 2013-03-21-blumentoast-portrait.md │ │ ├── 2013-03-21-dicappucinos-portrait.md │ │ ├── 2013-03-21-fiips-portrait.md │ │ ├── 2013-03-21-likejunx-portrait.md │ │ ├── 2013-03-21-rdewind151-portrait.md │ │ ├── 2013-03-26-gattermann-portrait.md │ │ ├── 2013-03-26-rwangsa-portrait.md │ │ ├── 2013-03-26-shamaiela-2-portrait.md │ │ ├── 2013-03-26-timonus-portrait.md │ │ ├── 2013-03-26-xshordiex-portrait.md │ │ ├── 2013-03-30-jonarnold-portrait.md │ │ ├── 2013-03-30-pixelgraphix-portrait.md │ │ ├── 2013-03-30-ryanfarrellstl-portrait.md │ │ ├── 2013-03-30-voidet-portrait.md │ │ ├── 2013-04-03-a-erza-portrait.md │ │ ├── 2013-04-03-gaptone-portrait.md │ │ ├── 2013-04-03-jpkoudstaal-portrait.md │ │ ├── 2013-04-10-bookety-portrait.md │ │ ├── 2013-04-10-kingspacelaser-portrait.md │ │ ├── 2013-04-10-mstr-dee-portrait.md │ │ ├── 2013-04-10-normanholz-portrait.md │ │ ├── 2013-04-10-soulxheart-portrait.md │ │ ├── 2013-04-10-the-wards-portrait.md │ │ ├── 2013-04-10-zoecho-portrait.md │ │ ├── 2013-04-16-alec-eiffel-portrait.md │ │ ├── 2013-04-16-bjoerndemming-portrait.md │ │ ├── 2013-04-16-charlietuna-portrait.md │ │ ├── 2013-04-16-etowow-portrait.md │ │ ├── 2013-04-16-tylerflowers-portrait.md │ │ ├── 2013-04-26-codeprincess-portrait.md │ │ ├── 2013-04-26-elektrojunge-portrait.md │ │ ├── 2013-04-26-hergimerc-portrait.md │ │ ├── 2013-04-26-imnk-portrait.md │ │ ├── 2013-04-26-katebudko-portrait.md │ │ ├── 2013-04-26-lsanza-portrait.md │ │ ├── 2013-04-26-missloulouxx-portrait.md │ │ ├── 2013-04-26-pauladamdavis-portrait.md │ │ ├── 2013-04-26-rgheissari-portrait.md │ │ ├── 2013-04-26-superlucyj-portrait.md │ │ ├── 2013-04-26-twe4ked-portrait.md │ │ ├── 2013-05-01-cthrin-portrait.md │ │ ├── 2013-05-01-cyrisxd-portrait.md │ │ ├── 2013-05-01-focusaurus-portrait.md │ │ ├── 2013-05-01-natraybould-portrait.md │ │ ├── 2013-05-01-taylorotwell-portrait.md │ │ ├── 2013-05-04-boba-fett-portrait.md │ │ ├── 2013-05-04-chewbacca-leia-boob-portrait.md │ │ ├── 2013-05-04-darth-vader-portrait.md │ │ ├── 2013-05-04-slave-leia-jabba-the-hutt-portrait.md │ │ ├── 2013-05-04-yoda-luke-skywalker-portrait.md │ │ ├── 2013-05-05-asthehospturns-portrait.md │ │ ├── 2013-05-05-prasad84-portrait.md │ │ ├── 2013-05-05-xochristianna-portrait.md │ │ ├── 2013-05-06-du-vs-ich-portrait.md │ │ ├── 2013-05-07-mmoutenot-portrait.md │ │ ├── 2013-05-08-iron-man-portrait.md │ │ ├── 2013-05-08-vanessatsmiles-portrait.md │ │ ├── 2013-05-10-xoalexo-portrait.md │ │ ├── 2013-05-11-garlick-1989-portrait.md │ │ ├── 2013-05-11-toblr-portrait.md │ │ ├── 2013-05-12-veganwendy-mothers-day-portrait.md │ │ ├── 2013-05-14-skinny-whiteguy-portrait.md │ │ ├── 2013-05-15-christynicol-portrait.md │ │ ├── 2013-05-16-chadtafolla-portrait.md │ │ ├── 2013-05-17-afflictedevents-portrait.md │ │ ├── 2013-05-17-juleshughan-portrait.md │ │ ├── 2013-05-18-spock-captain-kirk-portrait.md │ │ ├── 2013-05-20-jeffchausse-portrait.md │ │ ├── 2013-05-21-folktrash-portrait.md │ │ ├── 2013-05-24-johnawells-portrait.md │ │ ├── 2013-05-24-nat-skipper-portrait.md │ │ ├── 2013-05-24-sailajak-portrait.md │ │ ├── 2013-05-28-evhip10-portrait.md │ │ ├── 2013-05-28-glennsharron-portrait.md │ │ ├── 2013-05-28-morgantj-portrait.md │ │ ├── 2013-05-28-suhairykz-portrait.md │ │ ├── 2013-05-29-michael-rose-beard-portrait.md │ │ ├── 2013-05-30-thebrady-khollybell-2-portrait.md │ │ ├── 2013-05-31-bradersk8r-portrait.md │ │ ├── 2013-06-01-davglass-portrait.md │ │ ├── 2013-06-01-fiftythree-portraits.md │ │ ├── 2013-06-03-cruz-ce-portrait.md │ │ ├── 2013-06-03-ginader-portrait.md │ │ ├── 2013-06-03-joeavella-portrait.md │ │ ├── 2013-06-04-grategatsby-portrait.md │ │ ├── 2013-06-05-go-master-portrait.md │ │ ├── 2013-06-06-lulomx-portrait.md │ │ ├── 2013-06-10-benbrignell-portrait.md │ │ ├── 2013-06-10-caziebaby-portrait.md │ │ ├── 2013-06-10-jakemoore-portrait.md │ │ ├── 2013-06-10-mishcrashh-portrait.md │ │ ├── 2013-06-10-pepkapepich-portrait.md │ │ ├── 2013-06-10-vidalia-portrait.md │ │ ├── 2013-06-11-mates-of-state-portrait.md │ │ ├── 2013-06-14-andy-h-portrait.md │ │ ├── 2013-06-14-lovesweetsex-portrait.md │ │ ├── 2013-06-14-who-her-portrait.md │ │ ├── 2013-06-17-idpro-portrait.md │ │ ├── 2013-06-17-minormiracle-portrait.md │ │ ├── 2013-06-17-studioprisoner-portrait.md │ │ ├── 2013-06-18-hepikkat-portrait.md │ │ ├── 2013-06-19-dismanntled-portrait.md │ │ ├── 2013-06-20-alfredormz-portrait.md │ │ ├── 2013-06-21-gustafsonlisa-portrait.md │ │ ├── 2013-06-24-invalididentity-portrait.md │ │ ├── 2013-06-24-jmkcc-portrait.md │ │ ├── 2013-06-24-nikkiccross-portrait.md │ │ ├── 2013-06-26-endouz-portrait.md │ │ ├── 2013-06-26-joelmartinez-2-portrait.md │ │ ├── 2013-06-28-bobbydharrell-portrait.md │ │ ├── 2013-06-28-sironfoot-portrait.md │ │ ├── 2013-07-01-josearato-portrait.md │ │ ├── 2013-07-01-m7z-portrait.md │ │ ├── 2013-07-01-mikkelmarius-portrait.md │ │ ├── 2013-07-01-web-martin-portrait.md │ │ ├── 2013-07-03-alexkaessner-portrait.md │ │ ├── 2013-07-03-pcperini-portrait.md │ │ ├── 2013-07-06-jin-woojooin-portrait.md │ │ ├── 2013-07-06-melissabalkon-portrait.md │ │ ├── 2013-07-06-vmalloc-portrait.md │ │ ├── 2013-07-09-floraworks-portrait.md │ │ ├── 2013-07-09-mentalground0-portrait.md │ │ ├── 2013-07-09-nvshah-portrait.md │ │ ├── 2013-07-11-kayeong15-portrait.md │ │ ├── 2013-07-11-lmichelleinc-portrait.md │ │ ├── 2013-07-12-andispringer-portrait.md │ │ ├── 2013-07-15-jhummel-portrait.md │ │ ├── 2013-07-15-leviwintering-portrait.md │ │ ├── 2013-07-15-miriamchadwick-portrait.md │ │ ├── 2013-07-16-kasperstenbom-portrait.md │ │ ├── 2013-07-18-rhp7-portrait.md │ │ ├── 2013-07-18-surjithctly-portrait.md │ │ ├── 2013-07-19-luxepain-portrait.md │ │ ├── 2013-07-20-lizziebeth-portrait.md │ │ ├── 2013-07-22-glitchpoke-portrait.md │ │ ├── 2013-07-22-technacity-portrait.md │ │ ├── 2013-07-25-herzbescheuert-portrait.md │ │ ├── 2013-07-25-jackmcdade-portrait.md │ │ ├── 2013-07-25-rockdanne-portrait.md │ │ ├── 2013-07-26-parkr-portrait.md │ │ ├── 2013-07-29-hipster-parade-portrait.md │ │ ├── 2013-07-29-jinthagerman-portrait.md │ │ ├── 2013-07-29-sbrolins-portrait.md │ │ ├── 2013-07-29-syropian-portrait.md │ │ ├── 2013-07-31-spasstiii-portrait.md │ │ ├── 2013-08-02-thatmiddleway-portrait.md │ │ ├── 2013-08-05-colmsmyth-portrait.md │ │ ├── 2013-08-05-davecowart-portrait.md │ │ ├── 2013-08-05-edwinvdbogert-portrait.md │ │ ├── 2013-08-05-jenny-smyth-portrait.md │ │ ├── 2013-08-06-veganwendy-birthday-portrait.md │ │ ├── 2013-08-08-iainspad-portrait.md │ │ ├── 2013-08-08-sodevious-portrait.md │ │ ├── 2013-08-12-dannowatts-portrait.md │ │ ├── 2013-08-12-genelocklin-portrait.md │ │ ├── 2013-08-12-klebeluft-portrait.md │ │ ├── 2013-08-12-thesugarmonster-portrait.md │ │ ├── 2013-08-14-svendahlstrand-portrait.md │ │ ├── 2013-08-14-wefreema-portrait.md │ │ ├── 2013-08-16-apvmacgregor-portrait.md │ │ ├── 2013-08-16-webexplorations-portrait.md │ │ ├── 2013-08-19-dhrrgn-portrait.md │ │ ├── 2013-08-19-isellsoap-portrait.md │ │ ├── 2013-08-19-mattfieldy-portrait.md │ │ ├── 2013-08-22-laramulady-portrait.md │ │ ├── 2013-08-22-steve-jobs-portrait.md │ │ ├── 2013-08-22-talksinmath-portrait.md │ │ ├── 2013-08-22-tipican-portrait.md │ │ ├── 2013-08-26-hbcke-portrait.md │ │ ├── 2013-08-26-rossbelmont-portrait.md │ │ ├── 2013-08-26-sarahewells-portrait.md │ │ ├── 2013-08-28-missxpistol-portrait.md │ │ ├── 2013-08-28-netzmensch-portrait.md │ │ ├── 2013-09-03-alasdair91-portrait.md │ │ ├── 2013-09-03-andrewbrewer-portrait.md │ │ ├── 2013-09-03-brototyp-portrait.md │ │ ├── 2013-09-03-cormacrelf-portrait.md │ │ ├── 2013-09-03-jaredgoertzen-portrait.md │ │ ├── 2013-09-03-toastroom-portrait.md │ │ ├── 2013-09-05-gscottolson-portrait.md │ │ ├── 2013-09-05-jenniferamur-portrait.md │ │ ├── 2013-09-05-lindsaytower-portrait.md │ │ ├── 2013-09-09-seanblezard-portrait.md │ │ ├── 2013-09-09-tiamclaurin-portrait.md │ │ ├── 2013-09-09-zachorybenton-portrait.md │ │ ├── 2013-09-12-jean-francois-portrait.md │ │ ├── 2013-09-12-lemberg-portrait.md │ │ ├── 2013-09-12-madcap-laughs-portrait.md │ │ ├── 2013-09-17-ejotto-portrait.md │ │ ├── 2013-09-17-ekinding-portrait.md │ │ ├── 2013-09-17-ericdfields-portrait.md │ │ ├── 2013-09-17-fighto-portrait.md │ │ ├── 2013-09-17-imhobson-portrait.md │ │ ├── 2013-09-17-nett00n-portrait.md │ │ ├── 2013-09-17-tannice-portrait.md │ │ ├── 2013-09-20-agebhard-portrait.md │ │ ├── 2013-09-20-lewips-portrait.md │ │ ├── 2013-09-23-cjmlgrto-portrait.md │ │ ├── 2013-09-23-emmajrwalker-portrait.md │ │ ├── 2013-09-23-igorshkau-portrait.md │ │ ├── 2013-09-24-travissawrie-portrait.md │ │ ├── 2013-09-25-sakkaden-portrait.md │ │ ├── 2013-09-26-mattknox-portrait.md │ │ ├── 2013-09-27-pappyshannon-portrait.md │ │ ├── 2013-09-30-calebd-portrait.md │ │ ├── 2013-09-30-chappers-ma-portrait.md │ │ ├── 2013-09-30-ddrjr-portrait.md │ │ ├── 2013-10-01-conrey-portrait.md │ │ ├── 2013-10-01-olucho-portrait.md │ │ ├── 2013-10-02-anniversary-portrait.md │ │ ├── 2013-10-03-comicasuperhero-portrait.md │ │ ├── 2013-10-04-scripty-portrait.md │ │ ├── 2013-10-07-chrishnry-portrait.md │ │ ├── 2013-10-07-dubble-c-portrait.md │ │ ├── 2013-10-07-warrentalmarkes-portrait.md │ │ ├── 2013-10-09-drodol-portrait.md │ │ ├── 2013-10-09-mich-maci-portrait.md │ │ ├── 2013-10-10-domigan-portrait.md │ │ ├── 2013-10-14-clepetit-portrait.md │ │ ├── 2013-10-14-drexore-portrait.md │ │ ├── 2013-10-14-misfit82-portrait.md │ │ ├── 2013-10-14-rkrismcneely-portrait.md │ │ ├── 2013-10-16-rob-jayne-portrait.md │ │ ├── 2013-10-16-sailesh-panchal-portrait.md │ │ ├── 2013-10-17-fubaruba-portrait.md │ │ ├── 2013-10-18-brandice-portrait.md │ │ ├── 2013-10-22-behindthehorns-portrait.md │ │ ├── 2013-10-22-cupcakelarissa-portrait.md │ │ ├── 2013-10-22-hawk-se-portrait.md │ │ ├── 2013-10-22-ninomh-2-portrait.md │ │ ├── 2013-10-28-annekoehler-portrait.md │ │ ├── 2013-10-28-basbou-portrait.md │ │ ├── 2013-10-28-hampusn-portrait.md │ │ ├── 2013-10-28-n8zug-portrait.md │ │ ├── 2013-10-28-thebrendanbrown-portrait.md │ │ ├── 2013-10-28-timcameronryan-portrait.md │ │ ├── 2013-10-30-alec-schmidt-portrait.md │ │ ├── 2013-10-30-xherzdame-portrait.md │ │ ├── 2013-10-31-klikekyle-portrait.md │ │ ├── 2013-11-04-nevyn-portrait.md │ │ ├── 2013-11-04-pedroloo-portrait.md │ │ ├── 2013-11-04-sammycostello-portrait.md │ │ ├── 2013-11-04-sdevore-portrait.md │ │ ├── 2013-11-06-iucounu-portrait.md │ │ ├── 2013-11-06-jr-plusplus-portrait.md │ │ ├── 2013-11-08-aurora-portrait.md │ │ ├── 2013-11-08-wakas-mir-portrait.md │ │ ├── 2013-11-11-archaikh-portrait.md │ │ ├── 2013-11-11-beautiful-paine-portrait.md │ │ ├── 2013-11-11-straatkatbasson-portrait.md │ │ ├── 2013-11-12-asduner-portrait.md │ │ ├── 2013-11-13-alexc-portrait.md │ │ ├── 2013-11-13-thor-portrait.md │ │ ├── 2013-11-18-enderfp-portrait.md │ │ ├── 2013-11-18-joshtodd-portrait.md │ │ ├── 2013-11-18-lauren-mudrock-portrait.md │ │ ├── 2013-11-18-sasquatchfuzz-portrait.md │ │ ├── 2013-11-20-guavagleelesley-portrait.md │ │ ├── 2013-11-20-kristian-portrait.md │ │ ├── 2013-11-21-manntaclaus-portrait.md │ │ ├── 2013-11-25-darialuna-portrait.md │ │ ├── 2013-11-25-ryan-gosling-portrait.md │ │ ├── 2013-11-25-sendapalic-portrait.md │ │ ├── 2013-11-25-sergei-r-portrait.md │ │ ├── 2013-11-26-bollywooed-portrait.md │ │ ├── 2013-12-02-carmel-g-portrait.md │ │ ├── 2013-12-02-christianna-p-portrait.md │ │ ├── 2013-12-02-haley-portrait.md │ │ ├── 2013-12-02-idhanta-portrait.md │ │ ├── 2013-12-02-joeycarmello-portrait.md │ │ ├── 2013-12-02-paviro-portrait.md │ │ ├── 2013-12-02-reason2live-portrait.md │ │ ├── 2013-12-02-time-travelers-portrait.md │ │ ├── 2013-12-02-wendy-rose-sktchy-portrait.md │ │ ├── 2013-12-05-effy-e-portrait.md │ │ ├── 2013-12-05-oxodesign-portrait.md │ │ ├── 2013-12-05-patrickch-portrait.md │ │ ├── 2013-12-09-dermike-portrait.md │ │ ├── 2013-12-09-esty-c-portrait.md │ │ ├── 2013-12-09-grantlandram-portrait.md │ │ ├── 2013-12-10-angel-frias-portrait.md │ │ ├── 2013-12-11-juan-kyle-portrait.md │ │ ├── 2013-12-11-rotub-portrait.md │ │ ├── 2013-12-16-bigmajk-portrait.md │ │ ├── 2013-12-16-jonathanhagans-2-portrait.md │ │ ├── 2013-12-16-jonathanhagans-portrait.md │ │ ├── 2013-12-16-kasey-k-portrait.md │ │ ├── 2013-12-16-knurpsi-portrait.md │ │ ├── 2013-12-17-jonathanhagans-3-portrait.md │ │ ├── 2013-12-18-hellolauraamy-portrait.md │ │ ├── 2013-12-19-adammorgan100-2-portrait.md │ │ ├── 2013-12-19-adammorgan100-portrait.md │ │ ├── 2013-12-23-adammorgan100-3-portrait.md │ │ ├── 2013-12-23-maggiebob-portrait.md │ │ ├── 2013-12-23-tati-portrait.md │ │ ├── 2013-12-23-themarcstone-portrait.md │ │ ├── 2013-12-24-rosebuds-christmas-portrait.md │ │ ├── 2013-12-28-ayepod-portrait.md │ │ ├── 2013-12-28-greeleygeek-portrait.md │ │ ├── 2013-12-28-hugo-s-portrait.md │ │ ├── 2014-01-02-dani-o-portrait.md │ │ ├── 2014-01-02-imuggle-portrait.md │ │ ├── 2014-01-02-manzu-portrait.md │ │ ├── 2014-01-02-shuether-portrait.md │ │ ├── 2014-01-02-virshawn-portrait.md │ │ ├── 2014-01-03-cuteasebutton-portrait.md │ │ ├── 2014-01-06-diako-m-portrait.md │ │ ├── 2014-01-06-sprinkles68-portrait.md │ │ ├── 2014-01-06-tonynof-portrait.md │ │ ├── 2014-01-07-drunkcod-portrait.md │ │ ├── 2014-01-08-catherine-c-portrait.md │ │ ├── 2014-01-09-jayperdue-portrait.md │ │ ├── 2014-01-10-jmarkmueller-portrait.md │ │ ├── 2014-01-13-augenblickpunkt-portrait.md │ │ ├── 2014-01-13-danielle-m-portrait.md │ │ ├── 2014-01-13-jasonact-portrait.md │ │ ├── 2014-01-14-bird-o-portrait.md │ │ ├── 2014-01-15-steve-fenton-portrait.md │ │ ├── 2014-01-16-kirsty-h-portrait.md │ │ ├── 2014-01-17-alxknt-portrait.md │ │ ├── 2014-01-20-allyson-b-portrait.md │ │ ├── 2014-01-20-thenimesh-portrait.md │ │ ├── 2014-01-21-olesya-l-portrait.md │ │ ├── 2014-01-21-tombryan-portrait.md │ │ ├── 2014-01-23-cocoapriest-portrait.md │ │ ├── 2014-01-23-mia-di-portrait.md │ │ ├── 2014-01-24-megan-g-portrait.md │ │ ├── 2014-01-27-bjverot-portrait.md │ │ ├── 2014-01-27-daniel-w-portrait.md │ │ ├── 2014-01-27-kirsten-b-portrait.md │ │ ├── 2014-01-28-inferno-may13-portrait.md │ │ ├── 2014-01-29-kayla-e-portrait.md │ │ ├── 2014-01-30-vinitkme-portrait.md │ │ ├── 2014-01-31-laryssa-w-portrait.md │ │ ├── 2014-02-03-collinsmandy-portrait.md │ │ ├── 2014-02-03-kim-s-portrait.md │ │ ├── 2014-02-03-theoduscrane-portrait.md │ │ ├── 2014-02-04-kalina-b-portrait.md │ │ ├── 2014-02-06-carreteronacho-portrait.md │ │ ├── 2014-02-07-kylesethgray-portrait.md │ │ ├── 2014-02-10-dudrenov-portrait.md │ │ ├── 2014-02-10-madgarden-portrait.md │ │ ├── 2014-02-10-ssgetchel-2-portrait.md │ │ ├── 2014-02-11-fivepops-portrait.md │ │ ├── 2014-02-12-lukei4655-portrait.md │ │ ├── 2014-02-13-sophia-portrait.md │ │ ├── 2014-02-14-susi-portrait.md │ │ ├── 2014-02-17-chetterbate-haleymoffatt-portrait.md │ │ ├── 2014-02-17-lorena-portrait.md │ │ ├── 2014-02-17-matt-s-portrait.md │ │ ├── 2014-02-17-tommysadlr-portrait.md │ │ ├── 2014-02-18-big-m-portrait.md │ │ ├── 2014-02-20-appinator-portrait.md │ │ ├── 2014-02-20-skinny-lee-portrait.md │ │ ├── 2014-02-21-shessoph-portrait.md │ │ ├── 2014-02-24-kishba-portrait.md │ │ ├── 2014-02-24-patbits-portrait.md │ │ ├── 2014-02-24-tomwhild-portrait.md │ │ ├── 2014-02-25-jennifer-o-portrait.md │ │ ├── 2014-02-26-bretto-portrait.md │ │ ├── 2014-02-27-bryan-costanich-portrait.md │ │ ├── 2014-02-28-matteo-flora-portrait.md │ │ ├── 2014-03-03-jee-chasles-portrait.md │ │ ├── 2014-03-03-killer-clown-portrait.md │ │ ├── 2014-03-03-lorenzo-portrait.md │ │ ├── 2014-03-04-bill-liu-portrait.md │ │ ├── 2014-03-05-talia-p-portrait.md │ │ ├── 2014-03-06-gh0st-mob-portrait.md │ │ ├── 2014-03-07-chronic-portrait.md │ │ ├── 2014-03-10-jen-f-portrait.md │ │ ├── 2014-03-10-robhampson-portrait.md │ │ ├── 2014-03-10-sophia-matilde-portrait.md │ │ ├── 2014-03-11-emmaikesselhut-portrait.md │ │ ├── 2014-03-13-bingopajamas-portrait.md │ │ ├── 2014-03-13-pesch67-portrait.md │ │ ├── 2014-03-14-janten-portrait.md │ │ ├── 2014-03-17-dillydallygames-portrait.md │ │ ├── 2014-03-17-mstrandberg-portrait.md │ │ ├── 2014-03-18-chadtafolla-2-portrait.md │ │ ├── 2014-03-18-thomas-d-portrait.md │ │ ├── 2014-03-19-ipetercao-portrait.md │ │ ├── 2014-03-21-barbara-m-portrait.md │ │ ├── 2014-03-21-rene-d-portrait.md │ │ ├── 2014-03-24-ideal1st-portrait.md │ │ ├── 2014-03-24-jess-j-portrait.md │ │ ├── 2014-03-24-marcus-portrait.md │ │ ├── 2014-03-26-marie-a-portrait.md │ │ ├── 2014-03-26-zakatnov-portrait.md │ │ ├── 2014-03-28-lisaorye-portrait.md │ │ ├── 2014-03-28-rubenharris-portrait.md │ │ ├── 2014-03-31-beauty-profile-portrait.md │ │ ├── 2014-03-31-j-miner9-portrait.md │ │ ├── 2014-03-31-jamesramsay-portrait.md │ │ ├── 2014-04-01-amyburvall-portrait.md │ │ ├── 2014-04-02-cellguru-portrait.md │ │ ├── 2014-04-04-ellaweston-portrait.md │ │ ├── 2014-04-04-snowwhitechaos-portrait.md │ │ ├── 2014-04-06-fivepops-2-portrait.md │ │ ├── 2014-04-07-hjalle-portrait.md │ │ ├── 2014-04-07-reborg-portrait.md │ │ ├── 2014-04-07-robeberhardt-portrait.md │ │ ├── 2014-04-10-luvgahyun-portrait.md │ │ ├── 2014-04-10-pao-t-portrait.md │ │ ├── 2014-04-11-ivanhcsim-portrait.md │ │ ├── 2014-04-14-johntwolives-portrait.md │ │ ├── 2014-04-14-m-large-portrait.md │ │ ├── 2014-04-14-xbrokencydez-portrait.md │ │ ├── 2014-04-15-buttchinbro-portrait.md │ │ ├── 2014-04-16-mikeredmer-portrait.md │ │ ├── 2014-04-17-theladykendrick-portrait.md │ │ ├── 2014-04-18-mifredk-portrait.md │ │ ├── 2014-04-22-matthewrex-portrait.md │ │ ├── 2014-04-22-monaura0-portrait.md │ │ ├── 2014-04-22-scarlett-johansson-portrait.md │ │ ├── 2014-04-22-stilettoodiva-portrait.md │ │ ├── 2014-04-24-neil-pie-portrait.md │ │ ├── 2014-04-24-rose-l-portrait.md │ │ ├── 2014-04-25-ashyda-portrait.md │ │ ├── 2014-04-28-akaiiro-portrait.md │ │ ├── 2014-04-28-bzhgeek-portrait.md │ │ ├── 2014-04-28-matilda-jane-twins-portrait.md │ │ ├── 2014-04-29-bengillam-portrait.md │ │ ├── 2014-04-30-han-solo-portrait.md │ │ ├── 2014-05-01-general-grievous-portrait.md │ │ ├── 2014-05-02-emperor-palpatine-portrait.md │ │ ├── 2014-05-05-admiral-ackbar-portrait.md │ │ ├── 2014-05-05-darth-maul-portrait.md │ │ ├── 2014-05-05-lando-calrissian-portrait.md │ │ ├── 2014-05-05-obi-wan-kenobi-portrait.md │ │ ├── 2014-05-05-romantic-couple-portrait.md │ │ ├── 2014-05-09-fridorr-portrait.md │ │ ├── 2014-05-09-optimaximal-portrait.md │ │ ├── 2014-05-10-kate-k-portrait.md │ │ ├── 2014-05-10-weiheng-portrait.md │ │ ├── 2014-05-12-b-a-w-portrait.md │ │ ├── 2014-05-14-crusell-portrait.md │ │ ├── 2014-05-14-joan-martin-portrait.md │ │ ├── 2014-05-16-ashahmoradian-portrait.md │ │ ├── 2014-05-16-patricia-f-portrait.md │ │ ├── 2014-05-19-mmistakes-2-portrait.md │ │ ├── 2014-05-19-rdraether-portrait.md │ │ ├── 2014-05-19-tabbitha-s-portrait.md │ │ ├── 2014-05-23-barelolk-portrait.md │ │ ├── 2014-05-23-d0ugal-portrait.md │ │ ├── 2014-05-23-ero-brat-portrait.md │ │ ├── 2014-05-23-itzyasmine-portrait.md │ │ ├── 2014-05-27-eimaj-j-portrait.md │ │ ├── 2014-05-27-kitty-shea-portrait.md │ │ ├── 2014-05-27-old-wolverine-portrait.md │ │ ├── 2014-05-27-zombieprocess-portrait.md │ │ ├── 2014-05-30-bethany-g-portrait.md │ │ ├── 2014-05-30-fuzavue-portrait.md │ │ ├── 2014-05-30-nickkeyphotos-portrait.md │ │ ├── 2014-06-04-cleberwsantos-portrait.md │ │ ├── 2014-06-04-duha-a-portrait.md │ │ ├── 2014-06-04-erin-t-portrait.md │ │ ├── 2014-06-04-scoutu-portrait.md │ │ ├── 2014-06-04-ukulele-bikes-portrait.md │ │ ├── 2014-06-07-fur-mint-portrait.md │ │ ├── 2014-06-07-olly-h-portrait.md │ │ ├── 2014-06-07-tyrol-mr-portrait.md │ │ ├── 2014-06-09-isantipov-portrait.md │ │ ├── 2014-06-09-marcmail-portrait.md │ │ ├── 2014-06-11-cahnory-portrait.md │ │ ├── 2014-06-11-ronjeffries-portrait.md │ │ ├── 2014-06-12-velanv-portrait.md │ │ ├── 2014-06-13-sidraz-portrait.md │ │ ├── 2014-06-16-ikaish-portrait.md │ │ ├── 2014-06-16-lydia-deetz-portrait.md │ │ ├── 2014-06-16-t-lawson-portrait.md │ │ ├── 2014-06-17-timothykrell-portrait.md │ │ ├── 2014-06-18-bombaybellyrina-portrait.md │ │ ├── 2014-06-20-anne-c-portrait.md │ │ ├── 2014-06-20-matt-davey-portrait.md │ │ ├── 2014-06-23-chloe-winter-portrait.md │ │ ├── 2014-06-23-everly-autumn-portrait.md │ │ ├── 2014-06-23-rangerrick-portrait.md │ │ ├── 2014-06-25-jameswestnz-portrait.md │ │ ├── 2014-06-25-ryan-s-portrait.md │ │ ├── 2014-06-26-david-mc-portrait.md │ │ ├── 2014-06-27-cincinnatigal-portrait.md │ │ ├── 2014-06-30-christina-u-portrait.md │ │ ├── 2014-06-30-efox-angel-portrait.md │ │ ├── 2014-06-30-simonbusborg-portrait.md │ │ ├── 2014-07-02-kristoffbertram-portrait.md │ │ ├── 2014-07-02-yakndara-b-portrait.md │ │ ├── 2014-07-05-juan-d-portrait.md │ │ ├── 2014-07-05-lascorbe-portrait.md │ │ ├── 2014-07-05-makenna-s-portrait.md │ │ ├── 2014-07-05-toph-portrait.md │ │ ├── 2014-07-10-ifleiv-portrait.md │ │ ├── 2014-07-10-lassebaagoe-portrait.md │ │ ├── 2014-07-10-riddl-portrait.md │ │ ├── 2014-07-10-vlad-s-portrait.md │ │ ├── 2014-07-12-gusso-portrait.md │ │ ├── 2014-07-12-twnsndco-portrait.md │ │ ├── 2014-07-12-weheartgames-portrait.md │ │ ├── 2014-07-20-andrewjclark-portrait.md │ │ ├── 2014-07-20-claytonfarr-portrait.md │ │ ├── 2014-07-20-jongretar-portrait.md │ │ ├── 2014-07-20-mluker-portrait.md │ │ ├── 2014-07-20-sj-selina-portrait.md │ │ ├── 2014-07-20-smroux-portrait.md │ │ ├── 2014-07-21-honey-b-portrait.md │ │ ├── 2014-07-22-claudioguglieri-portrait.md │ │ ├── 2014-07-22-sschuermann-portrait.md │ │ ├── 2014-07-24-craiginwales-portrait.md │ │ ├── 2014-07-24-trollhunden-portrait.md │ │ ├── 2014-07-28-adolvsson-portrait.md │ │ ├── 2014-07-28-gbeschbacher-portrait.md │ │ ├── 2014-07-28-tomasmalmsten-portrait.md │ │ ├── 2014-07-28-und-o-portrait.md │ │ ├── 2014-07-30-mattabbo-portrait.md │ │ ├── 2014-07-30-mosiejczuk-portrait.md │ │ ├── 2014-08-01-chetyeary-2-portrait.md │ │ ├── 2014-08-01-ipatrycjar-portrait.md │ │ ├── 2014-08-03-rosebuds-2-portrait.md │ │ ├── 2014-08-04-fynlay-p-portrait.md │ │ ├── 2014-08-04-maryoma-b-portrait.md │ │ ├── 2014-08-06-andrew-eick-portrait.md │ │ ├── 2014-08-06-diego-s-portrait.md │ │ ├── 2014-08-06-livetosail42-portrait.md │ │ ├── 2014-08-10-farbenprinz-portrait.md │ │ ├── 2014-08-10-gharpreet-portrait.md │ │ ├── 2014-08-10-girl-cat-portrait.md │ │ ├── 2014-08-10-sonja-b-portrait.md │ │ ├── 2014-08-14-charlotte-h-portrait.md │ │ ├── 2014-08-14-east-docht-portrait.md │ │ ├── 2014-08-14-littlest-avenger-portrait.md │ │ ├── 2014-08-18-awinterghost-portrait.md │ │ ├── 2014-08-18-jonas-c-portrait.md │ │ ├── 2014-08-18-modemlooper-portrait.md │ │ ├── 2014-08-18-pete-himself-portrait.md │ │ ├── 2014-08-21-hroxby-portrait.md │ │ ├── 2014-08-21-mandy-b-portrait.md │ │ ├── 2014-08-21-yorgle-portrait.md │ │ ├── 2014-08-25-bargenson-portrait.md │ │ ├── 2014-08-25-chrissy-jo-portrait.md │ │ ├── 2014-08-25-jmcquarrie-portrait.md │ │ ├── 2014-08-25-vishnugopal-portrait.md │ │ ├── 2014-08-26-princess-e-portrait.md │ │ ├── 2014-08-27-blair-z-portrait.md │ │ ├── 2014-08-28-jessebc-portrait.md │ │ ├── 2014-08-29-veganwendy-2-portrait.md │ │ ├── 2014-09-02-harvydanger-portrait.md │ │ ├── 2014-09-06-psychoticmilkma-2-portrait.md │ │ ├── 2014-09-10-viktoriaderoy-portrait.md │ │ ├── 2014-09-22-beer-pretzel-portrait.md │ │ ├── 2014-09-22-lisset-m-portrait.md │ │ ├── 2014-10-03-clayton-b-portrait.md │ │ ├── 2014-10-03-nick-b-portrait.md │ │ ├── 2014-10-16-michel-t-portrait.md │ │ ├── 2014-10-16-rosebuds-pumpkins-portrait.md │ │ ├── 2014-10-24-remi-l-portrait.md │ │ ├── 2014-10-27-nick-b-2-portrait.md │ │ ├── 2014-10-30-renate-w-portrait.md │ │ ├── 2014-11-07-abby-b-portrait.md │ │ ├── 2014-11-11-danya-w-portrait.md │ │ ├── 2014-12-04-killing-joke-portrait.md │ │ ├── 2014-12-10-vanessa-s-portrait.md │ │ ├── 2015-01-03-dark-knight-rises-portrait.md │ │ ├── 2015-01-03-vanessa-j-portrait.md │ │ ├── 2015-01-07-mi-mo-portrait.md │ │ ├── 2015-01-14-lindsey-m-portrait.md │ │ ├── 2015-01-20-rachel-b-portrait.md │ │ ├── 2015-01-26-eliza-t-portrait.md │ │ ├── 2015-02-02-asja-k-portrait.md │ │ ├── 2015-02-09-kalani-o-portrait.md │ │ ├── 2015-02-16-kapi-m-portrait.md │ │ ├── 2015-02-23-emily-d-portrait.md │ │ ├── 2015-02-24-rosebuds-blur-portrait.md │ │ ├── 2015-03-02-mr-spock-portrait.md │ │ ├── 2015-03-10-rafi-z-portrait.md │ │ ├── 2015-03-12-ally-cat-portrait.md │ │ ├── 2015-03-21-shannon-v-portrait.md │ │ ├── 2015-04-13-hannah-l-portrait.md │ │ ├── 2015-05-18-luke-skywalker-cave-portrait.md │ │ ├── 2015-05-18-sus-pek-portrait.md │ │ ├── 2015-05-22-becca-pj-portrait.md │ │ ├── 2015-08-24-myriam-j-portrait.md │ │ ├── 2015-08-24-neon-l-portrait.md │ │ ├── 2015-08-25-katelyn-m-portrait.md │ │ └── 2015-09-17-brooke-t-portrait.md │ ├── procreate │ │ ├── 2013-09-03-wendy-rose-portrait.md │ │ ├── 2015-08-24-mr-allan-portrait.md │ │ ├── 2015-09-07-jenell-d-portrait.md │ │ ├── 2015-09-14-jordan-s-portrait.md │ │ ├── 2015-10-28-jj-plix-portrait.md │ │ ├── 2015-11-16-madison-s-portrait.md │ │ ├── 2015-11-27-t-steinheil-portrait.md │ │ ├── 2015-12-07-molly-m-portrait.md │ │ ├── 2015-12-27-skylar-s-portrait.md │ │ ├── 2016-01-03-david-g-portrait.md │ │ ├── 2016-01-25-rakso-s-portrait.md │ │ ├── 2016-02-18-jenny-x-portrait.md │ │ ├── 2016-03-01-morgan-f-portrait.md │ │ ├── 2016-04-15-april-c-portrait.md │ │ ├── 2016-04-26-emil-i-portrait.md │ │ ├── 2016-05-18-jonathan-h-portrait.md │ │ ├── 2016-05-18-maria-g-portrait.md │ │ ├── 2016-07-22-mahalia-h-portrait.md │ │ ├── 2017-08-31-lunar-ashes-portrait.md │ │ ├── 2018-03-22-marion-k-portrait.md │ │ ├── 2018-04-03-foggy-365-portrait.md │ │ ├── 2018-04-03-maya-z-portrait.md │ │ ├── 2018-04-14-tatha-s-portrait.md │ │ ├── 2018-04-30-ale-b-portrait.md │ │ └── 2018-06-04-marie-m-portrait.md │ ├── tiny-paintings │ │ ├── 2015-10-16-bith-painting.md │ │ ├── 2015-10-16-gamorrean-guard-painting.md │ │ ├── 2015-10-16-grand-moff-tarkin-painting.md │ │ ├── 2015-10-16-greedo-painting.md │ │ ├── 2015-10-16-michael-rose-painting.md │ │ ├── 2015-10-16-myah-graham-painting.md │ │ ├── 2015-10-16-ponda-baba-painting.md │ │ ├── 2015-10-16-stormtrooper-painting.md │ │ └── 2016-06-10-adam-vitry-painting.md │ └── work │ │ ├── 2013-06-26-so-simple-jekyll-theme.md │ │ ├── 2013-08-26-hpstr-jekyll-theme.md │ │ ├── 2014-09-02-skinny-bones-jekyll.md │ │ ├── 2016-04-15-minimal-mistakes-jekyll-theme.md │ │ └── 2017-03-30-basically-basic-jekyll-theme.md ├── _redirects ├── _work │ ├── eko-wave.md │ ├── jekyll-themes.md │ ├── paperfaces.md │ ├── procreate-paintings.md │ ├── relic-scout.md │ └── tiny-paintings.md ├── admin │ ├── config.yml │ └── index.html ├── articles.xml ├── assets │ ├── icons │ │ ├── amazon.svg │ │ ├── facebook.svg │ │ ├── github.svg │ │ ├── home.svg │ │ ├── instagram.svg │ │ ├── loading.svg │ │ ├── paypal.svg │ │ ├── reply.svg │ │ ├── rss.svg │ │ └── twitter.svg │ ├── javascripts │ │ ├── main.js │ │ ├── plugins │ │ │ ├── bigfoot.js │ │ │ ├── lazysizes.min.js │ │ │ ├── lity.js │ │ │ ├── ls.bgset.js │ │ │ ├── ls.object-fit.js │ │ │ ├── ls.parent-fit.js │ │ │ ├── ls.respimg.js │ │ │ ├── smooth-scroll.js │ │ │ └── svg4everybody.js │ │ └── vendor │ │ │ └── jquery │ │ │ └── jquery.js │ └── stylesheets │ │ ├── _animations.scss │ │ ├── _archive.scss │ │ ├── _base.scss │ │ ├── _buttons.scss │ │ ├── _comments.scss │ │ ├── _contact-lists.scss │ │ ├── _entries.scss │ │ ├── _forms.scss │ │ ├── _gallery.scss │ │ ├── _google-search.scss │ │ ├── _home.scss │ │ ├── _icons.scss │ │ ├── _menu.scss │ │ ├── _mixins.scss │ │ ├── _navicons.scss │ │ ├── _navigation.scss │ │ ├── _notices.scss │ │ ├── _page.scss │ │ ├── _pagination.scss │ │ ├── _paper-color-swatches.scss │ │ ├── _post.scss │ │ ├── _print.scss │ │ ├── _reset.scss │ │ ├── _responsive-embed.scss │ │ ├── _review-box.scss │ │ ├── _search.scss │ │ ├── _sections.scss │ │ ├── _site.scss │ │ ├── _style-guide.scss │ │ ├── _syntax-highlighting.scss │ │ ├── _tables.scss │ │ ├── _thumbnail-grids.scss │ │ ├── _utilities.scss │ │ ├── _variables.scss │ │ ├── main.scss │ │ ├── mixins │ │ ├── _clearfix.scss │ │ ├── _color.scss │ │ ├── _float.scss │ │ ├── _image.scss │ │ ├── _lists.scss │ │ ├── _screen-reader.scss │ │ ├── _scrim-gradient.scss │ │ ├── _text-truncate.scss │ │ └── _vertical-rhythm.scss │ │ ├── utilities │ │ ├── _accessibility.scss │ │ ├── _align.scss │ │ ├── _browser-frame.scss │ │ ├── _clearfix.scss │ │ ├── _float.scss │ │ ├── _lazyload.scss │ │ ├── _responsive-video-embed.scss │ │ ├── _text.scss │ │ └── _visibility.scss │ │ └── vendor │ │ ├── bigfoot │ │ ├── bigfoot-bottom.scss │ │ ├── bigfoot-default.scss │ │ └── bigfoot-number.scss │ │ └── instantsearch │ │ ├── _base.scss │ │ ├── debug.css │ │ ├── default │ │ ├── _breadcrumb.scss │ │ ├── _clear-all.scss │ │ ├── _current-refined-values.scss │ │ ├── _geo-search.scss │ │ ├── _header-footer.scss │ │ ├── _hierarchical-menu.scss │ │ ├── _hits.scss │ │ ├── _menu.scss │ │ ├── _pagination.scss │ │ ├── _price-ranges.scss │ │ ├── _range-input.scss │ │ ├── _range-slider.scss │ │ ├── _refinement-list.scss │ │ ├── _refinement-searchbox.scss │ │ ├── _search-box.scss │ │ ├── _sort-by-selector.scss │ │ ├── _star-rating.scss │ │ ├── _stats.scss │ │ ├── _toggle.scss │ │ └── _variables.scss │ │ ├── instantsearch-theme-algolia.scss │ │ ├── instantsearch.scss │ │ └── theme │ │ ├── _base.scss │ │ ├── _breadcrumb.scss │ │ ├── _clear-all.scss │ │ ├── _current-refined-values.scss │ │ ├── _geo-search.scss │ │ ├── _hierarchical-menu.scss │ │ ├── _hits-per-page.scss │ │ ├── _menu-select.scss │ │ ├── _menu.scss │ │ ├── _numeric-selector.scss │ │ ├── _pagination.scss │ │ ├── _price-ranges.scss │ │ ├── _range-input.scss │ │ ├── _range-slider.scss │ │ ├── _refinement-list.scss │ │ ├── _search-box.scss │ │ ├── _sort-by-selector.scss │ │ ├── _star-rating.scss │ │ ├── _stats.scss │ │ ├── _toggle.scss │ │ └── _variables.scss ├── atom.xml ├── browserconfig.xml ├── feed.json ├── humans.txt ├── index.md ├── mastering-paper.xml ├── notes.xml ├── paperfaces.xml ├── procreate-paintings.xml ├── robots.txt └── site.webmanifest ├── staticman.yml └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- 1 | # editorconfig.org 2 | root = true 3 | 4 | [*] 5 | indent_style = space 6 | indent_size = 2 7 | end_of_line = lf 8 | charset = utf-8 9 | trim_trailing_whitespace = true 10 | insert_final_newline = true 11 | 12 | [*.md] 13 | trim_trailing_whitespace = false 14 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | src/assets/javascripts/plugins/* linguist-vendored 2 | src/assets/javascripts/vendor/* linguist-vendored 3 | src/assets/stylesheets/vendor/* linguist-vendored 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | _asset_bundler_cache 2 | _site 3 | .asset-cache 4 | .bundle 5 | .DS_Store 6 | .jekyll-cache 7 | .jekyll-metadata 8 | .sass-cache 9 | .tmp 10 | *.sublime-project 11 | *.sublime-workspace 12 | codekit-config.json 13 | dist 14 | node_modules 15 | npm-debug.log* 16 | rsync-credentials.json 17 | tmp 18 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "images"] 2 | path = src/assets/images 3 | url = https://github.com/mmistakes/made-mistakes-images.git 4 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "cSpell.enabledLanguageIds": [ 3 | "c", 4 | "cpp", 5 | "csharp", 6 | "go", 7 | "handlebars", 8 | "javascriptreact", 9 | "json", 10 | "latex", 11 | "markdown", 12 | "php", 13 | "plaintext", 14 | "python", 15 | "restructuredtext", 16 | "text", 17 | "typescript", 18 | "typescriptreact", 19 | "yml" 20 | ], 21 | "search.usePCRE2": true 22 | } -------------------------------------------------------------------------------- /_config.dev.yml: -------------------------------------------------------------------------------- 1 | # Site wide configuration 2 | 3 | url: "" 4 | 5 | profile: true 6 | future: true 7 | show_drafts: true 8 | 9 | google_site_verification: "" 10 | bing_site_verification: "" 11 | alexa_site_verification: "" 12 | yandex_site_verification: "" 13 | 14 | google_ad-client: "" 15 | google_ad-slot: "" 16 | google_analytics: "" 17 | -------------------------------------------------------------------------------- /gulp/tasks/fonts.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | var gulp = require("gulp"); 3 | var size = require("gulp-size"); 4 | 5 | // include paths file 6 | var paths = require("../paths"); 7 | 8 | // 'gulp fonts' -- copies fonts to temporary assets directory 9 | gulp.task("fonts", () => { 10 | return gulp 11 | .src(paths.fontFiles + "/**/*") 12 | .pipe(gulp.dest(paths.fontFilesTemp)) 13 | .pipe(size({ title: "fonts" })); 14 | }); 15 | -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- 1 | [build] 2 | command = "gulp build --prod" 3 | publish = "dist" 4 | 5 | [[headers]] 6 | for = "/*" 7 | [headers.values] 8 | Strict-Transport-Security = "max-age=31536000; includeSubDomains; preload" 9 | X-Frame-Options = "DENY" 10 | X-XSS-Protection = "1; mode=block" 11 | Referrer-Policy = "no-referrer" 12 | X-Content-Type-Options = "nosniff" 13 | -------------------------------------------------------------------------------- /src/_colors/colors-neutral.html: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Neutral Colors" 3 | type: colors 4 | scss: src/assets/stylesheets/_variables.scss 5 | usage: "Base set used to mix tints and tones." 6 | --- 7 | 8 |
9 | white 10 |
11 | 12 |
13 | black 14 |
15 | -------------------------------------------------------------------------------- /src/_components/buttons-block.html: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Block Level Buttons" 3 | type: buttons 4 | scss: 5 | usage: "Buttons that span the width of their parent container." 6 | --- 7 | 8 | Block Level Button 9 | 10 | -------------------------------------------------------------------------------- /src/_components/buttons-danger.html: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Danger Button" 3 | type: buttons 4 | scss: 5 | usage: 6 | --- 7 | 8 | Danger 9 | -------------------------------------------------------------------------------- /src/_components/buttons-default.html: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Default Button" 3 | type: buttons 4 | scss: 5 | usage: 6 | --- 7 | 8 | Default 9 | -------------------------------------------------------------------------------- /src/_components/buttons-disabled.html: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Disabled Button" 3 | type: buttons 4 | scss: 5 | usage: 6 | --- 7 | 8 | Disabled 9 | -------------------------------------------------------------------------------- /src/_components/buttons-info.html: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Information Button" 3 | type: buttons 4 | scss: 5 | usage: 6 | --- 7 | 8 | Information 9 | -------------------------------------------------------------------------------- /src/_components/buttons-inverse.html: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Inverse Button" 3 | type: buttons 4 | scss: 5 | usage: "On dark backgrounds." 6 | --- 7 | 8 | Inverse 9 | -------------------------------------------------------------------------------- /src/_components/buttons-success.html: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Success Button" 3 | type: buttons 4 | scss: 5 | usage: 6 | --- 7 | 8 | Success 9 | -------------------------------------------------------------------------------- /src/_components/buttons-warning.html: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Warning Button" 3 | type: buttons 4 | scss: 5 | usage: 6 | --- 7 | 8 | Warning 9 | -------------------------------------------------------------------------------- /src/_components/media-post-figures-2-col.html: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Main Content Figures (2 column)" 3 | type: media 4 | scss: 5 | usage: "For displaying two related images side by side." 6 | --- 7 | 8 | 13 | -------------------------------------------------------------------------------- /src/_components/media-post-figures.html: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Main Content Figures" 3 | type: media 4 | scss: 5 | usage: "Default figure display for images or videos." 6 | --- 7 | 8 |
9 | 10 |
One image.
11 |
12 | -------------------------------------------------------------------------------- /src/_components/notices-post-danger.html: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Main Content Danger Notice" 3 | type: notices 4 | scss: 5 | usage: "Emphasize post text." 6 | --- 7 | 8 |
9 |

Danger Notice Headline

10 |

Donec sed tellus eget sapien fringilla nonummy. Mauris a ante. Suspendisse quam sem, consequat at.

11 |
12 | -------------------------------------------------------------------------------- /src/_components/notices-post-default.html: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Main Content Default Notice" 3 | type: notices 4 | scss: 5 | usage: "Emphasize post text." 6 | --- 7 | 8 |
9 |

Default Notice Headline

10 |

Donec sed tellus eget sapien fringilla nonummy. Mauris a ante. Suspendisse quam sem, consequat at.

11 |
12 | -------------------------------------------------------------------------------- /src/_components/notices-post-info.html: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Main Content Info Notice" 3 | type: notices 4 | scss: 5 | usage: "Emphasize post text. Used predominately for ProTips." 6 | --- 7 | 8 |
9 |

Info Notice Headline

10 |

Donec sed tellus eget sapien fringilla nonummy. Mauris a ante. Suspendisse quam sem, consequat at.

11 |
12 | -------------------------------------------------------------------------------- /src/_components/notices-post-success.html: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Main Content Success Notice" 3 | type: notices 4 | scss: 5 | usage: "Emphasize post text." 6 | --- 7 | 8 |
9 |

Success Notice Headline

10 |

Donec sed tellus eget sapien fringilla nonummy. Mauris a ante. Suspendisse quam sem, consequat at.

11 |
12 | -------------------------------------------------------------------------------- /src/_components/notices-post-warning.html: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Main Content Warning Notice" 3 | type: notices 4 | scss: 5 | usage: "Emphasize post text. Used predominately for amendments or updates to a post." 6 | --- 7 | 8 |
9 |

Warning Notice Headline

10 |

Donec sed tellus eget sapien fringilla nonummy. Mauris a ante. Suspendisse quam sem, consequat at.

11 |
12 | -------------------------------------------------------------------------------- /src/_components/typography-post-blockquotes.html: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Blockquotes" 3 | type: typography 4 | scss: 5 | usage: "Quoted text." 6 | --- 7 | 8 |
9 |

Lorem ipsum dolor sit amet, test link adipiscing elit. Nullam dignissim convallis est. Quisque aliquam.

10 |

First Lastname, The Greatest Article

11 |
12 | -------------------------------------------------------------------------------- /src/_components/typography-post-headings.html: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Main Content Headlines" 3 | type: typography 4 | scss: 5 | usage: "Headline hierarchy found in post content" 6 | --- 7 | 8 |

H1 Headline

9 |

H2 Headline

10 |

H2 Headline with an anchor link

11 |

H3 Headline

12 |

H4 Headline

13 |
H5 Headline
14 |
H6 Headline
15 | -------------------------------------------------------------------------------- /src/_components/typography-post-lists-ordered.html: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Main Content Ordered Lists" 3 | type: typography 4 | scss: 5 | usage: "Ordered lists found in post content" 6 | --- 7 | 8 |
    9 |
  1. List item one
  2. 10 |
      11 |
    1. Sub list item one
    2. 12 |
    3. Sub list item two
    4. 13 |
    5. Sub list item three
    6. 14 |
    15 |
  3. List item two
  4. 16 |
17 | -------------------------------------------------------------------------------- /src/_components/typography-post-lists-unordered.html: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Main Content Unordered Lists" 3 | type: typography 4 | scss: 5 | usage: "Unordered lists found in post content" 6 | --- 7 | 8 | 17 | -------------------------------------------------------------------------------- /src/_data/comments/365-days-of-drawing/comment-1377880142000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1023430741 2 | date: 2013-08-30T16:29:02Z 3 | updated: 2013-08-30T16:29:02Z 4 | _parent: /articles/365-days-of-drawing/ 5 | name: Naufal Mir 6 | url: http://abijango.com/ 7 | message: '"I’m working on theme, really I am." them :)' 8 | avatar: https://disqus.com/api/users/avatars/abijango.jpg 9 | -------------------------------------------------------------------------------- /src/_data/comments/365-days-of-drawing/comment-1377895505000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '1' 2 | id: comment-1023735704 3 | date: 2013-08-30T20:45:05Z 4 | updated: 2013-08-30T20:45:05Z 5 | _parent: /articles/365-days-of-drawing/ 6 | name: Michael Rose 7 | url: https://mademistakes.com/ 8 | message: "Good catch. Thanks!" 9 | email: 1ce71bc10b86565464b612093d89707e 10 | -------------------------------------------------------------------------------- /src/_data/comments/aarongreenlee-portrait/comment-1471630435206.yml: -------------------------------------------------------------------------------- 1 | _parent: /paperfaces/aarongreenlee-portrait/ 2 | message: Thanks for making me look cool 3 | name: Aaron Greenlee 4 | email: 81b3151b91c9dfc3d0074cba1a0357c6 5 | url: '' 6 | hidden: '' 7 | date: '2016-08-19T18:13:54.484Z' 8 | -------------------------------------------------------------------------------- /src/_data/comments/autumn-refresh/comment-1544606547011.yml: -------------------------------------------------------------------------------- 1 | _id: 70bc2670-fdef-11e8-80cd-a552f5c91eeb 2 | _parent: /articles/autumn-refresh/ 3 | name: Aftar Fadilah 4 | email: ff226a69e8b16dd62afe6aaaad4cd64f 5 | url: 'https://aftarfadilah.com' 6 | message: >- 7 | It's always fun to learn from your great written stories than a boring step to 8 | step tutorial books. Thanks for the experience share, surely will help all the 9 | readers 10 | replying_to: '' 11 | date: '2018-12-12T09:22:27.010Z' 12 | -------------------------------------------------------------------------------- /src/_data/comments/basics/comment-1392005320000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1237690364 2 | date: 2014-02-10T04:08:40Z 3 | updated: 2014-02-10T04:08:40Z 4 | _parent: /mastering-paper/basics/ 5 | name: Tamara 6 | url: '' 7 | message: "This? This is freakin' awesome! Thanks so much for sharing your mad skills 8 | and expertise with us!" 9 | -------------------------------------------------------------------------------- /src/_data/comments/basics/comment-1392183730000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1240723860 2 | date: 2014-02-12T05:42:10Z 3 | updated: 2014-02-12T05:42:10Z 4 | _parent: /mastering-paper/basics/ 5 | name: Will 6 | url: '' 7 | message: "Nicely done! Looking forward to more how-to articles!" 8 | -------------------------------------------------------------------------------- /src/_data/comments/basics/comment-1392190613000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1240785068 2 | date: 2014-02-12T07:36:53Z 3 | updated: 2014-02-12T07:36:53Z 4 | _parent: /mastering-paper/basics/ 5 | name: rackom 6 | url: '' 7 | message: "Great tutorial! :) Keep going." 8 | avatar: https://disqus.com/api/users/avatars/rackom.jpg 9 | -------------------------------------------------------------------------------- /src/_data/comments/basics/comment-1395203917000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1290889687 2 | date: 2014-03-19T04:38:37Z 3 | updated: 2014-03-19T04:38:37Z 4 | _parent: /mastering-paper/basics/ 5 | name: James Daly 6 | url: http://jamesdaly.life 7 | message: "You are amazing, thank you so much for making these articles!" 8 | avatar: https://disqus.com/api/users/avatars/jamesdaly90.jpg 9 | -------------------------------------------------------------------------------- /src/_data/comments/basics/comment-1396815357000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1321534482 2 | date: 2014-04-06T20:15:57Z 3 | updated: 2014-04-06T20:15:57Z 4 | _parent: /mastering-paper/basics/ 5 | name: Ben Hoffer 6 | url: '' 7 | message: "You good sir are the man...thanks for sharing your brilliance :)" 8 | -------------------------------------------------------------------------------- /src/_data/comments/basics/comment-1396868974000.yml: -------------------------------------------------------------------------------- 1 | --- 2 | id: comment-1322217365 3 | date: 2014-04-07T11:09:34Z 4 | updated: 2014-04-07T11:09:34Z 5 | _parent: /mastering-paper/basics/ 6 | name: Hong 7 | url: '' 8 | message: "Very nice written articles, looking forward to the new ones!" 9 | -------------------------------------------------------------------------------- /src/_data/comments/basics/comment-1405157030000.yml: -------------------------------------------------------------------------------- 1 | --- 2 | id: comment-1481694368 3 | date: 2014-07-12T09:23:50Z 4 | updated: 2014-07-12T09:23:50Z 5 | _parent: /mastering-paper/basics/ 6 | name: AbbyObi 7 | url: '' 8 | message: "Awesome! Thanks for the great tutorial :)" 9 | -------------------------------------------------------------------------------- /src/_data/comments/basics/comment-1410264861000.yml: -------------------------------------------------------------------------------- 1 | --- 2 | id: comment-1580767478 3 | date: 2014-09-09T12:14:21Z 4 | updated: 2014-09-09T12:14:21Z 5 | _parent: /mastering-paper/basics/ 6 | name: idol chan 7 | url: '' 8 | message: "the level of awesomeness is too damn high" 9 | avatar: https://disqus.com/api/users/avatars/idol_chan.jpg 10 | -------------------------------------------------------------------------------- /src/_data/comments/basics/comment-1418196361000.yml: -------------------------------------------------------------------------------- 1 | --- 2 | id: comment-1734595213 3 | date: 2014-12-10T07:26:01Z 4 | updated: 2014-12-10T07:26:01Z 5 | _parent: /mastering-paper/basics/ 6 | name: lesley 7 | url: '' 8 | message: "Fantastic help for getting started with 53. Thanks so much. Your work 9 | is amazing" 10 | -------------------------------------------------------------------------------- /src/_data/comments/basics/comment-1421525588000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1798722959 2 | date: 2015-01-17T20:13:08Z 3 | updated: 2015-01-17T20:13:08Z 4 | _parent: /mastering-paper/basics/ 5 | name: "Al." 6 | url: '' 7 | message: "Need the most basic instruction of all!!! How do I start a new drawing, 8 | by bringing up a blank page, which allows me to *swipe* up to bring in the tool 9 | *bar*" 10 | -------------------------------------------------------------------------------- /src/_data/comments/basics/comment-1427013256000.yml: -------------------------------------------------------------------------------- 1 | --- 2 | id: comment-1921409778 3 | date: 2015-03-22T08:34:16Z 4 | updated: 2015-03-22T08:34:16Z 5 | _parent: /mastering-paper/basics/ 6 | name: KA 7 | url: '' 8 | message: "Thank you for this guide!! There is still one thing I do not understand: 9 | I have watched your video on the watercolor tool and tried to colour slowly and 10 | evenly in one go but the final outcome still looks blotchy. I'm using my finger 11 | for this, could that be it?" 12 | -------------------------------------------------------------------------------- /src/_data/comments/basics/comment-1441808621000.yml: -------------------------------------------------------------------------------- 1 | --- 2 | id: comment-2244369717 3 | date: 2015-09-09T14:23:41Z 4 | updated: 2015-09-09T14:23:41Z 5 | _parent: /mastering-paper/basics/ 6 | name: Laura Tucker 7 | url: http://www.lauratucker.com/ 8 | message: "I just found your site and articles about Paper and want to thank you! 9 | \r\n\r\nThey are beautiful, very well written and have inspired me to get more out of 10 | my Pencil and Paper." 11 | avatar: https://disqus.com/api/users/avatars/ltucker7.jpg 12 | -------------------------------------------------------------------------------- /src/_data/comments/basics/comment-1441808820000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '13' 2 | id: comment-2244375227 3 | date: 2015-09-09T14:27:00Z 4 | updated: 2015-09-09T14:27:00Z 5 | _parent: /mastering-paper/basics/ 6 | name: Michael Rose 7 | url: https://mademistakes.com/ 8 | message: "You're welcome Laura! Glad you've found them useful." 9 | email: 1ce71bc10b86565464b612093d89707e 10 | -------------------------------------------------------------------------------- /src/_data/comments/basics/comment-1495457432610.yml: -------------------------------------------------------------------------------- 1 | _id: 3d951080-3eed-11e7-8931-77199934308c 2 | _parent: /mastering-paper/basics/ 3 | message: >- 4 | Not really. I work mostly digital these days so I'm probably the wrong person 5 | to ask for advice on traditional materials. 6 | name: Michael Rose 7 | email: 1ce71bc10b86565464b612093d89707e 8 | url: 'https://mademistakes.com' 9 | replying_to: '15' 10 | hidden: '' 11 | date: '2017-05-22T12:50:32.560Z' 12 | -------------------------------------------------------------------------------- /src/_data/comments/color-picker/comment-1421964202000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1811850160 2 | date: 2015-01-22T22:03:22Z 3 | updated: 2015-01-22T22:03:22Z 4 | _parent: /mastering-paper/color-picker/ 5 | name: claudia miranda 6 | url: 7 | message: "Super helpful! Thank you for sharing this!" 8 | avatar: https://disqus.com/api/users/avatars/disqus_vxKrZvqBd5.jpg 9 | -------------------------------------------------------------------------------- /src/_data/comments/color-picker/comment-1474598387454.yml: -------------------------------------------------------------------------------- 1 | _parent: /mastering-paper/color-picker/ 2 | message: >- 3 | this is great, I am new to paper, can't figure out how to download/use your 4 | portrait palette. wondering also is there a way to import brushes/templated 5 | from outside of paper? 6 | name: teri pastorino 7 | email: 5b06016231c78a394c725b4a9c74a5d5 8 | url: '' 9 | hidden: '' 10 | date: '2016-09-23T02:39:46.768Z' 11 | -------------------------------------------------------------------------------- /src/_data/comments/color-picker/comment-1484235423197.yml: -------------------------------------------------------------------------------- 1 | _id: f6c61440-d8dc-11e6-b55c-c714fe44c9f5 2 | _parent: /mastering-paper/color-picker/ 3 | message: >- 4 | Thank you very much. I learned something new: to pick up colors from pictures. 5 | Great! 6 | name: Marit van der Sleen 7 | email: ec3b557478297139690b3cde215a4988 8 | hidden: '' 9 | date: '2017-01-12T15:37:03.192Z' 10 | -------------------------------------------------------------------------------- /src/_data/comments/color-picker/comment-1522763618367.yml: -------------------------------------------------------------------------------- 1 | _id: 68724dc0-3746-11e8-ad5e-83fb05789426 2 | _parent: /mastering-paper/color-picker/ 3 | message: >- 4 | Hi! Can you explain how to download your palette? I click on it and it just 5 | takes me to my account page in Paper to edit my settings, etc. I’m on my 6 | iPhone, if that helps. Thanks 7 | name: Shauna 8 | email: 9646c52fbcf6cf71262431b99ee15139 9 | url: '' 10 | replying_to: '' 11 | date: '2018-04-03T13:53:38.358Z' 12 | -------------------------------------------------------------------------------- /src/_data/comments/color-picker/comment-1535761860911.yml: -------------------------------------------------------------------------------- 1 | _id: 4ce4fcc0-ad7e-11e8-b9bb-c1fe95ccb7b6 2 | _parent: /mastering-paper/color-picker/ 3 | name: Mike 4 | email: ab5f9122963592d3732ff2785fbd066c 5 | url: '' 6 | message: >- 7 | I love Paper, but I can’t locate a “fill shape” function, such as the paint 8 | bucket in the old paint program on a PC. Do you know? 9 | replying_to: '' 10 | date: '2018-09-01T00:31:00.909Z' 11 | -------------------------------------------------------------------------------- /src/_data/comments/color-picker/comment-1535805470885.yml: -------------------------------------------------------------------------------- 1 | _id: d698a6f0-ade3-11e8-a777-e5f8bc969358 2 | _parent: /mastering-paper/color-picker/ 3 | name: Michael Rose 4 | email: 1ce71bc10b86565464b612093d89707e 5 | url: 'https://mademistakes.com' 6 | message: >- 7 | Paper has a [fill 8 | tool](https://support.fiftythree.com/hc/en-us/articles/203385492-Canvas-Drawing-Tools#fill-tool) 9 | if you're a Paper Pro (or legacy Paper) user. 10 | replying_to: '6' 11 | date: '2018-09-01T12:37:50.885Z' 12 | -------------------------------------------------------------------------------- /src/_data/comments/contour-drawing/comment-1390268003000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1209881226 2 | date: 2014-01-21T01:33:23Z 3 | updated: 2014-01-21T01:33:23Z 4 | _parent: /mastering-paper/contour-drawing/ 5 | name: Guest 6 | url: 7 | message: "When you do these, do you draw the whole thing in a single line, or do 8 | you look from time to time and reposition? My \"understanding\" is that one is to 9 | draw the whole thing without looking? Thanks! Good stuff as always." 10 | -------------------------------------------------------------------------------- /src/_data/comments/contour-drawing/comment-1390307306000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '1' 2 | id: comment-1210328593 3 | date: 2014-01-21T12:28:26Z 4 | updated: 2014-01-21T12:28:26Z 5 | _parent: /mastering-paper/contour-drawing/ 6 | name: Guest 7 | url: 8 | message: "thank you kindly. about what i suspected but i like to know what real 9 | people do. :)" 10 | -------------------------------------------------------------------------------- /src/_data/comments/contour-drawing/comment-1390308947000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '1' 2 | id: comment-1210358554 3 | date: 2014-01-21T12:55:47Z 4 | updated: 2014-01-21T12:55:47Z 5 | _parent: /mastering-paper/contour-drawing/ 6 | name: Michael Rose 7 | url: https://mademistakes.com/ 8 | message: "I'm probably the worst person to compare against. I tend to do things 9 | in ways they weren't intended or completely backwards. Hah." 10 | email: 1ce71bc10b86565464b612093d89707e 11 | -------------------------------------------------------------------------------- /src/_data/comments/contour-drawing/comment-1390311361000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '1' 2 | id: comment-1210392916 3 | date: 2014-01-21T13:36:01Z 4 | updated: 2014-01-21T13:36:01Z 5 | _parent: /mastering-paper/contour-drawing/ 6 | name: Guest 7 | url: 8 | message: "well as someone with few if any clues, i can say that your tutorials 9 | and examples and answers help me improve." 10 | -------------------------------------------------------------------------------- /src/_data/comments/contour-drawing/comment-1394549542000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1280046163 2 | date: 2014-03-11T14:52:22Z 3 | updated: 2014-03-11T14:52:22Z 4 | _parent: /mastering-paper/contour-drawing/ 5 | name: Eric 6 | url: '' 7 | message: "My take on this (and I'm a Noob) is to have fun with the drawing. Choose 8 | a method you like or come up with your own. I find this fun to do during meetings 9 | as I draw faces of coworkers while not included in conversations. :)" 10 | -------------------------------------------------------------------------------- /src/_data/comments/contour-drawing/comment-1395769302000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1301989675 2 | date: 2014-03-25T17:41:42Z 3 | updated: 2014-03-25T17:41:42Z 4 | _parent: /mastering-paper/contour-drawing/ 5 | name: mismo 6 | url: '' 7 | message: "How do you drag the solid black color into the canvas for a solid black 8 | background?" 9 | -------------------------------------------------------------------------------- /src/_data/comments/contour-drawing/comment-1397642850000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1340214922 2 | date: 2014-04-16T10:07:30Z 3 | updated: 2014-04-16T10:07:30Z 4 | _parent: /mastering-paper/contour-drawing/ 5 | name: Carole Ann Faust 6 | url: '' 7 | message: | 8 | Hoping for an honest critique. 9 | 10 | ![Paper for iOS tree drawing](https://a.disquscdn.com/uploads/mediaembed/images/955/6709/original.jpg) 11 | avatar: https://disqus.com/api/users/avatars/caroleannfaust.jpg 12 | -------------------------------------------------------------------------------- /src/_data/comments/contour-drawing/comment-1397645442000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '4' 2 | id: comment-1340243868 3 | date: 2014-04-16T10:50:42Z 4 | updated: 2014-04-16T10:50:42Z 5 | _parent: /mastering-paper/contour-drawing/ 6 | name: Michael Rose 7 | url: https://mademistakes.com/ 8 | message: "Very nice! I love the traditional watercolor feel of both." 9 | email: 1ce71bc10b86565464b612093d89707e 10 | -------------------------------------------------------------------------------- /src/_data/comments/contour-drawing/comment-1397648727000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '4' 2 | id: comment-1340284777 3 | date: 2014-04-16T11:45:27Z 4 | updated: 2014-04-16T11:45:27Z 5 | _parent: /mastering-paper/contour-drawing/ 6 | name: Carole Ann Faust 7 | url: '' 8 | message: "Thank you! That means a lot coming from you! I go to your site every 9 | so often to see what I am forgetting to do. Love your work!" 10 | avatar: https://disqus.com/api/users/avatars/caroleannfaust.jpg 11 | -------------------------------------------------------------------------------- /src/_data/comments/drawing-clouds/comment-1378398921000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1031065145 2 | date: 2013-09-05T16:35:21Z 3 | updated: 2013-09-05T16:35:21Z 4 | _parent: /mastering-paper/drawing-clouds/ 5 | name: dada 6 | url: '' 7 | message: "thx for share" 8 | -------------------------------------------------------------------------------- /src/_data/comments/drawing-clouds/comment-1378503842000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1032719823 2 | date: 2013-09-06T21:44:02Z 3 | updated: 2013-09-06T21:44:02Z 4 | _parent: /mastering-paper/drawing-clouds/ 5 | name: Josh Medeski 6 | url: http://joshmedeski.com/ 7 | message: "I'm really enjoying this series, thanks so much!" 8 | avatar: https://disqus.com/api/users/avatars/joshmedeski.jpg 9 | -------------------------------------------------------------------------------- /src/_data/comments/drawing-clouds/comment-1378689620000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1034871042 2 | date: 2013-09-09T01:20:20Z 3 | updated: 2013-09-09T01:20:20Z 4 | _parent: /mastering-paper/drawing-clouds/ 5 | name: Guest 6 | url: 7 | message: "Love these Mastering Paper articles. Very helpful! Thanks!" 8 | -------------------------------------------------------------------------------- /src/_data/comments/drawing-clouds/comment-1379714880000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1053368997 2 | date: 2013-09-20T22:08:00Z 3 | updated: 2013-09-20T22:08:00Z 4 | _parent: /mastering-paper/drawing-clouds/ 5 | name: Don 6 | url: '' 7 | message: "Thank you for these great tutorials.\r\nI appreciate he very helpful 8 | attention to detail and really well written text\r\nEloquent exposition... beautiful 9 | art.\r\nLooking forward to more. Thanks again." 10 | -------------------------------------------------------------------------------- /src/_data/comments/drawing-clouds/comment-1380204661000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1059807038 2 | date: 2013-09-26T14:11:01Z 3 | updated: 2013-09-26T14:11:01Z 4 | _parent: /mastering-paper/drawing-clouds/ 5 | name: Shelina Valmond 6 | url: http://awriterinspired.wordpress.com/ 7 | message: "Love the series and can't wait to see animation. I am new to drawing 8 | but not to paper if that makes sense. Excited to see how everything fits together." 9 | avatar: https://disqus.com/api/users/avatars/AWriterInspired.jpg 10 | -------------------------------------------------------------------------------- /src/_data/comments/drawing-clouds/comment-1393483754000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1262589738 2 | date: 2014-02-27T06:49:14Z 3 | updated: 2014-02-27T06:49:14Z 4 | _parent: /mastering-paper/drawing-clouds/ 5 | name: Angelic Peraga 6 | url: '' 7 | message: "Thanks for a big help. I love what you do.. Please continue to do more 8 | tutorials like this. I'm a frustrated artist. I can't wait for more tutorials. :)" 9 | avatar: https://disqus.com/api/users/avatars/angelicperaga.jpg 10 | -------------------------------------------------------------------------------- /src/_data/comments/drawing-clouds/comment-1393506505000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '7' 2 | id: comment-1262843270 3 | date: 2014-02-27T13:08:25Z 4 | updated: 2014-02-27T13:08:25Z 5 | _parent: /mastering-paper/drawing-clouds/ 6 | name: Michael Rose 7 | url: https://mademistakes.com/ 8 | message: "Thank you so much. I have a few I'm working on now so hopefully the wait 9 | isn't too long.\r\n\r\nAnything in particular you'd like to see a tutorial of?" 10 | email: 1ce71bc10b86565464b612093d89707e 11 | -------------------------------------------------------------------------------- /src/_data/comments/drawing-clouds/comment-1393972879000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1270574440 2 | date: 2014-03-04T22:41:19Z 3 | updated: 2014-03-04T22:41:19Z 4 | _parent: /mastering-paper/drawing-clouds/ 5 | name: Rob 6 | url: '' 7 | message: "Love the website! Keep up the good work." 8 | -------------------------------------------------------------------------------- /src/_data/comments/drawing-clouds/comment-1396486944000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1316122361 2 | date: 2014-04-03T01:02:24Z 3 | updated: 2014-04-03T01:02:24Z 4 | _parent: /mastering-paper/drawing-clouds/ 5 | name: Nan 6 | url: '' 7 | message: "Michael, help. Brand new to this app. How do you flip to a new page after 8 | you've finished a painting without backing out of the app and launching it again?\r\n\r\nThanks for your response!" 9 | -------------------------------------------------------------------------------- /src/_data/comments/drawing-clouds/comment-1400770265000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1399449921 2 | date: 2014-05-22T14:51:05Z 3 | updated: 2014-05-22T14:51:05Z 4 | _parent: /mastering-paper/drawing-clouds/ 5 | name: gerard 6 | url: '' 7 | message: "Hi, what strokes did you do to make the clouds? Thanks for the tutorial 8 | by the way. Looking forward to your next tutorial." 9 | -------------------------------------------------------------------------------- /src/_data/comments/drawing-faces/comment-1398153549000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1349941727 2 | date: 2014-04-22T07:59:09Z 3 | updated: 2014-04-22T07:59:09Z 4 | _parent: /mastering-paper/drawing-faces/ 5 | name: A 6 | url: '' 7 | message: "Thank you so much for writing this Michael! This is awesome." 8 | -------------------------------------------------------------------------------- /src/_data/comments/drawing-faces/comment-1398158232000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1349985056 2 | date: 2014-04-22T09:17:12Z 3 | updated: 2014-04-22T09:17:12Z 4 | _parent: /mastering-paper/drawing-faces/ 5 | name: Leah Hale 6 | url: '' 7 | message: "Thank you so much for taking the time to explain your amazing techniques. 8 | Look forward to the hair tutorial next." 9 | avatar: https://disqus.com/api/users/avatars/leahhale.jpg 10 | -------------------------------------------------------------------------------- /src/_data/comments/drawing-faces/comment-1398160932000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1350027094 2 | date: 2014-04-22T10:02:12Z 3 | updated: 2014-04-22T10:02:12Z 4 | _parent: /mastering-paper/drawing-faces/ 5 | name: Jon 6 | url: '' 7 | message: "Great guide! I'd love to see guides on realistic eyes, mouths and more, 8 | as you put it!" 9 | -------------------------------------------------------------------------------- /src/_data/comments/drawing-faces/comment-1398170698000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1350158578 2 | date: 2014-04-22T12:44:58Z 3 | updated: 2014-04-22T12:44:58Z 4 | _parent: /mastering-paper/drawing-faces/ 5 | name: HarryTheDirtyDog 6 | url: '' 7 | message: "Definitely eyes, mouth, face next." 8 | -------------------------------------------------------------------------------- /src/_data/comments/drawing-faces/comment-1398198848000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1350877097 2 | date: 2014-04-22T20:34:08Z 3 | updated: 2014-04-22T20:34:08Z 4 | _parent: /mastering-paper/drawing-faces/ 5 | name: Kane Gruber 6 | url: '' 7 | message: "Did you seriously draw John Gruber and Dan Benjamin?" 8 | avatar: https://disqus.com/api/users/avatars/kanegruber.jpg 9 | -------------------------------------------------------------------------------- /src/_data/comments/drawing-faces/comment-1398199078000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '5' 2 | id: comment-1350882421 3 | date: 2014-04-22T20:37:58Z 4 | updated: 2014-04-22T20:37:58Z 5 | _parent: /mastering-paper/drawing-faces/ 6 | name: Michael Rose 7 | url: https://mademistakes.com/ 8 | message: "Sure looks that way :wink:" 9 | email: 1ce71bc10b86565464b612093d89707e 10 | -------------------------------------------------------------------------------- /src/_data/comments/drawing-faces/comment-1398221444000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1351290300 2 | date: 2014-04-23T02:50:44Z 3 | updated: 2014-04-23T02:50:44Z 4 | _parent: /mastering-paper/drawing-faces/ 5 | name: Will 6 | url: '' 7 | message: "Excellent tutorial, as usual! So, are you preferring the Pogo over Pencil?" 8 | -------------------------------------------------------------------------------- /src/_data/comments/drawing-faces/comment-1398253969000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '7' 2 | id: comment-1351651200 3 | date: 2014-04-23T11:52:49Z 4 | updated: 2014-04-23T11:52:49Z 5 | _parent: /mastering-paper/drawing-faces/ 6 | name: Michael Rose 7 | url: https://mademistakes.com/ 8 | message: "Thanks for the feedback Miguel. Looking at the responses so far, pretty 9 | sure I'll be doing a tutorial on facial features next." 10 | email: 1ce71bc10b86565464b612093d89707e 11 | -------------------------------------------------------------------------------- /src/_data/comments/drawing-faces/comment-1398288006000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '7' 2 | id: comment-1352512743 3 | date: 2014-04-23T21:20:06Z 4 | updated: 2014-04-23T21:20:06Z 5 | _parent: /mastering-paper/drawing-faces/ 6 | name: Miguel Angel Rodriguez Frias 7 | url: '' 8 | message: "Delightful." 9 | avatar: https://disqus.com/api/users/avatars/miguelangelrodriguezfrias.jpg 10 | -------------------------------------------------------------------------------- /src/_data/comments/drawing-faces/comment-1398310673000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1352931636 2 | date: 2014-04-24T03:37:53Z 3 | updated: 2014-04-24T03:37:53Z 4 | _parent: /mastering-paper/drawing-faces/ 5 | name: Rosa O'Toole 6 | url: '' 7 | message: "Amazing and helpful!! I have been looking forward to this for a long 8 | time and it was worth the wait!! I would really like to see more on realistic portraits 9 | please." 10 | -------------------------------------------------------------------------------- /src/_data/comments/drawing-faces/comment-1398387151000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1354439598 2 | date: 2014-04-25T00:52:31Z 3 | updated: 2014-04-25T00:52:31Z 4 | _parent: /mastering-paper/drawing-faces/ 5 | name: Rick 6 | url: '' 7 | message: "How do you blend?" 8 | -------------------------------------------------------------------------------- /src/_data/comments/drawing-faces/comment-1398388580000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '10' 2 | id: comment-1354460353 3 | date: 2014-04-25T01:16:20Z 4 | updated: 2014-04-25T01:16:20Z 5 | _parent: /mastering-paper/drawing-faces/ 6 | name: Michael Rose 7 | url: https://mademistakes.com/ 8 | message: "To blend you need to use 53's Pencil stylus. When it's connected to Paper 9 | you can use your finger to smudge and blur." 10 | email: 1ce71bc10b86565464b612093d89707e 11 | -------------------------------------------------------------------------------- /src/_data/comments/drawing-faces/comment-1398620475000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1357903467 2 | date: 2014-04-27T17:41:15Z 3 | updated: 2014-04-27T17:41:15Z 4 | _parent: /mastering-paper/drawing-faces/ 5 | name: Abby 6 | url: '' 7 | message: "I love your shading technique! The way you use the water color brush 8 | is so beautiful. Thank you for sharing!" 9 | -------------------------------------------------------------------------------- /src/_data/comments/drawing-faces/comment-1398982327000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1364838875 2 | date: 2014-05-01T22:12:07Z 3 | updated: 2014-05-01T22:12:07Z 4 | _parent: /mastering-paper/drawing-faces/ 5 | name: PICMAR 6 | url: '' 7 | message: "I vote for more hair technique ..." 8 | avatar: https://disqus.com/api/users/avatars/ingmar_melchert.jpg 9 | -------------------------------------------------------------------------------- /src/_data/comments/drawing-faces/comment-1406616895000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1509401576 2 | date: 2014-07-29T06:54:55Z 3 | updated: 2014-07-29T06:54:55Z 4 | _parent: /mastering-paper/drawing-faces/ 5 | name: Rosa O'Toole 6 | url: '' 7 | message: "You are. My inspiration I hope to be as amazing as you! A realistic eyes, 8 | mouth and more would be Awesome ! Your tutorials are great! Wish I could save them 9 | somewhere like on noteshelf or even in paper:) wishful thinking!\r\n\r\nThank you" 10 | -------------------------------------------------------------------------------- /src/_data/comments/drawing-faces/comment-1406638106000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '13' 2 | id: comment-1509863337 3 | date: 2014-07-29T12:48:26Z 4 | updated: 2014-07-29T12:48:26Z 5 | _parent: /mastering-paper/drawing-faces/ 6 | name: Michael Rose 7 | url: https://mademistakes.com/ 8 | message: "Thanks Rosa." 9 | email: 1ce71bc10b86565464b612093d89707e 10 | -------------------------------------------------------------------------------- /src/_data/comments/drawing-faces/comment-1411510619000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1602769681 2 | date: 2014-09-23T22:16:59Z 3 | updated: 2014-09-23T22:16:59Z 4 | _parent: /mastering-paper/drawing-faces/ 5 | name: Robert 6 | url: '' 7 | message: "Michael I find most styluses have a fat tip making detail accuracy difficult. 8 | The new one for Paper, while nicely designed, is enormous. Can you recommend one 9 | that is finer?" 10 | -------------------------------------------------------------------------------- /src/_data/comments/drawing-faces/comment-1411948473000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1610125979 2 | date: 2014-09-28T23:54:33Z 3 | updated: 2014-09-28T23:54:33Z 4 | _parent: /mastering-paper/drawing-faces/ 5 | name: Nick Bova 6 | url: '' 7 | message: "Hey Michael just a quick question! How much did you get your pogo connect 8 | for and where can I get one ?" 9 | -------------------------------------------------------------------------------- /src/_data/comments/drawing-faces/comment-1411955472000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '16' 2 | id: comment-1610225968 3 | date: 2014-09-29T01:51:12Z 4 | updated: 2014-09-29T01:51:12Z 5 | _parent: /mastering-paper/drawing-faces/ 6 | name: Nick Bova 7 | url: '' 8 | message: "Ok well is it worth getting if I already have the pencil stylus made 9 | by 53 ? Because that is the only stylus I have at the moment" 10 | -------------------------------------------------------------------------------- /src/_data/comments/drawing-faces/comment-1411956100000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '16' 2 | id: comment-1610233463 3 | date: 2014-09-29T02:01:40Z 4 | updated: 2014-09-29T02:01:40Z 5 | _parent: /mastering-paper/drawing-faces/ 6 | name: Nick Bova 7 | url: '' 8 | message: "Ok that's what I figured! I love this guide btw but I just can't draw 9 | for my life. When you first started out drawing were you amazing or did you practice 10 | like crazy because I know you always remind us to practice" 11 | -------------------------------------------------------------------------------- /src/_data/comments/drawing-faces/comment-1432135554000.yml: -------------------------------------------------------------------------------- 1 | id: comment-2035812607 2 | date: 2015-05-20T15:25:54Z 3 | updated: 2015-05-20T15:25:54Z 4 | _parent: /mastering-paper/drawing-faces/ 5 | name: Guillermo de la Maza 6 | url: '' 7 | message: "Michael, thank you so much for sharing this excellent tutorial. I've 8 | always wanted to draw realistic faces but have failed miserably. This will certainly 9 | help point me in the right direction." 10 | -------------------------------------------------------------------------------- /src/_data/comments/drawing-hair/comment-1377103010000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1010711193 2 | date: 2013-08-21T16:36:50Z 3 | updated: 2013-08-21T16:36:50Z 4 | _parent: /mastering-paper/drawing-hair/ 5 | name: Luliio 6 | url: '' 7 | message: "Amazing \U0001F44D\U0001F44F" 8 | -------------------------------------------------------------------------------- /src/_data/comments/drawing-hair/comment-1392903055000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1253031401 2 | date: 2014-02-20T13:30:55Z 3 | updated: 2014-02-20T13:30:55Z 4 | _parent: /mastering-paper/drawing-hair/ 5 | name: LMM 6 | url: '' 7 | message: "Outstanding! Thank you so much :)" 8 | -------------------------------------------------------------------------------- /src/_data/comments/drawing-outer-space/comment-1420579819000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '1' 2 | id: comment-1775358249 3 | date: 2015-01-06T21:30:19Z 4 | updated: 2015-01-06T21:30:19Z 5 | _parent: /mastering-paper/drawing-outer-space/ 6 | name: Michael Rose 7 | url: https://mademistakes.com/ 8 | message: "Nice! Your fountain pen drawing came out great." 9 | email: 1ce71bc10b86565464b612093d89707e 10 | -------------------------------------------------------------------------------- /src/_data/comments/drawing-outer-space/comment-1420847567000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '2' 2 | id: comment-1783466477 3 | date: 2015-01-09T23:52:47Z 4 | updated: 2015-01-09T23:52:47Z 5 | _parent: /mastering-paper/drawing-outer-space/ 6 | name: Michael Rose 7 | url: https://mademistakes.com/ 8 | message: "Thanks John! The encouraging words makes the time I spend on these worth the effort!" 9 | -------------------------------------------------------------------------------- /src/_data/comments/drawing-textures/comment-1385426180000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1138909177 2 | date: 2013-11-26T00:36:20Z 3 | updated: 2013-11-26T00:36:20Z 4 | _parent: /mastering-paper/drawing-textures/ 5 | name: Mudz69 6 | url: '' 7 | message: "Superb tutorial once again, I shall have some fun trying these out over 8 | the next few days, thanx, the wood grain looks amazing!!" 9 | avatar: https://disqus.com/api/users/avatars/mudz69.jpg 10 | -------------------------------------------------------------------------------- /src/_data/comments/drawing-textures/comment-1385439861000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1139108658 2 | date: 2013-11-26T04:24:21Z 3 | updated: 2013-11-26T04:24:21Z 4 | _parent: /mastering-paper/drawing-textures/ 5 | name: Eric Talerico 6 | url: '' 7 | message: "Nice work! Very, very good tips." 8 | avatar: https://disqus.com/api/users/avatars/erictalerico.jpg 9 | -------------------------------------------------------------------------------- /src/_data/comments/drawing-textures/comment-1385442241000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1139135293 2 | date: 2013-11-26T05:04:01Z 3 | updated: 2013-11-26T05:04:01Z 4 | _parent: /mastering-paper/drawing-textures/ 5 | name: rohit 6 | url: '' 7 | message: "Fantastic work!" 8 | -------------------------------------------------------------------------------- /src/_data/comments/drawing-textures/comment-1400096924000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1385484509 2 | date: 2014-05-14T19:48:44Z 3 | updated: 2014-05-14T19:48:44Z 4 | _parent: /mastering-paper/drawing-textures/ 5 | name: gerard 6 | url: '' 7 | message: "As usual very good tutorial. Learned a lot from this. Keep it up sir." 8 | -------------------------------------------------------------------------------- /src/_data/comments/drawing-textures/comment-1424636878000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1869609606 2 | date: 2015-02-22T20:27:58Z 3 | updated: 2015-02-22T20:27:58Z 4 | _parent: /mastering-paper/drawing-textures/ 5 | name: Maureen 6 | url: '' 7 | message: "I'm just finding out about Paper and your wonderful tutorials. Quick 8 | question: can paper do layers?" 9 | -------------------------------------------------------------------------------- /src/_data/comments/drawing-textures/comment-1424638048000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '6' 2 | id: comment-1869638815 3 | date: 2015-02-22T20:47:28Z 4 | updated: 2015-02-22T20:47:28Z 5 | _parent: /mastering-paper/drawing-textures/ 6 | name: Michael Rose 7 | url: https://mademistakes.com/ 8 | message: "Sadly Paper only has the single layer, which can make it quite challenging 9 | to use in certain situations." 10 | email: 1ce71bc10b86565464b612093d89707e 11 | -------------------------------------------------------------------------------- /src/_data/comments/drawing-trees/comment-1377977017000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1024632962 2 | date: 2013-08-31T19:23:37Z 3 | updated: 2013-08-31T19:23:37Z 4 | _parent: /mastering-paper/drawing-trees/ 5 | name: Chris Harbinson 6 | url: '' 7 | message: "Thank you for the wonderful guidance you are providing. I'll be awaiting 8 | the next installment with the same eagerness I looked out for this one!" 9 | avatar: https://disqus.com/api/users/avatars/chrisharbinson.jpg 10 | -------------------------------------------------------------------------------- /src/_data/comments/drawing-trees/comment-1377979372000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1024666610 2 | date: 2013-08-31T20:02:52Z 3 | updated: 2013-08-31T20:02:52Z 4 | _parent: /mastering-paper/drawing-trees/ 5 | name: Kim 6 | url: '' 7 | message: "Excellent! Thank you for taking the time to put this guide together." 8 | -------------------------------------------------------------------------------- /src/_data/comments/drawing-trees/comment-1398671612000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1358698413 2 | date: 2014-04-28T07:53:32Z 3 | updated: 2014-04-28T07:53:32Z 4 | _parent: /mastering-paper/drawing-trees/ 5 | name: Baard Overgaard Hansen 6 | url: 7 | message: "Thanks for some great tutorials. Looking forward to the next ones." 8 | avatar: https://disqus.com/api/users/avatars/baardoa.jpg 9 | -------------------------------------------------------------------------------- /src/_data/comments/drawing-trees/comment-1454043552000.yml: -------------------------------------------------------------------------------- 1 | id: comment-2484323760 2 | date: 2016-01-29T04:59:12Z 3 | updated: 2016-01-29T04:59:12Z 4 | _parent: /mastering-paper/drawing-trees/ 5 | name: Sel Orm 6 | url: '' 7 | message: "On the 4th image on the grass tutorial, you have 2 zoom loupes on the 8 | screen. Was this ever possible in paper previously ? How did you do it?" 9 | avatar: https://disqus.com/api/users/avatars/sel_orm.jpg 10 | -------------------------------------------------------------------------------- /src/_data/comments/drawing-trees/comment-1454069139000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '6' 2 | id: comment-2484661104 3 | date: 2016-01-29T12:05:39Z 4 | updated: 2016-01-29T12:05:39Z 5 | _parent: /mastering-paper/drawing-trees/ 6 | name: Michael Rose 7 | url: https://mademistakes.com/ 8 | message: "No that was never possible. Just a Photoshopped screenshot to show details." 9 | email: 1ce71bc10b86565464b612093d89707e 10 | -------------------------------------------------------------------------------- /src/_data/comments/drawing-water/comment-1380489094000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1063820948 2 | date: 2013-09-29T21:11:34Z 3 | updated: 2013-09-29T21:11:34Z 4 | _parent: /mastering-paper/drawing-water/ 5 | name: Chris Harbinson 6 | url: '' 7 | message: "Thanks you again, Michael. This is invaluable!" 8 | avatar: https://disqus.com/api/users/avatars/chrisharbinson.jpg 9 | -------------------------------------------------------------------------------- /src/_data/comments/drawing-water/comment-1380502193000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '1' 2 | id: comment-1063982056 3 | date: 2013-09-30T00:49:53Z 4 | updated: 2013-09-30T00:49:53Z 5 | _parent: /mastering-paper/drawing-water/ 6 | name: Michael Rose 7 | url: https://mademistakes.com/ 8 | message: "You're very welcome. It's been fun documenting my process." 9 | email: 1ce71bc10b86565464b612093d89707e 10 | -------------------------------------------------------------------------------- /src/_data/comments/drawing-water/comment-1380696432000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1066994181 2 | date: 2013-10-02T06:47:12Z 3 | updated: 2013-10-02T06:47:12Z 4 | _parent: /mastering-paper/drawing-water/ 5 | name: Mudz69 6 | url: '' 7 | message: "Thanx for spending your time on this, it's informative and good fun to 8 | have a go at!" 9 | avatar: https://disqus.com/api/users/avatars/mudz69.jpg 10 | -------------------------------------------------------------------------------- /src/_data/comments/drawing-water/comment-1380990189000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1071566959 2 | date: 2013-10-05T16:23:09Z 3 | updated: 2013-10-05T16:23:09Z 4 | _parent: /mastering-paper/drawing-water/ 5 | name: Ken Burke 6 | url: '' 7 | message: "Wanted to add my thanks, too! What great resource for the community! 8 | Looking forward seeing you continue to expand on the great work you've already done." 9 | avatar: https://disqus.com/api/users/avatars/disqus_NIkTHhb8Qs.jpg 10 | -------------------------------------------------------------------------------- /src/_data/comments/drawing-water/comment-1381125001000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1073229708 2 | date: 2013-10-07T05:50:01Z 3 | updated: 2013-10-07T05:50:01Z 4 | _parent: /mastering-paper/drawing-water/ 5 | name: Andreas 6 | url: '' 7 | message: "great tutorials. i never thought i could use paper this efficient" 8 | -------------------------------------------------------------------------------- /src/_data/comments/drawing-water/comment-1418528111000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1740999735 2 | date: 2014-12-14T03:35:11Z 3 | updated: 2014-12-14T03:35:11Z 4 | _parent: /mastering-paper/drawing-water/ 5 | name: Mark 6 | url: '' 7 | message: "Thank you for the great tutorials. I really appreciate you taking the 8 | time to teach." 9 | -------------------------------------------------------------------------------- /src/_data/comments/erasing/comment-1431422847000.yml: -------------------------------------------------------------------------------- 1 | id: comment-2019921790 2 | date: 2015-05-12T09:27:27Z 3 | updated: 2015-05-12T09:27:27Z 4 | _parent: /mastering-paper/erasing/ 5 | name: Sheikh Swapon 6 | url: 7 | message: "I know well MR. Michael Rose very expert about Blend (Smudge) to Erase." 8 | avatar: https://disqus.com/api/users/avatars/Photo_clipping_path.jpg 9 | -------------------------------------------------------------------------------- /src/_data/comments/faux-layer/comment-1432144791000.yml: -------------------------------------------------------------------------------- 1 | id: comment-2036089315 2 | date: 2015-05-20T17:59:51Z 3 | updated: 2015-05-20T17:59:51Z 4 | _parent: /mastering-paper/faux-layer/ 5 | name: Neomusashi 6 | url: '' 7 | message: "Thanks for a great starting point!" 8 | avatar: https://disqus.com/api/users/avatars/Neomusashi.jpg 9 | -------------------------------------------------------------------------------- /src/_data/comments/faux-layer/comment-1436215043000.yml: -------------------------------------------------------------------------------- 1 | id: comment-2120140392 2 | date: 2015-07-06T20:37:23Z 3 | updated: 2015-07-06T20:37:23Z 4 | _parent: /mastering-paper/faux-layer/ 5 | name: jmueller 6 | url: '' 7 | message: "Amazing Tip! Just stumbled across. Thanks for sharing this! :-)" 8 | avatar: https://disqus.com/api/users/avatars/jmueller.jpg 9 | -------------------------------------------------------------------------------- /src/_data/comments/faux-layer/comment-1444847560000.yml: -------------------------------------------------------------------------------- 1 | id: comment-2307357695 2 | date: 2015-10-14T18:32:40Z 3 | updated: 2015-10-14T18:32:40Z 4 | _parent: /mastering-paper/faux-layer/ 5 | name: Sophie Lynn 6 | url: '' 7 | message: "Awesome!Thanks for sharing!" 8 | -------------------------------------------------------------------------------- /src/_data/comments/faux-layer/comment-1492117216851.yml: -------------------------------------------------------------------------------- 1 | _id: 31a5cff0-208c-11e7-afe4-4b76bc9e4338 2 | _parent: /mastering-paper/faux-layer/ 3 | message: "That faux layer idea is wonderful. I'm doing a series of chibis to illustrate a children's\r\nbook and using a sketch layer (in another drawing program) of blue lines, didn't work. this is much easier." 4 | name: Lynn Mason 5 | email: 19976dbd37e6042f42d765c2f01bf5e7 6 | url: '' 7 | replying_to: '' 8 | hidden: '' 9 | date: '2017-04-13T21:00:16.843Z' 10 | -------------------------------------------------------------------------------- /src/_data/comments/github-pages-publishing-source/comment-1497161092518.yml: -------------------------------------------------------------------------------- 1 | _id: e221e9b0-4e6b-11e7-95b8-c7b76d678654 2 | _parent: /til/github-pages-publishing-source/ 3 | message: "i guess that's why GitHub has made the gh-pages option difficult to find, lately\r\n\r\n/docs is the best indeed :)" 4 | name: stefano 5 | email: e66f980dd61617104c711bf0f0a6f186 6 | url: '' 7 | replying_to: '' 8 | hidden: '' 9 | date: '2017-06-11T06:04:52.516Z' 10 | -------------------------------------------------------------------------------- /src/_data/comments/github-pages-publishing-source/comment-1555099604565.yml: -------------------------------------------------------------------------------- 1 | _id: 7e7beab0-5d5e-11e9-8585-55af057739b9 2 | _parent: /notes/github-pages-publishing-source/ 3 | name: Sean 4 | email: 6c8f21bf7a90be54df6b318995f1a3f8 5 | url: '' 6 | message: I don't have the drop down under GitHub Pages/Source! 7 | replying_to: '1' 8 | date: '2019-04-12T20:06:44.553Z' 9 | -------------------------------------------------------------------------------- /src/_data/comments/going-static/comment-1374248081000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '1' 2 | id: comment-969086868 3 | date: 2013-07-19T15:34:41Z 4 | updated: 2013-07-19T15:34:41Z 5 | _parent: /articles/going-static/ 6 | name: Michael Rose 7 | url: https://mademistakes.com/ 8 | message: "Wow this plugin looks great!" 9 | email: 1ce71bc10b86565464b612093d89707e 10 | -------------------------------------------------------------------------------- /src/_data/comments/going-static/comment-1415626124000.yml: -------------------------------------------------------------------------------- 1 | --- 2 | id: comment-1685693799 3 | date: 2014-11-10T13:28:44Z 4 | updated: 2014-11-10T13:28:44Z 5 | _parent: /articles/going-static/ 6 | name: Samuel Sosina 7 | url: http://sosina.me/ 8 | message: "Ive been thinking about using Jekyll for my new portfolio and your article 9 | has completely settled my nerves! Did you get around to using Susy with Jekyll?" 10 | avatar: https://disqus.com/api/users/avatars/samuelsosina.jpg 11 | -------------------------------------------------------------------------------- /src/_data/comments/going-static/comment-1415626349000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '3' 2 | id: comment-1685697673 3 | date: 2014-11-10T13:32:29Z 4 | updated: 2014-11-10T13:32:29Z 5 | _parent: /articles/going-static/ 6 | name: Michael Rose 7 | url: https://mademistakes.com/ 8 | message: "Not yet I haven't. I'm using Bourbon and Neat now and just need to figure 9 | out what I want to do with the grid before I make the switch." 10 | email: 1ce71bc10b86565464b612093d89707e 11 | -------------------------------------------------------------------------------- /src/_data/comments/going-static/comment-1431466796000.yml: -------------------------------------------------------------------------------- 1 | id: comment-2021178716 2 | date: 2015-05-12T21:39:56Z 3 | updated: 2015-05-12T21:39:56Z 4 | _parent: /articles/going-static/ 5 | name: ShuMo 6 | url: '' 7 | message: "I hear new in Jekyll 3.0 or on the road map is incremental regeneration 8 | of the site, which would get rid of the problem of waiting for a full site build. 9 | It was mentioned at JekyllConf." 10 | avatar: https://disqus.com/api/users/avatars/ShuMo.jpg 11 | -------------------------------------------------------------------------------- /src/_data/comments/going-static/comment-1453938901000.yml: -------------------------------------------------------------------------------- 1 | id: comment-2482043395 2 | date: 2016-01-27T23:55:01Z 3 | updated: 2016-01-27T23:55:01Z 4 | _parent: /articles/going-static/ 5 | name: Gavin Engel 6 | url: '' 7 | message: 'You might want to investigate Strongloop Loopback Gateway in front of 8 | your static website. It could be used to implement an "admin panel" on a static 9 | site with OAuth.' 10 | avatar: https://disqus.com/api/users/avatars/gavinengel.jpg 11 | -------------------------------------------------------------------------------- /src/_data/comments/grid-method/comment-1410503147000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1585370368 2 | date: 2014-09-12T06:25:47Z 3 | updated: 2014-09-12T06:25:47Z 4 | _parent: /mastering-paper/grid-method/ 5 | name: Nanika 6 | url: '' 7 | message: "I love your blog!" 8 | avatar: https://disqus.com/api/users/avatars/missnkki.jpg 9 | -------------------------------------------------------------------------------- /src/_data/comments/grid-method/comment-1419770628000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1761719429 2 | date: 2014-12-28T12:43:48Z 3 | updated: 2014-12-28T12:43:48Z 4 | _parent: /mastering-paper/grid-method/ 5 | name: Freddyt 6 | url: '' 7 | message: "I would love to see an import option with this app... Still it's a very 8 | nice app" 9 | -------------------------------------------------------------------------------- /src/_data/comments/grid-method/comment-1455304633000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '5' 2 | id: comment-2510390272 3 | date: 2016-02-12T19:17:13Z 4 | updated: 2016-02-12T19:17:13Z 5 | _parent: /mastering-paper/grid-method/ 6 | name: Eric Talerico 7 | url: '' 8 | message: "Michael, I am particularly fond of how easy it is now to remove a grid 9 | once I'm done with it." 10 | avatar: https://disqus.com/api/users/avatars/erictalerico.jpg 11 | -------------------------------------------------------------------------------- /src/_data/comments/grid-method/comment-1505750732930.yml: -------------------------------------------------------------------------------- 1 | _id: 327d9e50-9c8b-11e7-b9d9-19a672bf290b 2 | _parent: /mastering-paper/grid-method/ 3 | message: I can't find out to get it out of landscape mode. Are that mode locked. 4 | name: Per Christensen 5 | email: 9db76f3c90770d47a8e8f849ff250a7c 6 | url: '' 7 | replying_to: '' 8 | hidden: '' 9 | date: '2017-09-18T16:05:32.929Z' 10 | -------------------------------------------------------------------------------- /src/_data/comments/hpstr-jekyll-theme/comment-1378490781000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1032469944 2 | date: 2013-09-06T18:06:21Z 3 | updated: 2013-09-06T18:06:21Z 4 | _parent: /work/hpstr-jekyll-theme/ 5 | name: Felipe Oliveira 6 | url: 7 | message: "Just for curiosity, what grid system you use in themes?" 8 | avatar: https://disqus.com/api/users/avatars/faoliveiras.jpg 9 | -------------------------------------------------------------------------------- /src/_data/comments/hpstr-jekyll-theme/comment-1382267949000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1089577198 2 | date: 2013-10-20T11:19:09Z 3 | updated: 2013-10-20T11:19:09Z 4 | _parent: /work/hpstr-jekyll-theme/ 5 | name: "@sarat" 6 | url: '' 7 | message: "I just pushed the whole branch to `master` and I found it's not working. 8 | My CSS has screwed up as well. Tried `jekyll serve` in localhost but that's also 9 | not working!" 10 | avatar: https://disqus.com/api/users/avatars/Rockr.jpg 11 | -------------------------------------------------------------------------------- /src/_data/comments/hpstr-jekyll-theme/comment-1382298797000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '2' 2 | id: comment-1090012647 3 | date: 2013-10-20T19:53:17Z 4 | updated: 2013-10-20T19:53:17Z 5 | _parent: /work/hpstr-jekyll-theme/ 6 | name: "@sarat" 7 | url: '' 8 | message: "Thank you. It's working fine now. Btw, don't you support Github flavored 9 | Markdown?" 10 | avatar: https://disqus.com/api/users/avatars/Rockr.jpg 11 | -------------------------------------------------------------------------------- /src/_data/comments/hpstr-jekyll-theme/comment-1382331744000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1090405607 2 | date: 2013-10-21T05:02:24Z 3 | updated: 2013-10-21T05:02:24Z 4 | _parent: /work/hpstr-jekyll-theme/ 5 | name: Robpol86 6 | url: http://www.robpol86.com/ 7 | message: "This theme looks great! I just migrated my gh pages site from so simple 8 | to hpstr. Good work!" 9 | avatar: https://disqus.com/api/users/avatars/Robpol86.jpg 10 | -------------------------------------------------------------------------------- /src/_data/comments/hpstr-jekyll-theme/comment-1385307053000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1137153368 2 | date: 2013-11-24T15:30:53Z 3 | updated: 2013-11-24T15:30:53Z 4 | _parent: /work/hpstr-jekyll-theme/ 5 | name: prometheus2305 6 | url: '' 7 | message: "This is a really fantastic theme I am trying to use and works great when 8 | I serve it through localhost but for reason is not working when I upload my `_site` 9 | folder to s3? Any idea why that might be?" 10 | -------------------------------------------------------------------------------- /src/_data/comments/hpstr-jekyll-theme/comment-1401597076000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1414405319 2 | date: 2014-06-01T04:31:16Z 3 | updated: 2014-06-01T04:31:16Z 4 | _parent: /work/hpstr-jekyll-theme/ 5 | name: nwatkins 6 | url: '' 7 | message: "I'd like to have the main page load with the navigation menu open, but 8 | closed on other pages. Would this be possible to hack up?" 9 | avatar: https://disqus.com/api/users/avatars/nwatkins.jpg 10 | -------------------------------------------------------------------------------- /src/_data/comments/hpstr-jekyll-theme/comment-1409683191000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1570687470 2 | date: 2014-09-02T18:39:51Z 3 | updated: 2014-09-02T18:39:51Z 4 | _parent: /work/hpstr-jekyll-theme/ 5 | name: fred 6 | url: '' 7 | message: "Hi, I've forked hpstr and I'm working to make it RTL'ed! I've made 8 | some changes in `/hpstr-jekyll-theme/tree/master/assets/css`, but they are not affected 9 | on my site while any change in `_config.yml` is effected." 10 | -------------------------------------------------------------------------------- /src/_data/comments/hpstr-jekyll-theme/comment-1409684508000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '9' 2 | id: comment-1570722155 3 | date: 2014-09-02T19:01:48Z 4 | updated: 2014-09-02T19:01:48Z 5 | _parent: /work/hpstr-jekyll-theme/ 6 | name: Michael Rose 7 | url: https://mademistakes.com/ 8 | message: "Did you edit `main.min.css` or `main.css`? The theme uses the minified version 9 | so if you only made changes to `main.css` that's why they're not showing up." 10 | email: 1ce71bc10b86565464b612093d89707e 11 | -------------------------------------------------------------------------------- /src/_data/comments/hpstr-jekyll-theme/comment-1415694745000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1687438679 2 | date: 2014-11-11T08:32:25Z 3 | updated: 2014-11-11T08:32:25Z 4 | _parent: /work/hpstr-jekyll-theme/ 5 | name: hacke2 6 | url: '' 7 | message: "how modify highlight font?" 8 | avatar: https://disqus.com/api/users/avatars/hacke2.jpg 9 | -------------------------------------------------------------------------------- /src/_data/comments/hpstr-jekyll-theme/comment-1415712041000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '10' 2 | id: comment-1687684676 3 | date: 2014-11-11T13:20:41Z 4 | updated: 2014-11-11T13:20:41Z 5 | _parent: /work/hpstr-jekyll-theme/ 6 | name: hacke2 7 | url: '' 8 | message: "Thanks, I modified the `main.min.css`..." 9 | avatar: https://disqus.com/api/users/avatars/hacke2.jpg 10 | -------------------------------------------------------------------------------- /src/_data/comments/hpstr-jekyll-theme/comment-1422710194000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1827253924 2 | date: 2015-01-31T13:16:34Z 3 | updated: 2015-01-31T13:16:34Z 4 | _parent: /work/hpstr-jekyll-theme/ 5 | name: JohnWatsonDev 6 | url: 7 | message: "Dear Michael Rose~\r\n\r\nThx for the post. I'm an android developer without 8 | any web skill, I want use this theme.\r\n\r\nThx in advance~" 9 | avatar: https://disqus.com/api/users/avatars/johnwatsondev.jpg 10 | -------------------------------------------------------------------------------- /src/_data/comments/hpstr-jekyll-theme/comment-1422719464000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '12' 2 | id: comment-1827438847 3 | date: 2015-01-31T15:51:04Z 4 | updated: 2015-01-31T15:51:04Z 5 | _parent: /work/hpstr-jekyll-theme/ 6 | name: Michael Rose 7 | url: https://mademistakes.com/ 8 | message: "Check out the [theme's documentation on GitHub](https://mmistakes.github.io/hpstr-jekyll-theme/theme-setup/). I explain all the features 9 | and how to set it up with Jekyll." 10 | email: 1ce71bc10b86565464b612093d89707e 11 | -------------------------------------------------------------------------------- /src/_data/comments/hpstr-jekyll-theme/comment-1445196870000.yml: -------------------------------------------------------------------------------- 1 | id: comment-2313907616 2 | date: 2015-10-18T19:34:30Z 3 | updated: 2015-10-18T19:34:30Z 4 | _parent: /work/hpstr-jekyll-theme/ 5 | name: Jian Jin 6 | url: '' 7 | message: "Thank you for this awesome template! I love it! May I connect with you 8 | on LinkedIn?" 9 | -------------------------------------------------------------------------------- /src/_data/comments/improving-jekyll-static-comments/comment-1481731561641.yml: -------------------------------------------------------------------------------- 1 | _id: 35003060-c217-11e6-92af-6b8d5992a359 2 | _parent: /articles/improving-jekyll-static-comments/ 3 | message: >- 4 | Thank you for this article. It's awesome, I have successfully added static 5 | comments to jekyll. I noticed that you do not use Akismet. Is there any reason 6 | for this? 7 | email: cbd841d40a5279069359827a9b3f9fd6 8 | name: Domantas 9 | url: '' 10 | hidden: '' 11 | date: '2016-12-14T16:06:01.640Z' 12 | -------------------------------------------------------------------------------- /src/_data/comments/improving-jekyll-static-comments/comment-1484103390668.yml: -------------------------------------------------------------------------------- 1 | _id: 8d5ff5e0-d7a9-11e6-9d0d-491faa75843b 2 | _parent: /articles/improving-jekyll-static-comments/ 3 | message: "Hi Michael.\r\n\r\nAny chance you're going to update minimal-mistakes to support the new staticman features like threading and reply notification? You're Jekyll-fu is stronger than mine." 4 | name: Doug Langille 5 | email: a12cc667f733ace5a90e6c3e961a9d79 6 | hidden: '' 7 | date: '2017-01-11T02:56:30.667Z' 8 | -------------------------------------------------------------------------------- /src/_data/comments/improving-jekyll-static-comments/comment-1485221585967.yml: -------------------------------------------------------------------------------- 1 | _id: 0daf1340-e1d5-11e6-b7c4-7beb5d4413a0 2 | _parent: /articles/improving-jekyll-static-comments/ 3 | message: >- 4 | I have a hosting provider for my site and Looking to migrate from Disqus. Is a 5 | github repo required? Can this be setup using mmistakes and not on GitHub 6 | pages? 7 | name: Justin Rummel 8 | email: 812849b04c44245ad29c0e40cb84e3da 9 | hidden: '' 10 | date: '2017-01-24T01:33:05.966Z' 11 | -------------------------------------------------------------------------------- /src/_data/comments/improving-jekyll-static-comments/comment-1485550986001.yml: -------------------------------------------------------------------------------- 1 | _id: ff6154e0-e4d3-11e6-9519-6b61b17d6497 2 | _parent: /articles/improving-jekyll-static-comments/ 3 | replying_to: '6' 4 | message: >- 5 | I now have Travis configured. I can display old Disqus comments, now to 6 | figure out how to post comments! 7 | name: Justin Rummel 8 | email: 812849b04c44245ad29c0e40cb84e3da 9 | hidden: '' 10 | date: '2017-01-27T21:03:05.999Z' 11 | -------------------------------------------------------------------------------- /src/_data/comments/improving-jekyll-static-comments/comment-1485995518222.yml: -------------------------------------------------------------------------------- 1 | _id: 0142b9c0-e8df-11e6-86ff-e7ada9208c07 2 | _parent: /articles/improving-jekyll-static-comments/ 3 | replying_to: '7' 4 | message: >- 5 | Have a look at [Justin's repo](https://github.com/justinrummel/jr.com-mm). He 6 | has Staticman `v2` working with Minimal Mistakes. 7 | name: Michael Rose 8 | email: 1ce71bc10b86565464b612093d89707e 9 | hidden: '' 10 | date: '2017-02-02T00:31:58.222Z' 11 | -------------------------------------------------------------------------------- /src/_data/comments/improving-jekyll-static-comments/comment-1486056520229.yml: -------------------------------------------------------------------------------- 1 | _id: 0948eca0-e96d-11e6-9036-933179d399bb 2 | _parent: /articles/improving-jekyll-static-comments/ 3 | replying_to: '7' 4 | message: "Thanks, I got it working with some amount of my changes plus his. \r\n\r\nStill can't get Mailgun to work." 5 | name: David Jones 6 | email: 14a298db4912733411bb8d3067b478bc 7 | hidden: '' 8 | date: '2017-02-02T17:28:40.228Z' 9 | -------------------------------------------------------------------------------- /src/_data/comments/improving-jekyll-static-comments/comment-1487392474995.yml: -------------------------------------------------------------------------------- 1 | _id: 8c6bee20-f593-11e6-9839-f7b8b79f4a11 2 | _parent: /articles/improving-jekyll-static-comments/ 3 | message: Nice tutorial. Thanks. 4 | name: John 5 | email: 2c31a17682b8685d630f31f2ec43f7bb 6 | hidden: '' 7 | date: '2017-02-18T04:34:34.994Z' 8 | -------------------------------------------------------------------------------- /src/_data/comments/improving-jekyll-static-comments/comment-1488881391127.yml: -------------------------------------------------------------------------------- 1 | _id: 338b2a30-031e-11e7-9cfb-db5ce023a11d 2 | _parent: /articles/improving-jekyll-static-comments/ 3 | message: >- 4 | Can I know when timestamp value is made in comment data file? It is hard to 5 | check it but looks important to show the comment order correctly. 6 | name: John 7 | email: d61e23032f71d8620bd1e33168d235cf 8 | hidden: '' 9 | date: '2017-03-07T10:09:51.121Z' 10 | -------------------------------------------------------------------------------- /src/_data/comments/improving-jekyll-static-comments/comment-1488969645855.yml: -------------------------------------------------------------------------------- 1 | _id: af8b0150-03eb-11e7-a7a9-e79dd357dba9 2 | _parent: /articles/improving-jekyll-static-comments/ 3 | message: >- 4 | How do you apply reCaptcha for staticman? Now it is always showing "Missing 5 | reCAPTCHA API credentials" I encrypted secret using staticman. 6 | name: Chris 7 | email: d61e23032f71d8620bd1e33168d235cf 8 | hidden: '' 9 | date: '2017-03-08T10:40:45.854Z' 10 | -------------------------------------------------------------------------------- /src/_data/comments/improving-jekyll-static-comments/comment-1489052011587.yml: -------------------------------------------------------------------------------- 1 | _id: 7544c790-04ab-11e7-ba06-2b8e95b695ca 2 | _parent: /articles/improving-jekyll-static-comments/ 3 | replying_to: '11' 4 | message: Fixed. Thanks for comment. =) 5 | name: Chris 6 | email: d61e23032f71d8620bd1e33168d235cf 7 | hidden: '' 8 | date: '2017-03-09T09:33:31.585Z' 9 | -------------------------------------------------------------------------------- /src/_data/comments/improving-jekyll-static-comments/comment-1489110137352.yml: -------------------------------------------------------------------------------- 1 | _id: cace4970-0532-11e7-aa50-6d06826af1ce 2 | _parent: /articles/improving-jekyll-static-comments/ 3 | replying_to: '12' 4 | message: 'And good catch on the `required` attribute, completely missed that.' 5 | name: Michael Rose 6 | email: 1ce71bc10b86565464b612093d89707e 7 | hidden: '' 8 | date: '2017-03-10T01:42:17.350Z' 9 | -------------------------------------------------------------------------------- /src/_data/comments/improving-jekyll-static-comments/comment-1490457260680.yml: -------------------------------------------------------------------------------- 1 | _id: 4ef3c800-1173-11e7-aba0-4d333bb705b7 2 | _parent: /articles/improving-jekyll-static-comments/ 3 | message: This is really helpful thanks. 4 | name: Lee 5 | email: 58ef23e64467397de44235e5a5a4dd0d 6 | url: '' 7 | replying_to: '' 8 | hidden: '' 9 | date: '2017-03-25T15:54:20.674Z' 10 | -------------------------------------------------------------------------------- /src/_data/comments/improving-jekyll-static-comments/comment-1491030238309.yml: -------------------------------------------------------------------------------- 1 | _id: 602cead0-16a9-11e7-8826-052990469031 2 | _parent: /articles/improving-jekyll-static-comments/ 3 | message: >- 4 | How did you apply mail notification? I already encrypted api key and domain 5 | correctly, though not having luck until now. 6 | name: John 7 | email: d61e23032f71d8620bd1e33168d235cf 8 | url: '' 9 | replying_to: '' 10 | hidden: '' 11 | date: '2017-04-01T07:03:58.305Z' 12 | -------------------------------------------------------------------------------- /src/_data/comments/improving-jekyll-static-comments/comment-1491627404813.yml: -------------------------------------------------------------------------------- 1 | _id: c2bc10e0-1c17-11e7-8045-f10619b22d43 2 | _parent: /articles/improving-jekyll-static-comments/ 3 | message: >- 4 | It looks it is impossible to implement public instance of mailgun for now, 5 | sadly. 6 | name: John 7 | email: d61e23032f71d8620bd1e33168d235cf 8 | url: '' 9 | replying_to: '14' 10 | hidden: '' 11 | date: '2017-04-08T04:56:44.804Z' 12 | -------------------------------------------------------------------------------- /src/_data/comments/improving-jekyll-static-comments/comment-1492658318898.yml: -------------------------------------------------------------------------------- 1 | _id: 0bbdf0b0-2578-11e7-afad-f182f109e72e 2 | _parent: /articles/improving-jekyll-static-comments/ 3 | message: Extremely helpful. Thank you. 4 | name: Matt Seemon 5 | email: 09d1cc2c678124c06dd0ab1a0351f665 6 | url: 'https://mattseemon.in' 7 | replying_to: '' 8 | hidden: '' 9 | date: '2017-04-20T03:18:38.897Z' 10 | -------------------------------------------------------------------------------- /src/_data/comments/improving-jekyll-static-comments/comment-1493175052061.yml: -------------------------------------------------------------------------------- 1 | _id: 28daaeb0-2a2b-11e7-9eac-4b33388ae63e 2 | _parent: /articles/improving-jekyll-static-comments/ 3 | message: "Did that as well, and all I get is \r\n\r\n~~~\r\n[]\r\n~~~" 4 | name: Matt Seemon 5 | email: 09d1cc2c678124c06dd0ab1a0351f665 6 | url: 'https://mattseemon.in' 7 | replying_to: '15' 8 | hidden: '' 9 | date: '2017-04-26T02:50:52.060Z' 10 | -------------------------------------------------------------------------------- /src/_data/comments/improving-jekyll-static-comments/comment-1503767042418.yml: -------------------------------------------------------------------------------- 1 | _id: 8ed63760-8a80-11e7-96dc-39adeedeaff6 2 | _parent: /articles/improving-jekyll-static-comments/ 3 | message: >- 4 | Many thanks for this article. After Pooleapp dead i thought i was sentenced to 5 | Disqus again. Staticman to the rescue !! 6 | name: Radek 7 | email: b4d3a26373c238de81eb913b593b6826 8 | url: '' 9 | replying_to: '' 10 | hidden: '' 11 | date: '2017-08-26T17:04:02.414Z' 12 | timestamp: 1503767042 13 | -------------------------------------------------------------------------------- /src/_data/comments/introduction-tool-guide/comment-1375311525000.yml: -------------------------------------------------------------------------------- 1 | id: comment-983157783 2 | date: 2013-07-31T22:58:45Z 3 | updated: 2013-07-31T22:58:45Z 4 | _parent: /mastering-paper/introduction-tool-guide/ 5 | name: Jim 6 | url: '' 7 | message: "This writeup is AMAZING, thank you for teaching me all the tricks of 8 | this amazing app!" 9 | -------------------------------------------------------------------------------- /src/_data/comments/introduction-tool-guide/comment-1375312155000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '1' 2 | id: comment-983166195 3 | date: 2013-07-31T23:09:15Z 4 | updated: 2013-07-31T23:09:15Z 5 | _parent: /mastering-paper/introduction-tool-guide/ 6 | name: Michael Rose 7 | url: https://mademistakes.com/ 8 | message: "Stay tuned, even more tricks coming." 9 | email: 1ce71bc10b86565464b612093d89707e 10 | -------------------------------------------------------------------------------- /src/_data/comments/introduction-tool-guide/comment-1375407240000.yml: -------------------------------------------------------------------------------- 1 | id: comment-985240204 2 | date: 2013-08-02T01:34:00Z 3 | updated: 2013-08-02T01:34:00Z 4 | _parent: /mastering-paper/introduction-tool-guide/ 5 | name: megan 6 | url: '' 7 | message: "Great guide! :D" 8 | avatar: https://disqus.com/api/users/avatars/disqus_57AAGG5wak.jpg 9 | -------------------------------------------------------------------------------- /src/_data/comments/introduction-tool-guide/comment-1375731850000.yml: -------------------------------------------------------------------------------- 1 | id: comment-989509367 2 | date: 2013-08-05T19:44:10Z 3 | updated: 2013-08-05T19:44:10Z 4 | _parent: /mastering-paper/introduction-tool-guide/ 5 | name: lunastrike 6 | url: '' 7 | message: "Amazing!" 8 | -------------------------------------------------------------------------------- /src/_data/comments/introduction-tool-guide/comment-1375852140000.yml: -------------------------------------------------------------------------------- 1 | id: comment-991120433 2 | date: 2013-08-07T05:09:00Z 3 | updated: 2013-08-07T05:09:00Z 4 | _parent: /mastering-paper/introduction-tool-guide/ 5 | name: adeirra 6 | url: '' 7 | message: "Despite all of your somewhat-sexy weirdness.. i never thought that you 8 | are actually a very good teacher slash mentor! Love this, mike." 9 | avatar: https://disqus.com/api/users/avatars/adeirra.jpg 10 | -------------------------------------------------------------------------------- /src/_data/comments/introduction-tool-guide/comment-1376040798000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '4' 2 | id: comment-994215860 3 | date: 2013-08-09T09:33:18Z 4 | updated: 2013-08-09T09:33:18Z 5 | _parent: /mastering-paper/introduction-tool-guide/ 6 | name: adeirra 7 | url: '' 8 | message: "If that's horrible... then i wont be submit for a good one. Cant wait 9 | for your next writings about Paper, dear...!:heart:" 10 | avatar: https://disqus.com/api/users/avatars/adeirra.jpg 11 | -------------------------------------------------------------------------------- /src/_data/comments/introduction-tool-guide/comment-1376625477000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1003164768 2 | date: 2013-08-16T03:57:57Z 3 | updated: 2013-08-16T03:57:57Z 4 | _parent: /mastering-paper/introduction-tool-guide/ 5 | name: HoYoung Choi 6 | url: '' 7 | message: "아따 심오하다. 이걸 몸으로 익혀야 되는데.;ㅁ;" 8 | avatar: https://disqus.com/api/users/avatars/hoyoungchoi.jpg 9 | -------------------------------------------------------------------------------- /src/_data/comments/introduction-tool-guide/comment-1376684545000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1004103359 2 | date: 2013-08-16T20:22:25Z 3 | updated: 2013-08-16T20:22:25Z 4 | _parent: /mastering-paper/introduction-tool-guide/ 5 | name: Abdul Rahman 6 | url: '' 7 | message: "is there any difference if one is drawing on retina or non retina display 8 | i mean do we have more details on retina ipad ?" 9 | avatar: https://disqus.com/api/users/avatars/disqus_O3N8Fpfbyq.jpg 10 | -------------------------------------------------------------------------------- /src/_data/comments/introduction-tool-guide/comment-1376794161000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1005229966 2 | date: 2013-08-18T02:49:21Z 3 | updated: 2013-08-18T02:49:21Z 4 | _parent: /mastering-paper/introduction-tool-guide/ 5 | name: Rozhana Art 6 | url: '' 7 | message: "Great article! I'm new to paper so this was very helpful, Very clear and 8 | to the point. I love how you don't completely praise the app but simply mention 9 | its good features while still giving its limitations. :)" 10 | -------------------------------------------------------------------------------- /src/_data/comments/introduction-tool-guide/comment-1376984306000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '6' 2 | id: comment-1007685659 3 | date: 2013-08-20T07:38:26Z 4 | updated: 2013-08-20T07:38:26Z 5 | _parent: /mastering-paper/introduction-tool-guide/ 6 | name: Abdul Rahman 7 | url: '' 8 | message: "thanks :) it means i dont have to upgrade to ipad retina :)" 9 | avatar: https://disqus.com/api/users/avatars/disqus_O3N8Fpfbyq.jpg 10 | -------------------------------------------------------------------------------- /src/_data/comments/introduction-tool-guide/comment-1377166098000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1012791862 2 | date: 2013-08-22T10:08:18Z 3 | updated: 2013-08-22T10:08:18Z 4 | _parent: /mastering-paper/introduction-tool-guide/ 5 | name: Abdul Rahman 6 | url: '' 7 | message: "when is the next part of your tutorial coming ?" 8 | avatar: https://disqus.com/api/users/avatars/disqus_O3N8Fpfbyq.jpg 9 | -------------------------------------------------------------------------------- /src/_data/comments/introduction-tool-guide/comment-1377170401000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '8' 2 | id: comment-1012922622 3 | date: 2013-08-22T11:20:01Z 4 | updated: 2013-08-22T11:20:01Z 5 | _parent: /mastering-paper/introduction-tool-guide/ 6 | name: Michael Rose 7 | url: https://mademistakes.com/ 8 | message: "Next couple of weeks. Trying to get really detailed with a bunch of techniques." 9 | email: 1ce71bc10b86565464b612093d89707e 10 | -------------------------------------------------------------------------------- /src/_data/comments/introduction-tool-guide/comment-1377972100000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1024559577 2 | date: 2013-08-31T18:01:40Z 3 | updated: 2013-08-31T18:01:40Z 4 | _parent: /mastering-paper/introduction-tool-guide/ 5 | name: Mbova3 6 | url: '' 7 | message: "I love the watercolor brush but am also interested in using a bamboo 8 | tablet for drawing. Does anyone know of any mac software that is as nice as paper 9 | for watercolor?" 10 | avatar: https://disqus.com/api/users/avatars/Mbova3.jpg 11 | -------------------------------------------------------------------------------- /src/_data/comments/introduction-tool-guide/comment-1379258836000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1045581250 2 | date: 2013-09-15T15:27:16Z 3 | updated: 2013-09-15T15:27:16Z 4 | _parent: /mastering-paper/introduction-tool-guide/ 5 | name: Gillybede 6 | url: '' 7 | message: "Thank you for taking the time to share this, now I feel a little less 8 | lost!" 9 | -------------------------------------------------------------------------------- /src/_data/comments/introduction-tool-guide/comment-1381756066000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1081793074 2 | date: 2013-10-14T13:07:46Z 3 | updated: 2013-10-14T13:07:46Z 4 | _parent: /mastering-paper/introduction-tool-guide/ 5 | name: Treddys 6 | url: '' 7 | message: "Very useful, and I like it." 8 | -------------------------------------------------------------------------------- /src/_data/comments/introduction-tool-guide/comment-1381953329000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1084804882 2 | date: 2013-10-16T19:55:29Z 3 | updated: 2013-10-16T19:55:29Z 4 | _parent: /mastering-paper/introduction-tool-guide/ 5 | name: 'Little Dom' 6 | url: '' 7 | message: "Being new to paper I found this info most helpful thank you!" 8 | -------------------------------------------------------------------------------- /src/_data/comments/introduction-tool-guide/comment-1384279598000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1119915677 2 | date: 2013-11-12T18:06:38Z 3 | updated: 2013-11-12T18:06:38Z 4 | _parent: /mastering-paper/introduction-tool-guide/ 5 | name: Khang 6 | url: '' 7 | message: "I tried this yesterday. It's very fine but how can I change the Brush 8 | size?" 9 | -------------------------------------------------------------------------------- /src/_data/comments/introduction-tool-guide/comment-1385076228000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '14' 2 | id: comment-1133682554 3 | date: 2013-11-21T23:23:48Z 4 | updated: 2013-11-21T23:23:48Z 5 | _parent: /mastering-paper/introduction-tool-guide/ 6 | name: Michael Rose 7 | url: https://mademistakes.com/ 8 | message: | 9 | My pleasure. I learn something new every time I use Paper. It's 10 | such a fun app!" 11 | email: 1ce71bc10b86565464b612093d89707e 12 | -------------------------------------------------------------------------------- /src/_data/comments/introduction-tool-guide/comment-1394046009000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1271661227 2 | date: 2014-03-05T19:00:09Z 3 | updated: 2014-03-05T19:00:09Z 4 | _parent: /mastering-paper/introduction-tool-guide/ 5 | name: Renee 6 | url: '' 7 | message: "Do you have any tips for perfecting rewind?" 8 | -------------------------------------------------------------------------------- /src/_data/comments/introduction-tool-guide/comment-1395382469000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1294441088 2 | date: 2014-03-21T06:14:29Z 3 | updated: 2014-03-21T06:14:29Z 4 | _parent: /mastering-paper/introduction-tool-guide/ 5 | name: April 6 | url: '' 7 | message: "Thank you for sharing your knowledge of Paper 53. I'm new to the app 8 | and already like what I see!!!" 9 | -------------------------------------------------------------------------------- /src/_data/comments/introduction-tool-guide/comment-1407354540000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1530648335 2 | date: 2014-08-06T19:49:00Z 3 | updated: 2014-08-06T19:49:00Z 4 | _parent: /mastering-paper/introduction-tool-guide/ 5 | name: LizD 6 | url: '' 7 | message: "Love the app - and I wanted to thank you for taking the time and using 8 | your skills to share your knowledge and experience with us. Your guides and tutorials 9 | have helped enormously. Many thanks!" 10 | -------------------------------------------------------------------------------- /src/_data/comments/introduction-tool-guide/comment-1408198975000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1545502351 2 | date: 2014-08-16T14:22:55Z 3 | updated: 2014-08-16T14:22:55Z 4 | _parent: /mastering-paper/introduction-tool-guide/ 5 | name: Cis 6 | url: '' 7 | message: "Michael, being new to Paper 53, I am finding it difficult to retrieve 8 | my tool/palette while doing my drawing/painting. Can you give me some direction 9 | please?" 10 | -------------------------------------------------------------------------------- /src/_data/comments/introduction-tool-guide/comment-1408225050000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '21' 2 | id: comment-1545963352 3 | date: 2014-08-16T21:37:30Z 4 | updated: 2014-08-16T21:37:30Z 5 | _parent: /mastering-paper/introduction-tool-guide/ 6 | name: Michael Rose 7 | url: https://mademistakes.com/ 8 | message: "If you swipe up from the bottom of the screen it should bring the tool 9 | palette back." 10 | email: 1ce71bc10b86565464b612093d89707e 11 | -------------------------------------------------------------------------------- /src/_data/comments/introduction-tool-guide/comment-1409523852000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1567941764 2 | date: 2014-08-31T22:24:12Z 3 | updated: 2014-08-31T22:24:12Z 4 | _parent: /mastering-paper/introduction-tool-guide/ 5 | name: BMK 6 | url: '' 7 | message: "Thanks so much for this extremely useful lesson. Very helpful indeed." 8 | -------------------------------------------------------------------------------- /src/_data/comments/introduction-tool-guide/comment-1426443252000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1908553391 2 | date: 2015-03-15T18:14:12Z 3 | updated: 2015-03-15T18:14:12Z 4 | _parent: /mastering-paper/introduction-tool-guide/ 5 | name: Claudette 6 | url: '' 7 | message: "How Can i save It and email a drawing" 8 | -------------------------------------------------------------------------------- /src/_data/comments/introduction-tool-guide/comment-1426446187000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '24' 2 | id: comment-1908620429 3 | date: 2015-03-15T19:03:07Z 4 | updated: 2015-03-15T19:03:07Z 5 | _parent: /mastering-paper/introduction-tool-guide/ 6 | name: Michael Rose 7 | url: https://mademistakes.com/ 8 | message: "You'll find more information on how to share on [FiftyThree's support site](https://support.fiftythree.com/hc/en-us/articles/201713541-Sharing-and-Export)." 9 | email: 1ce71bc10b86565464b612093d89707e 10 | -------------------------------------------------------------------------------- /src/_data/comments/introduction-tool-guide/comment-1436637701000.yml: -------------------------------------------------------------------------------- 1 | id: comment-2130501037 2 | date: 2015-07-11T18:01:41Z 3 | updated: 2015-07-11T18:01:41Z 4 | _parent: /mastering-paper/introduction-tool-guide/ 5 | name: Frankiet 6 | url: '' 7 | message: "I'm glad I found your site. Makes me wanna go back to Paper and Pencil 8 | again." 9 | avatar: https://disqus.com/api/users/avatars/disqus_929ixX6wgp.jpg 10 | -------------------------------------------------------------------------------- /src/_data/comments/introduction-tool-guide/comment-1436717252000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '28' 2 | id: comment-2131914954 3 | date: 2015-07-12T16:07:32Z 4 | updated: 2015-07-12T16:07:32Z 5 | _parent: /mastering-paper/introduction-tool-guide/ 6 | name: Michael Rose 7 | url: https://mademistakes.com/ 8 | message: "Those are the new **Think Kit** tools. Just swipe left on them to get at 9 | the other tools (marker, pens, pencil, etc.)" 10 | email: 1ce71bc10b86565464b612093d89707e 11 | -------------------------------------------------------------------------------- /src/_data/comments/introduction-tool-guide/comment-1436726596000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '28' 2 | id: comment-2132126849 3 | date: 2015-07-12T18:43:16Z 4 | updated: 2015-07-12T18:43:16Z 5 | _parent: /mastering-paper/introduction-tool-guide/ 6 | name: Georjajim 7 | url: '' 8 | message: "Thank you muchly!" 9 | avatar: https://disqus.com/api/users/avatars/Georjajim.jpg 10 | -------------------------------------------------------------------------------- /src/_data/comments/introduction-tool-guide/comment-1450828345000.yml: -------------------------------------------------------------------------------- 1 | id: comment-2422314097 2 | date: 2015-12-22T23:52:25Z 3 | updated: 2015-12-22T23:52:25Z 4 | _parent: /mastering-paper/introduction-tool-guide/ 5 | name: Crickbob 6 | url: '' 7 | message: "I can't seem to find a way to change the drawing 'width' of a tool to 8 | get a precise width." 9 | -------------------------------------------------------------------------------- /src/_data/comments/introduction-tool-guide/comment-1450829987000.yml: -------------------------------------------------------------------------------- 1 | id: comment-2422344675 2 | date: 2015-12-23T00:19:47Z 3 | updated: 2015-12-23T00:19:47Z 4 | _parent: /mastering-paper/introduction-tool-guide/ 5 | name: Crickbob 6 | url: '' 7 | message: "So there is no way change width and opacity as in other apps like ProCreate?\r\n\r\nI have a Pencil 53 and having a hard time figuring that out for painting." 8 | -------------------------------------------------------------------------------- /src/_data/comments/introduction-tool-guide/comment-1482796039786.yml: -------------------------------------------------------------------------------- 1 | _id: a385f580-cbc5-11e6-99ca-4334121032fa 2 | message: >- 3 | Hi Michael - received "Paper"as a Christmas present. Today your site was 4 | emailed to me. Wonderful. Thankful for the gift and for your gift of so useful 5 | a guide. 6 | email: 0641f3eb0e81572534026190fbdcacfb 7 | name: shirley creazzo 8 | url: '' 9 | hidden: '' 10 | date: '2016-12-26T23:47:19.785Z' 11 | -------------------------------------------------------------------------------- /src/_data/comments/introduction-tool-guide/comment-1521003277476.yml: -------------------------------------------------------------------------------- 1 | _id: cb88c370-2743-11e8-ac89-b753cc11aef0 2 | _parent: /mastering-paper/introduction-tool-guide/ 3 | message: >- 4 | How i can set canvas size? Because i want to designed with 120cm of square. I 5 | will be print in that measurement. 6 | name: Nadia 7 | email: 32e334829d6a10c0ecd34346f3d23faf 8 | url: '' 9 | replying_to: '' 10 | hidden: '' 11 | date: '2018-03-14T04:54:37.475Z' 12 | -------------------------------------------------------------------------------- /src/_data/comments/ipad-pro/comment-1443288485000.yml: -------------------------------------------------------------------------------- 1 | id: comment-2275505732 2 | date: 2015-09-26T17:28:05Z 3 | updated: 2015-09-26T17:28:05Z 4 | _paper: /articles/ipad-pro/ 5 | name: Ezhik 6 | url: '' 7 | message: "Have you ever considered the Surface Pro?" 8 | avatar: https://disqus.com/api/users/avatars/Ezhik.jpg 9 | -------------------------------------------------------------------------------- /src/_data/comments/ipad-pro/comment-1446825629000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '4' 2 | id: comment-2345958429 3 | date: 2015-11-06T16:00:29Z 4 | updated: 2015-11-06T16:00:29Z 5 | _paper: /articles/ipad-pro/ 6 | name: Michael Rose 7 | url: https://mademistakes.com/ 8 | message: "I've started adding a *palette* layer to my Procreate works so I can quickly 9 | sample and switch colors. Not quite the same as an always visible palette toolbar, 10 | but it helps." 11 | email: 1ce71bc10b86565464b612093d89707e 12 | -------------------------------------------------------------------------------- /src/_data/comments/ipad-pro/comment-1459302268000.yml: -------------------------------------------------------------------------------- 1 | id: comment-2596065967 2 | date: 2016-03-30T01:44:28Z 3 | updated: 2016-03-30T01:44:28Z 4 | _paper: /articles/ipad-pro/ 5 | name: 'Alex ' 6 | url: '' 7 | message: "I bought an iPad pro and a pencil and you don't have to plug the pencil 8 | into the pad because with it comes a connection which you can use to plug it directly into the charger." 9 | -------------------------------------------------------------------------------- /src/_data/comments/jekyll-static-comments/comment-1471818805944.yml: -------------------------------------------------------------------------------- 1 | _parent: /articles/jekyll-static-comments/ 2 | message: This post definitively deserves static comments. 3 | name: Frank Taillandier 4 | email: 398aad0e0e78f0db97a937fa6cb5ebea 5 | url: 'http://frank.taillandier.me' 6 | hidden: '' 7 | date: '2016-08-21T22:33:25.272Z' 8 | -------------------------------------------------------------------------------- /src/_data/comments/jekyll-static-comments/comment-1471902168765.yml: -------------------------------------------------------------------------------- 1 | _parent: /articles/jekyll-static-comments/ 2 | message: >- 3 | Thank you once again to rise the bar for the development of Jekyll themes. Now 4 | I want to try this, too. Disqus was – *like you wrote* – a necessary evil. 5 | Staticman looks like the ideal solution. 6 | name: Moritz »mo.« Sauer 7 | email: 427cc33a6a0b82643396f1b0acbba087 8 | url: 'http://mo.phlow.de/' 9 | hidden: '' 10 | date: '2016-08-22T21:42:48.075Z' 11 | -------------------------------------------------------------------------------- /src/_data/comments/jekyll-static-comments/comment-1471904599908.yml: -------------------------------------------------------------------------------- 1 | _parent: /articles/jekyll-static-comments/ 2 | replying_to: '2' 3 | message: >- 4 | It's pretty darn slick that's for sure! Hardest part to the whole thing was 5 | getting all the Disqus comments converted into `.yml` files. 6 | name: Michael Rose 7 | email: 1ce71bc10b86565464b612093d89707e 8 | url: 'https://mademistakes.com' 9 | hidden: '' 10 | date: '2016-08-22T22:23:19.187Z' 11 | -------------------------------------------------------------------------------- /src/_data/comments/jekyll-static-comments/comment-1474541157403.yml: -------------------------------------------------------------------------------- 1 | _parent: /articles/jekyll-static-comments/ 2 | message: "I have been searching for a decent alternative of Disqus for a few years now. This is the best one so far. Thanks a lot, Michael! \r\nI was wondering, does Staticman support threaded comments? If not, would I be able to get it by tinkering with the styling?" 3 | name: Arnab Wahid 4 | email: 2b5f4253acf477e13cea08554f070fef 5 | url: '' 6 | hidden: '' 7 | date: '2016-09-22T10:45:56.616Z' 8 | -------------------------------------------------------------------------------- /src/_data/comments/jekyll-static-comments/comment-1475225027509.yml: -------------------------------------------------------------------------------- 1 | _parent: /articles/jekyll-static-comments/ 2 | message: "Hey Michael,\r\nGreat post indeed, However I have some questions:\r\n\r\n1. How would you include pictures in your comments?\r\n2. I want my pages to have comments to, especially the homepage. But I don't know what would be my homepage slug.\r\n\r\nWith thanks" 3 | name: Hosein 4 | email: a9d5ac624b6aefd6919c2ea624a4642b 5 | url: '' 6 | hidden: '' 7 | date: '2016-09-30T08:43:46.706Z' 8 | -------------------------------------------------------------------------------- /src/_data/comments/jekyll-static-comments/comment-1475234134458.yml: -------------------------------------------------------------------------------- 1 | _parent: /articles/jekyll-static-comments/ 2 | replying_to: '5' 3 | message: "Since Markdown is supported you can write something like:\r\n\r\n```markdown\r\n![title](image.jpg)\r\n```\r\n\r\nTo add images to a comment." 4 | name: Michael Rose 5 | email: 1ce71bc10b86565464b612093d89707e 6 | url: 'https://mademistakes.com' 7 | hidden: '' 8 | date: '2016-09-30T11:15:33.750Z' 9 | -------------------------------------------------------------------------------- /src/_data/comments/jekyll-static-comments/comment-1475310701030.yml: -------------------------------------------------------------------------------- 1 | _parent: /articles/jekyll-static-comments/ 2 | replying_to: '5' 3 | message: >- 4 | Thank you Michael. As far as I tried, there was no page slug available for 5 | pages. I solved this problem by defining 'slug' as a custom variable for each 6 | page. 7 | name: Hosein 8 | email: a9d5ac624b6aefd6919c2ea624a4642b 9 | url: '' 10 | hidden: '' 11 | date: '2016-10-01T08:31:40.216Z' 12 | -------------------------------------------------------------------------------- /src/_data/comments/jekyll-static-comments/comment-1475532174089.yml: -------------------------------------------------------------------------------- 1 | _parent: /articles/jekyll-static-comments/ 2 | message: >- 3 | Thanks Michael. i have a question: how can i add staticman comment to my blog? 4 | i'm using Windows and host my Jekyll on Firebase 5 | name: Duc Nguyen 6 | email: 651918741a734b1cad5b2c22e1cc39c5 7 | url: '' 8 | hidden: '' 9 | date: '2016-10-03T22:02:53.283Z' 10 | -------------------------------------------------------------------------------- /src/_data/comments/jekyll-static-comments/comment-1477998248959.yml: -------------------------------------------------------------------------------- 1 | _parent: /articles/jekyll-static-comments/ 2 | message: >- 3 | I am revamping my website and moving to Jekyll. I am not sure, if Staticman 4 | works in case I am pushing only `_site` folder to Github? 5 | name: Bozdar 6 | email: 59ca798bb22d86663d64803adb03ea34 7 | url: 8 | hidden: '' 9 | date: '2016-11-01T11:04:08.323Z' 10 | -------------------------------------------------------------------------------- /src/_data/comments/jekyll-static-comments/comment-1486222105647.yml: -------------------------------------------------------------------------------- 1 | _id: 91f557f0-eaee-11e6-ad79-4f1d9783ac7b 2 | _parent: /articles/jekyll-static-comments/ 3 | replying_to: '10' 4 | message: >- 5 | The error message is a clue. It's looking for the domainmatrix gem. You likely 6 | don't have it installed so it's failing. Try `gem install domainmatrix` 7 | name: Michael Rose 8 | email: 1ce71bc10b86565464b612093d89707e 9 | hidden: '' 10 | date: '2017-02-04T15:28:25.646Z' 11 | -------------------------------------------------------------------------------- /src/_data/comments/jekyll-static-comments/comment-1494496419518.yml: -------------------------------------------------------------------------------- 1 | _id: b4f94f90-362f-11e7-8856-9b031097afe5 2 | _parent: /articles/jekyll-static-comments/ 3 | message: >- 4 | On an individual post, how can show comments but disable any new comments 5 | (maybe by not showing the 'add comment' box)? Am using staticman. 6 | name: SS 7 | email: 194b0f78b3831beab2453b68535c5b67 8 | url: '' 9 | replying_to: '' 10 | hidden: '' 11 | date: '2017-05-11T09:53:39.510Z' 12 | -------------------------------------------------------------------------------- /src/_data/comments/jekyll-style-guide/comment-1424188094000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '1' 2 | id: comment-1859975107 3 | date: 2015-02-17T15:48:14Z 4 | updated: 2015-02-17T15:48:14Z 5 | _parent: /articles/jekyll-style-guide/ 6 | name: Michael Rose 7 | url: https://mademistakes.com/ 8 | message: "Excellent. Glad it was helpful!" 9 | email: 1ce71bc10b86565464b612093d89707e 10 | -------------------------------------------------------------------------------- /src/_data/comments/jekyll-style-guide/comment-1429720942000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1981551893 2 | date: 2015-04-22T16:42:22Z 3 | updated: 2015-04-22T16:42:22Z 4 | _parent: /articles/jekyll-style-guide/ 5 | name: Karlon Cromwell 6 | url: '' 7 | message: "Hey Michael how hard would it be to install Jekyll on digital ocean (or 8 | a VPS)?" 9 | avatar: https://disqus.com/api/users/avatars/dantewaters.jpg 10 | -------------------------------------------------------------------------------- /src/_data/comments/jekyll-style-guide/comment-1429722033000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '2' 2 | id: comment-1981586445 3 | date: 2015-04-22T17:00:33Z 4 | updated: 2015-04-22T17:00:33Z 5 | _parent: /articles/jekyll-style-guide/ 6 | name: Karlon Cromwell 7 | url: '' 8 | message: "Let me try it and see." 9 | avatar: https://disqus.com/api/users/avatars/dantewaters.jpg 10 | -------------------------------------------------------------------------------- /src/_data/comments/jekyll-style-guide/comment-1451908434000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '2' 2 | id: comment-2438690300 3 | date: 2016-01-04T11:53:54Z 4 | updated: 2016-01-04T11:53:54Z 5 | _parent: /articles/jekyll-style-guide/ 6 | name: Karlon Cromwell 7 | url: '' 8 | message: "Not good :(" 9 | avatar: https://disqus.com/api/users/avatars/dantewaters.jpg 10 | -------------------------------------------------------------------------------- /src/_data/comments/jekyll-style-guide/comment-1474160329348.yml: -------------------------------------------------------------------------------- 1 | _parent: /articles/jekyll-style-guide/ 2 | message: Cool thing ! 3 | name: RELSA 4 | email: 9d6e1795705b314d834c768623e62a3d 5 | url: '' 6 | hidden: '' 7 | date: '2016-09-18T00:58:48.618Z' 8 | -------------------------------------------------------------------------------- /src/_data/comments/jekyll-themes/comment-1472608507317.yml: -------------------------------------------------------------------------------- 1 | _parent: /work/jekyll-themes/ 2 | message: Great job! You are doing amazing stuff. Happy to learn from you. 3 | name: Sergio 4 | email: 53afaf67d940adcc68dae02590df75d1 5 | url: http://sergiofores.es 6 | hidden: '' 7 | date: '2016-08-31T01:55:06.632Z' 8 | -------------------------------------------------------------------------------- /src/_data/comments/jekyll-themes/comment-1473558917905.yml: -------------------------------------------------------------------------------- 1 | _parent: /work/jekyll-themes/ 2 | replying_to: '2' 3 | message: >- 4 | Yes, you've convinced me. It looks like it has everything I wanted, and more. 5 | Thank you so much. 6 | name: Nghi Nguyen 7 | email: 8c5e5237fe7ddc1e13e6ae13b9c133bb 8 | url: '' 9 | hidden: '' 10 | date: '2016-09-11T01:55:17.238Z' 11 | -------------------------------------------------------------------------------- /src/_data/comments/jekyll-themes/comment-1477568749399.yml: -------------------------------------------------------------------------------- 1 | _parent: /work/jekyll-themes/ 2 | message: >- 3 | Minimal Mistakes theme is very good stuff. Can I put a photo on excerpt of 4 | posts ? I try multiple things but i don't find ! 5 | name: Frédéric Letellier 6 | email: fda5a0af300f7d6762f26007975d9de6 7 | url: '' 8 | hidden: '' 9 | date: '2016-10-27T11:45:48.764Z' 10 | -------------------------------------------------------------------------------- /src/_data/comments/minimal-mistakes-jekyll-theme/comment-1374242320000.yml: -------------------------------------------------------------------------------- 1 | --- 2 | id: comment-968908628 3 | date: 2013-07-19T13:58:40Z 4 | updated: 2013-07-19T13:58:40Z 5 | _parent: /work/minimal-mistakes-jekyll-theme/ 6 | name: Mihai Soloi 7 | url: '' 8 | message: "amazing design man, long time waiting for a theme like this... love it!!!" 9 | -------------------------------------------------------------------------------- /src/_data/comments/minimal-mistakes-jekyll-theme/comment-1374242363000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '1' 2 | id: comment-968909883 3 | date: 2013-07-19T13:59:23Z 4 | updated: 2013-07-19T13:59:23Z 5 | _parent: /work/minimal-mistakes-jekyll-theme/ 6 | name: Michael Rose 7 | url: https://mademistakes.com/ 8 | message: "Thanks sir!" 9 | email: 1ce71bc10b86565464b612093d89707e 10 | -------------------------------------------------------------------------------- /src/_data/comments/minimal-mistakes-jekyll-theme/comment-1376016953000.yml: -------------------------------------------------------------------------------- 1 | id: comment-993903275 2 | date: 2013-08-09T02:55:53Z 3 | updated: 2013-08-09T02:55:53Z 4 | _parent: /work/minimal-mistakes-jekyll-theme/ 5 | name: nxbtch 6 | url: '' 7 | message: "fucking beautiful. only exist in my dream!" 8 | avatar: https://disqus.com/api/users/avatars/nxbtch.jpg 9 | -------------------------------------------------------------------------------- /src/_data/comments/minimal-mistakes-jekyll-theme/comment-1380310527000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1061677465 2 | date: 2013-09-27T19:35:27Z 3 | updated: 2013-09-27T19:35:27Z 4 | _parent: /work/minimal-mistakes-jekyll-theme/ 5 | name: Lindsay Kay 6 | url: http://xeolabs.com/ 7 | message: "Michael - brilliant work, exactly what I needed. Typography spot on, 8 | clean code, flawless install. Thanks!" 9 | avatar: https://disqus.com/api/users/avatars/lindsaykay.jpg 10 | -------------------------------------------------------------------------------- /src/_data/comments/minimal-mistakes-jekyll-theme/comment-1380310612000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '3' 2 | id: comment-1061680044 3 | date: 2013-09-27T19:36:52Z 4 | updated: 2013-09-27T19:36:52Z 5 | _parent: /work/minimal-mistakes-jekyll-theme/ 6 | name: Michael Rose 7 | url: https://mademistakes.com/ 8 | message: "Awesome. Glad it's been useful." 9 | email: 1ce71bc10b86565464b612093d89707e 10 | -------------------------------------------------------------------------------- /src/_data/comments/minimal-mistakes-jekyll-theme/comment-1382812169000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '3' 2 | id: comment-1097694156 3 | date: 2013-10-26T18:29:29Z 4 | updated: 2013-10-26T18:29:29Z 5 | _parent: /work/minimal-mistakes-jekyll-theme/ 6 | name: Lindsay Kay 7 | url: http://xeolabs.com/ 8 | message: 'Minimal Mistakes in the wild: http://xeolabs.com' 9 | avatar: https://disqus.com/api/users/avatars/lindsaykay.jpg 10 | -------------------------------------------------------------------------------- /src/_data/comments/minimal-mistakes-jekyll-theme/comment-1382816973000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '3' 2 | id: comment-1097760204 3 | date: 2013-10-26T19:49:33Z 4 | updated: 2013-10-26T19:49:33Z 5 | _parent: /work/minimal-mistakes-jekyll-theme/ 6 | name: Michael Rose 7 | url: https://mademistakes.com/ 8 | message: "Sweet! Thanks for sharing." 9 | email: 1ce71bc10b86565464b612093d89707e 10 | -------------------------------------------------------------------------------- /src/_data/comments/minimal-mistakes-jekyll-theme/comment-1383048145000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1100665316 2 | date: 2013-10-29T12:02:25Z 3 | updated: 2013-10-29T12:02:25Z 4 | _parent: /work/minimal-mistakes-jekyll-theme/ 5 | name: taiar, a. 6 | url: http://taiar.com.br/ 7 | message: "this theme is awesome. wonderful work!" 8 | avatar: https://disqus.com/api/users/avatars/ataiar.jpg 9 | -------------------------------------------------------------------------------- /src/_data/comments/minimal-mistakes-jekyll-theme/comment-1412858111000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1626912450 2 | date: 2014-10-09T12:35:11Z 3 | updated: 2014-10-09T12:35:11Z 4 | _parent: /work/minimal-mistakes-jekyll-theme/ 5 | name: Jordi Pont-Tuset 6 | url: http://jponttuset.github.io/ 7 | message: "Thanks a lot for this theme, I love it!\r\n\r\nYou can check [my version here](http://jponttuset.github.io) :)" 8 | avatar: https://disqus.com/api/users/avatars/jponttuset.jpg 9 | -------------------------------------------------------------------------------- /src/_data/comments/minimal-mistakes-jekyll-theme/comment-1413708833000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1643151037 2 | date: 2014-10-19T08:53:53Z 3 | updated: 2014-10-19T08:53:53Z 4 | _parent: /work/minimal-mistakes-jekyll-theme/ 5 | name: raathigesh 6 | url: 'http://raathigesh.com/' 7 | message: "Beautiful Theme. Love it :)" 8 | avatar: https://disqus.com/api/users/avatars/raathigesh.jpg 9 | -------------------------------------------------------------------------------- /src/_data/comments/minimal-mistakes-jekyll-theme/comment-1413994614000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '8' 2 | id: comment-1648340641 3 | date: 2014-10-22T16:16:54Z 4 | updated: 2014-10-22T16:16:54Z 5 | _parent: /work/minimal-mistakes-jekyll-theme/ 6 | name: Michael Rose 7 | url: https://mademistakes.com/ 8 | message: "Looking good!" 9 | email: 1ce71bc10b86565464b612093d89707e 10 | -------------------------------------------------------------------------------- /src/_data/comments/minimal-mistakes-jekyll-theme/comment-1414713040000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1662243662 2 | date: 2014-10-30T23:50:40Z 3 | updated: 2014-10-30T23:50:40Z 4 | _parent: /work/minimal-mistakes-jekyll-theme/ 5 | name: Clayton Burlison 6 | url: https://clburlison.com/ 7 | message: "You have a bad link on this page. Under the \"Usage\" header, the \"read 8 | up here\" should now link to ." 9 | avatar: https://disqus.com/api/users/avatars/clburlison.jpg 10 | -------------------------------------------------------------------------------- /src/_data/comments/minimal-mistakes-jekyll-theme/comment-1414763591000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '9' 2 | id: comment-1663038741 3 | date: 2014-10-31T13:53:11Z 4 | updated: 2014-10-31T13:53:11Z 5 | _parent: /work/minimal-mistakes-jekyll-theme/ 6 | name: Michael Rose 7 | url: https://mademistakes.com/ 8 | message: "Eagle eyes. That's for the bad link catch." 9 | email: 1ce71bc10b86565464b612093d89707e 10 | -------------------------------------------------------------------------------- /src/_data/comments/minimal-mistakes-jekyll-theme/comment-1418667408000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1743554074 2 | date: 2014-12-15T18:16:48Z 3 | updated: 2014-12-15T18:16:48Z 4 | _parent: /work/minimal-mistakes-jekyll-theme/ 5 | name: chippyash 6 | url: http://the-matrix.github.io/ 7 | message: "Thank you Michael - just started with it (and Jekyll.) Made setting up 8 | my Github page very easy and quick." 9 | avatar: https://disqus.com/api/users/avatars/disqus_maZQ0V355P.jpg 10 | -------------------------------------------------------------------------------- /src/_data/comments/minimal-mistakes-jekyll-theme/comment-1418916531000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1748621898 2 | date: 2014-12-18T15:28:51Z 3 | updated: 2014-12-18T15:28:51Z 4 | _parent: /work/minimal-mistakes-jekyll-theme/ 5 | name: Luca 6 | url: http://lucablog.it 7 | message: "Thanks for the advice! This is my first work with \"minimal mistakes\" theme 8 | (v. 0.1 beta ;))." 9 | avatar: https://disqus.com/api/users/avatars/disqus_qtQpBfAMF0.jpg 10 | -------------------------------------------------------------------------------- /src/_data/comments/minimal-mistakes-jekyll-theme/comment-1421030768000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1787843988 2 | date: 2015-01-12T02:46:08Z 3 | updated: 2015-01-12T02:46:08Z 4 | _parent: /work/minimal-mistakes-jekyll-theme/ 5 | name: Brian Moseley 6 | url: '' 7 | message: "Is it possible to create a dropdown \"submenu\" with this theme through 8 | the data file and some alterations to `navigation.html`?" 9 | avatar: https://disqus.com/api/users/avatars/disqus_Kr3WZABtYx.jpg 10 | -------------------------------------------------------------------------------- /src/_data/comments/moleskine-book/comment-1384374095000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '1' 2 | id: comment-1121844898 3 | date: 2013-11-13T20:21:35Z 4 | updated: 2013-11-13T20:21:35Z 5 | _parent: /mastering-paper/moleskine-book/ 6 | name: Michael Rose 7 | url: https://mademistakes.com/ 8 | message: "Thanks for the encouraging words and for reading. I appreciate it!" 9 | email: 1ce71bc10b86565464b612093d89707e 10 | -------------------------------------------------------------------------------- /src/_data/comments/moleskine-book/comment-1389540070000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '3' 2 | id: comment-1197252147 3 | date: 2014-01-12T15:21:10Z 4 | updated: 2014-01-12T15:21:10Z 5 | _parent: /mastering-paper/moleskine-book/ 6 | name: Michael Rose 7 | url: https://mademistakes.com/ 8 | message: "I'm still new to guide writing and reviews, so I'm glad to hear they're 9 | coming off well. Thanks for reading, I appreciate it." 10 | email: 1ce71bc10b86565464b612093d89707e 11 | -------------------------------------------------------------------------------- /src/_data/comments/moleskine-book/comment-1407656447000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1535815316 2 | date: 2014-08-10T07:40:47Z 3 | updated: 2014-08-10T07:40:47Z 4 | _parent: /mastering-paper/moleskine-book/ 5 | name: David 6 | url: '' 7 | message: "Hi there. Can the books be ordered from outside the US?" 8 | -------------------------------------------------------------------------------- /src/_data/comments/moleskine-book/comment-1407693910000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '5' 2 | id: comment-1536326395 3 | date: 2014-08-10T18:05:10Z 4 | updated: 2014-08-10T18:05:10Z 5 | _parent: /mastering-paper/moleskine-book/ 6 | name: Michael Rose 7 | url: https://mademistakes.com/ 8 | message: "As far as I know yes they can be ordered and shipped internationally. 9 | Don't know if every country is supported but a good majority of them are." 10 | email: 1ce71bc10b86565464b612093d89707e 11 | -------------------------------------------------------------------------------- /src/_data/comments/moleskine-book/comment-1409500178000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1567513567 2 | date: 2014-08-31T15:49:38Z 3 | updated: 2014-08-31T15:49:38Z 4 | _parent: /mastering-paper/moleskine-book/ 5 | name: Tote 6 | url: '' 7 | message: "Hello!\r\n\r\nI am thinking on get a paper book as gift to my boyfriend. 8 | If you leave blank pages can you write on them later with a pen, for example or 9 | is photographic paper?\r\n\r\nThank you!" 10 | -------------------------------------------------------------------------------- /src/_data/comments/moleskine-book/comment-1409500579000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '6' 2 | id: comment-1567520668 3 | date: 2014-08-31T15:56:19Z 4 | updated: 2014-08-31T15:56:19Z 5 | _parent: /mastering-paper/moleskine-book/ 6 | name: Michael Rose 7 | url: https://mademistakes.com/ 8 | message: "You can write on the blank pages. They aren't glossy and have a matte 9 | finish like a normal piece of paper so they should hold ink just fine." 10 | email: 1ce71bc10b86565464b612093d89707e 11 | -------------------------------------------------------------------------------- /src/_data/comments/moleskine-book/comment-1409501319000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '6' 2 | id: comment-1567533759 3 | date: 2014-08-31T16:08:39Z 4 | updated: 2014-08-31T16:08:39Z 5 | _parent: /mastering-paper/moleskine-book/ 6 | name: Tote 7 | url: '' 8 | message: "Thank you very much from Granada, Spain." 9 | -------------------------------------------------------------------------------- /src/_data/comments/moleskine-book/comment-1414348570000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1654742438 2 | date: 2014-10-26T18:36:10Z 3 | updated: 2014-10-26T18:36:10Z 4 | _parent: /mastering-paper/moleskine-book/ 5 | name: Xavier 6 | url: '' 7 | message: "Thank you Michael! Xavier, From Spain" 8 | -------------------------------------------------------------------------------- /src/_data/comments/moleskine-book/comment-1416273233000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1698388324 2 | date: 2014-11-18T01:13:53Z 3 | updated: 2014-11-18T01:13:53Z 4 | _parent: /mastering-paper/moleskine-book/ 5 | name: Gary Birtles 6 | url: '' 7 | message: "There is some great are on here. I love the color choices and the style 8 | overall. I'd love to have something like this. I really enjoyed looking at your 9 | work." 10 | avatar: https://disqus.com/api/users/avatars/garybirtles.jpg 11 | -------------------------------------------------------------------------------- /src/_data/comments/moleskine-book/comment-1419841481000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1762745141 2 | date: 2014-12-29T08:24:41Z 3 | updated: 2014-12-29T08:24:41Z 4 | _parent: /mastering-paper/moleskine-book/ 5 | name: Jean Newman 6 | url: '' 7 | message: "I am an ancient person familiar with file and image saving in MS Office 8 | and Photoshop. Can I save Paper images in the same way or send them to my camera 9 | roll? Thanks." 10 | avatar: https://disqus.com/api/users/avatars/jeannewman.jpg 11 | -------------------------------------------------------------------------------- /src/_data/comments/moving-the-loupe/comment-1409692467000.yml: -------------------------------------------------------------------------------- 1 | --- 2 | id: comment-1570995903 3 | date: 2014-09-02T21:14:27Z 4 | updated: 2014-09-02T21:14:27Z 5 | _parent: /mastering-paper/moving-the-loupe/ 6 | name: sebohannon 7 | url: '' 8 | message: "Thank you for being here for us Michael. I'm only nine days into Paper 9 | and you've been invaluable to me. You're an angel. Sarah B." 10 | -------------------------------------------------------------------------------- /src/_data/comments/moving-the-loupe/comment-1409709008000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '1' 2 | id: comment-1571313456 3 | date: 2014-09-03T01:50:08Z 4 | updated: 2014-09-03T01:50:08Z 5 | _parent: /mastering-paper/moving-the-loupe/ 6 | name: Michael Rose 7 | url: https://mademistakes.com/ 8 | message: ":smile:" 9 | email: 1ce71bc10b86565464b612093d89707e 10 | -------------------------------------------------------------------------------- /src/_data/comments/moving-the-loupe/comment-1411765932000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1607533470 2 | date: 2014-09-26T21:12:12Z 3 | updated: 2014-09-26T21:12:12Z 4 | _parent: /mastering-paper/moving-the-loupe/ 5 | name: Nick Bova 6 | url: '' 7 | message: "By any chance do you have a YouTube with step by step tutorials?" 8 | -------------------------------------------------------------------------------- /src/_data/comments/moving-the-loupe/comment-1411776807000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '2' 2 | id: comment-1607742396 3 | date: 2014-09-27T00:13:27Z 4 | updated: 2014-09-27T00:13:27Z 5 | _parent: /mastering-paper/moving-the-loupe/ 6 | name: Nick Bova 7 | url: '' 8 | message: "That's perfect I can still learn from time lapse videos! Thanks for all 9 | of these tutorials they are really helping me as starting on my artistic career!" 10 | avatar: https://disqus.com/api/users/avatars/nickbova.jpg 11 | -------------------------------------------------------------------------------- /src/_data/comments/moving-the-loupe/comment-1444333805000.yml: -------------------------------------------------------------------------------- 1 | id: comment-2297132275 2 | date: 2015-10-08T19:50:05Z 3 | updated: 2015-10-08T19:50:05Z 4 | _parent: /mastering-paper/moving-the-loupe/ 5 | name: Zoe 6 | url: '' 7 | message: "I recently started using paper app and can not figure out a way to bring 8 | out the zoom loupe, when I pinch to zoom, all it does is to zoom normally as apple 9 | images does. Please some one help me?" 10 | -------------------------------------------------------------------------------- /src/_data/comments/moving-the-loupe/comment-1444333880000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '3' 2 | id: comment-2297134488 3 | date: 2015-10-08T19:51:20Z 4 | updated: 2015-10-08T19:51:20Z 5 | _parent: /mastering-paper/moving-the-loupe/ 6 | name: Michael Rose 7 | url: https://mademistakes.com/ 8 | message: "FiftyThree removed the zoom loupe in version 3.0. Pinching now zooms 9 | the entire canvas." 10 | email: 1ce71bc10b86565464b612093d89707e 11 | -------------------------------------------------------------------------------- /src/_data/comments/moving-the-loupe/comment-1444369942000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '3' 2 | id: comment-2297828430 3 | date: 2015-10-09T05:52:22Z 4 | updated: 2015-10-09T05:52:22Z 5 | _parent: /mastering-paper/moving-the-loupe/ 6 | name: Zoe 7 | url: '' 8 | message: "Thank you, I was straggling to make it happen all day.\r\n\r\nYour posts 9 | are very helpful, Thank you, and good luck with everything!" 10 | -------------------------------------------------------------------------------- /src/_data/comments/paper-2-0/comment-1414194263000.yml: -------------------------------------------------------------------------------- 1 | --- 2 | id: comment-1652452391 3 | date: 2014-10-24T23:44:23Z 4 | updated: 2014-10-24T23:44:23Z 5 | _parent: /mastering-paper/paper-2-0/ 6 | name: CeliaMaria Lana-daCosta Zannon 7 | url: '' 8 | message: "Idem ibidem!..." 9 | avatar: https://disqus.com/api/users/avatars/celiamarialanadacostazannon.jpg 10 | -------------------------------------------------------------------------------- /src/_data/comments/paper-2-0/comment-1414195676000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '3' 2 | id: comment-1652474485 3 | date: 2014-10-25T00:07:56Z 4 | updated: 2014-10-25T00:07:56Z 5 | _parent: /mastering-paper/paper-2-0/ 6 | name: Michael Rose 7 | url: https://mademistakes.com/ 8 | message: "From my quick tests most of these bugs were fixed in the 2.0.1 update." 9 | email: 1ce71bc10b86565464b612093d89707e 10 | -------------------------------------------------------------------------------- /src/_data/comments/paper-2-0/comment-1414208123000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '3' 2 | id: comment-1652738175 3 | date: 2014-10-25T03:35:23Z 4 | updated: 2014-10-25T03:35:23Z 5 | _parent: /mastering-paper/paper-2-0/ 6 | name: CeliaMaria Lana-daCosta Zannon 7 | url: '' 8 | message: "Thanks for taking your time replying." 9 | avatar: https://disqus.com/api/users/avatars/celiamarialanadacostazannon.jpg 10 | -------------------------------------------------------------------------------- /src/_data/comments/paper-3-features/comment-1442496381000.yml: -------------------------------------------------------------------------------- 1 | id: comment-2258464233 2 | date: 2015-09-17T13:26:21Z 3 | updated: 2015-09-17T13:26:21Z 4 | _parent: /mastering-paper/paper-3-features/ 5 | name: Nancy 6 | url: '' 7 | message: "Thank you for this review! Usually, I just pick up the new features as 8 | I stumble across them and then play with how I might use them. I found your MASTERING 9 | PAPER series last year and became an avid (silent) fan...* : )" 10 | -------------------------------------------------------------------------------- /src/_data/comments/paper-3-features/comment-1444847315000.yml: -------------------------------------------------------------------------------- 1 | id: comment-2307350853 2 | date: 2015-10-14T18:28:35Z 3 | updated: 2015-10-14T18:28:35Z 4 | _parent: /mastering-paper/paper-3-features/ 5 | name: Sophie Lynn 6 | url: '' 7 | message: "Wow! This review is amazing! Looks like I haven't got the best of it 8 | out yet~" 9 | avatar: https://disqus.com/api/users/avatars/disqus_rBWEjYNPHD.jpg 10 | -------------------------------------------------------------------------------- /src/_data/comments/paperfaces-ipad-portrait-project/comment-1397086226000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1327655813 2 | date: 2014-04-09T23:30:26Z 3 | updated: 2014-04-09T23:30:26Z 4 | _parent: /articles/paperfaces-ipad-portrait-project/ 5 | name: designrock 6 | url: '' 7 | message: "Thanks for recommending the app. Love it." 8 | avatar: https://disqus.com/api/users/avatars/designrock.jpg 9 | -------------------------------------------------------------------------------- /src/_data/comments/paperfaces-ipad-portrait-project/comment-1409086872000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1560642013 2 | date: 2014-08-26T21:01:12Z 3 | updated: 2014-08-26T21:01:12Z 4 | _parent: /articles/paperfaces-ipad-portrait-project/ 5 | name: Kevin Bradberry 6 | url: 7 | message: "iPad art fan, here. I love how you've mixed free time creativity, generosity, 8 | and income stream. Very cool. I think I'll share this article on my blog." 9 | avatar: https://disqus.com/api/users/avatars/kevinbradberry.jpg 10 | -------------------------------------------------------------------------------- /src/_data/comments/paperfaces-ipad-portrait-project/comment-1409101674000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '2' 2 | id: comment-1560982980 3 | date: 2014-08-27T01:07:54Z 4 | updated: 2014-08-27T01:07:54Z 5 | _parent: /articles/paperfaces-ipad-portrait-project/ 6 | name: Michael Rose 7 | url: https://mademistakes.com/ 8 | message: "Thanks Kevin. Appreciate the kind words and potential share on your blog." 9 | email: 1ce71bc10b86565464b612093d89707e 10 | -------------------------------------------------------------------------------- /src/_data/comments/pencil-53-review/comment-1386811734000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1159482200 2 | date: 2013-12-12T01:28:54Z 3 | updated: 2013-12-12T01:28:54Z 4 | _parent: /mastering-paper/pencil-53-review/ 5 | name: markwhite007 6 | url: '' 7 | message: "All we need now is the ability to buy extra tips." 8 | avatar: https://disqus.com/api/users/avatars/markwhite007.jpg 9 | -------------------------------------------------------------------------------- /src/_data/comments/pencil-53-review/comment-1386856922000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '1' 2 | id: comment-1160021192 3 | date: 2013-12-12T14:02:02Z 4 | updated: 2013-12-12T14:02:02Z 5 | _parent: /mastering-paper/pencil-53-review/ 6 | name: Michael Rose 7 | url: https://mademistakes.com/ 8 | message: "Agreed!" 9 | email: 1ce71bc10b86565464b612093d89707e 10 | -------------------------------------------------------------------------------- /src/_data/comments/pencil-53-review/comment-1387034954000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1163220840 2 | date: 2013-12-14T15:29:14Z 3 | updated: 2013-12-14T15:29:14Z 4 | _parent: /mastering-paper/pencil-53-review/ 5 | name: Guest 6 | url: '' 7 | message: "Do you have a screen protector on your iPad? FiftyThree said having one 8 | would severely affect the tip. Which might explain why yours wore down so quickly." 9 | -------------------------------------------------------------------------------- /src/_data/comments/pencil-53-review/comment-1387384508000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1168878251 2 | date: 2013-12-18T16:35:08Z 3 | updated: 2013-12-18T16:35:08Z 4 | _parent: /mastering-paper/pencil-53-review/ 5 | name: Bill Morein (FiftyThree) 6 | url: '' 7 | message: "We are planning to release an SDK - details to come soon." 8 | avatar: https://disqus.com/api/users/avatars/billmoreinfiftythree.jpg 9 | -------------------------------------------------------------------------------- /src/_data/comments/pencil-53-review/comment-1387384550000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '1' 2 | id: comment-1168879158 3 | date: 2013-12-18T16:35:50Z 4 | updated: 2013-12-18T16:35:50Z 5 | _parent: /mastering-paper/pencil-53-review/ 6 | name: Bill Morein (FiftyThree) 7 | url: '' 8 | message: "That is coming soon. If you need some urgently email support@fiftythree.com." 9 | avatar: https://disqus.com/api/users/avatars/billmoreinfiftythree.jpg 10 | -------------------------------------------------------------------------------- /src/_data/comments/pencil-53-review/comment-1387386524000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '4' 2 | id: comment-1168921828 3 | date: 2013-12-18T17:08:44Z 4 | updated: 2013-12-18T17:08:44Z 5 | _parent: /mastering-paper/pencil-53-review/ 6 | name: Michael Rose 7 | url: https://mademistakes.com/ 8 | message: "Sweet!" 9 | email: 1ce71bc10b86565464b612093d89707e 10 | -------------------------------------------------------------------------------- /src/_data/comments/pencil-53-review/comment-1387510284000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1171046134 2 | date: 2013-12-20T03:31:24Z 3 | updated: 2013-12-20T03:31:24Z 4 | _parent: /mastering-paper/pencil-53-review/ 5 | name: Knight2472000 6 | url: '' 7 | message: "How responsive is it? Using my finger on an iPad Air there is a small 8 | delay. Does it pass for a real pencil speed?" 9 | -------------------------------------------------------------------------------- /src/_data/comments/pencil-53-review/comment-1389418192000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '7' 2 | id: comment-1195954874 3 | date: 2014-01-11T05:29:52Z 4 | updated: 2014-01-11T05:29:52Z 5 | _parent: /mastering-paper/pencil-53-review/ 6 | name: Paul 7 | url: '' 8 | message: "Thanks for your thoughts/tips. Very helpful." 9 | -------------------------------------------------------------------------------- /src/_data/comments/pencil-53-review/comment-1389540148000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1197253172 2 | date: 2014-01-12T15:22:28Z 3 | updated: 2014-01-12T15:22:28Z 4 | _parent: /mastering-paper/pencil-53-review/ 5 | name: Mark McKay 6 | url: http://notyouraveragedad.com 7 | message: "So which one do you prefer in the end --- graphite or walnut? You seem 8 | to list pros and cons of both, but which one do you like best and why?" 9 | avatar: https://disqus.com/api/users/avatars/disqus_plX6dCpZCU.jpg 10 | -------------------------------------------------------------------------------- /src/_data/comments/pencil-53-review/comment-1392007917000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1237772431 2 | date: 2014-02-10T04:51:57Z 3 | updated: 2014-02-10T04:51:57Z 4 | _parent: /mastering-paper/pencil-53-review/ 5 | name: Dean 6 | url: '' 7 | message: "How does Pencil perform in writing task? I'm a court interpreter who 8 | rely more heavily on note taking and sketching than on drawing. Thanks!" 9 | -------------------------------------------------------------------------------- /src/_data/comments/pencil-53-review/comment-1392090379000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1239214588 2 | date: 2014-02-11T03:46:19Z 3 | updated: 2014-02-11T03:46:19Z 4 | _parent: /mastering-paper/pencil-53-review/ 5 | name: Arnie 6 | url: '' 7 | message: "With the graphite Pencil, were you ever worried that it would scratch 8 | your screen?" 9 | -------------------------------------------------------------------------------- /src/_data/comments/pencil-53-review/comment-1393404529000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1261072011 2 | date: 2014-02-26T08:48:49Z 3 | updated: 2014-02-26T08:48:49Z 4 | _parent: /mastering-paper/pencil-53-review/ 5 | name: Lee 6 | url: '' 7 | message: "Hello Michael. Thank you so much for the review. Are you using pencil 8 | with screen protector? Will it work well with screen protector on?\r\n\r\nDo I need 9 | to purchase tip often? I want my iPad to be protected with a durable stylus.." 10 | -------------------------------------------------------------------------------- /src/_data/comments/pencil-53-review/comment-1393504408000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '11' 2 | id: comment-1262809793 3 | date: 2014-02-27T12:33:28Z 4 | updated: 2014-02-27T12:33:28Z 5 | _parent: /mastering-paper/pencil-53-review/ 6 | name: Lee 7 | url: '' 8 | message: "By any chance do you how much does it cost to purchase extra tip and 9 | eraser? Thank you for the reply!" 10 | -------------------------------------------------------------------------------- /src/_data/comments/pencil-53-review/comment-1393937463000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '12' 2 | id: comment-1269797986 3 | date: 2014-03-04T12:51:03Z 4 | updated: 2014-03-04T12:51:03Z 5 | _parent: /mastering-paper/pencil-53-review/ 6 | name: Ben 7 | url: '' 8 | message: "Thanks, Michael. I appreciate your input." 9 | -------------------------------------------------------------------------------- /src/_data/comments/pencil-53-review/comment-1396120588000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '13' 2 | id: comment-1309909428 3 | date: 2014-03-29T19:16:28Z 4 | updated: 2014-03-29T19:16:28Z 5 | _parent: /mastering-paper/pencil-53-review/ 6 | name: Mark Koch 7 | url: '' 8 | message: "What styli (sp?) work with paper? only Pencil or a Bluetooth stylus?" 9 | -------------------------------------------------------------------------------- /src/_data/comments/pencil-53-review/comment-1396125122000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '13' 2 | id: comment-1310018753 3 | date: 2014-03-29T20:32:02Z 4 | updated: 2014-03-29T20:32:02Z 5 | _parent: /mastering-paper/pencil-53-review/ 6 | name: Mark Koch 7 | url: '' 8 | message: "See I have a Wacom Bamboo and that stylus doesn't work, that's why I 9 | was wondering." 10 | -------------------------------------------------------------------------------- /src/_data/comments/pencil-53-review/comment-1396996022000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1324880717 2 | date: 2014-04-08T22:27:02Z 3 | updated: 2014-04-08T22:27:02Z 4 | _parent: /mastering-paper/pencil-53-review/ 5 | name: Rob Lewis 6 | url: '' 7 | message: "I can't figure out how to smudge with my finger. How is this accomplished? 8 | Thanks. Great site you have here." 9 | avatar: https://disqus.com/api/users/avatars/disqus_Y9fjoCjskM.jpg 10 | -------------------------------------------------------------------------------- /src/_data/comments/pencil-53-review/comment-1410046553000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1577312918 2 | date: 2014-09-06T23:35:53Z 3 | updated: 2014-09-06T23:35:53Z 4 | _parent: /mastering-paper/pencil-53-review/ 5 | name: "'Tasso Art'" 6 | url: '' 7 | message: "I'm assuming the Walnut works with the new iPad Air Smartcover, is that 8 | correct?" 9 | avatar: https://disqus.com/api/users/avatars/tassoart.jpg 10 | -------------------------------------------------------------------------------- /src/_data/comments/pencil-53-review/comment-1412568846000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '19' 2 | id: comment-1621332194 3 | date: 2014-10-06T04:14:06Z 4 | updated: 2014-10-06T04:14:06Z 5 | _parent: /mastering-paper/pencil-53-review/ 6 | name: Augustine 7 | url: '' 8 | message: "That's really great to hear that the build quality is excellent! Thank 9 | you Michael and I'll be waiting for more of your posts about Pencil." 10 | avatar: https://disqus.com/api/users/avatars/disqus_7sz3JFYlvV.jpg 11 | -------------------------------------------------------------------------------- /src/_data/comments/pencil-53-review/comment-1422163526000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1815675823 2 | date: 2015-01-25T05:25:26Z 3 | updated: 2015-01-25T05:25:26Z 4 | _parent: /mastering-paper/pencil-53-review/ 5 | name: Ken 6 | url: '' 7 | message: "For a teacher and classroom setting, would Pencil be a good tool for 8 | writing math formulas and other hand written text? How about using Pencil with 9 | a Keynote presentation?" 10 | -------------------------------------------------------------------------------- /src/_data/comments/pencil-53-review/comment-1475677581969.yml: -------------------------------------------------------------------------------- 1 | _parent: /mastering-paper/pencil-53-review/ 2 | message: >- 3 | Hello, I'd like to know if Pencil is good for writing, because I found that 4 | the tip is not that thin. Thank you 5 | name: Rafael Hess 6 | email: 0799d9492e2a8533e465de799c2d2b64 7 | url: '' 8 | hidden: '' 9 | date: '2016-10-05T14:26:21.209Z' 10 | -------------------------------------------------------------------------------- /src/_data/comments/pencil-first-look/comment-1384966062000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1131300515 2 | date: 2013-11-20T16:47:42Z 3 | updated: 2013-11-20T16:47:42Z 4 | _parent: /mastering-paper/pencil-first-look/ 5 | name: Naufal Mir 6 | url: 7 | message: "This is just stunning!" 8 | avatar: https://disqus.com/api/users/avatars/abijango.jpg 9 | -------------------------------------------------------------------------------- /src/_data/comments/pencil-first-look/comment-1385043547000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1132689654 2 | date: 2013-11-21T14:19:07Z 3 | updated: 2013-11-21T14:19:07Z 4 | _parent: /mastering-paper/pencil-first-look/ 5 | name: glenn sharron 6 | url: '' 7 | message: "Thanks Mr. Rose." 8 | avatar: https://disqus.com/api/users/avatars/glennsharron.jpg 9 | -------------------------------------------------------------------------------- /src/_data/comments/pencil-first-look/comment-1385070180000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1133534653 2 | date: 2013-11-21T21:43:00Z 3 | updated: 2013-11-21T21:43:00Z 4 | _parent: /mastering-paper/pencil-first-look/ 5 | name: Guest 6 | url: 7 | message: "So nice, thanks! You have a Pencil, Katie Couric has a Pencil. Where's 8 | *MY* Pencil? Come on, 53! :)" 9 | -------------------------------------------------------------------------------- /src/_data/comments/pencil/comment-1436507171000.yml: -------------------------------------------------------------------------------- 1 | id: comment-2127954974 2 | date: 2015-07-10T05:46:11Z 3 | updated: 2015-07-10T05:46:11Z 4 | _parent: /mastering-paper/pencil/ 5 | name: Ramma Mak 6 | url: https://www.ramma.net/ 7 | message: "Awesome! Very helpful, thanks!" 8 | avatar: https://disqus.com/api/users/avatars/RammaMak.jpg 9 | -------------------------------------------------------------------------------- /src/_data/comments/pencil/comment-1436635594000.yml: -------------------------------------------------------------------------------- 1 | id: comment-2130454287 2 | date: 2015-07-11T17:26:34Z 3 | updated: 2015-07-11T17:26:34Z 4 | _parent: /mastering-paper/pencil/ 5 | name: Keeven Eeven 6 | url: '' 7 | message: "Wow. You've taken this tool as far as it can go nice work. I love sketching 8 | with my pencil. I hope they continue to develop it..." 9 | avatar: https://disqus.com/api/users/avatars/keeveneeven.jpg 10 | -------------------------------------------------------------------------------- /src/_data/comments/pencil/comment-1450107421000.yml: -------------------------------------------------------------------------------- 1 | id: comment-2409196092 2 | date: 2015-12-14T15:37:01Z 3 | updated: 2015-12-14T15:37:01Z 4 | _parent: /mastering-paper/pencil/ 5 | name: Mike Moon 6 | url: '' 7 | message: "I wanted to learn a little something about the 53 Pencil before the anticipated 8 | Saint Nick delivery of one.\r\n\r\nWow. You've covered a ton of techniques.Thank 9 | you ever so much." 10 | avatar: https://disqus.com/api/users/avatars/disqus_T8PXqkkThQ.jpg 11 | -------------------------------------------------------------------------------- /src/_data/comments/pencil/comment-1498956349543.yml: -------------------------------------------------------------------------------- 1 | _id: caa25450-5ebf-11e7-86d0-f3e2da84fd3f 2 | _parent: /mastering-paper/pencil/ 3 | message: 'ANDROID APP PLEASE. very sad user base, so many android users want this' 4 | name: Robert P Wilson 5 | email: 5e84f6ec80a67f1c3571cf9881d90a1d 6 | url: '' 7 | replying_to: '' 8 | hidden: '' 9 | date: '2017-07-02T00:45:49.541Z' 10 | -------------------------------------------------------------------------------- /src/_data/comments/pogo-connect-sensitivity/comment-1392149533000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '2' 2 | id: comment-1240139214 3 | date: 2014-02-11T20:12:13Z 4 | updated: 2014-02-11T20:12:13Z 5 | _parent: /mastering-paper/pogo-connect-sensitivity/ 6 | name: Michael Rose 7 | url: https://mademistakes.com/ 8 | message: "I'm with ya. Gimme a pressure sensitive Pencil and I can die a happy 9 | man." 10 | email: 1ce71bc10b86565464b612093d89707e 11 | -------------------------------------------------------------------------------- /src/_data/comments/pogo-connect-smart-pen/comment-1376491873000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1000772553 2 | date: 2013-08-14T14:51:13Z 3 | updated: 2013-08-14T14:51:13Z 4 | _parent: /mastering-paper/pogo-connect-smart-pen/ 5 | name: PICMAR 6 | url: '' 7 | message: "Wonderful style of setting the words. As marvelous as the corresponding 8 | drawings." 9 | -------------------------------------------------------------------------------- /src/_data/comments/pogo-connect-smart-pen/comment-1376491912000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1000773478 2 | date: 2013-08-14T14:51:52Z 3 | updated: 2013-08-14T14:51:52Z 4 | _parent: /mastering-paper/pogo-connect-smart-pen/ 5 | name: PICMAR 6 | url: '' 7 | message: "And really helpful. Thanks!" 8 | -------------------------------------------------------------------------------- /src/_data/comments/pogo-connect-smart-pen/comment-1376665972000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1003769524 2 | date: 2013-08-16T15:12:52Z 3 | updated: 2013-08-16T15:12:52Z 4 | _parent: /mastering-paper/pogo-connect-smart-pen/ 5 | name: Luliio 6 | url: '' 7 | message: "Amazing review but still I'm confused about the best stylus to use with Paper 8 | \"drawing\".\r\n\r\nEspecially if we are talking about the small details on the pictures.\r\n\r\nYour 9 | advice is highly appreciated." 10 | -------------------------------------------------------------------------------- /src/_data/comments/pogo-connect-smart-pen/comment-1376743549000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '3' 2 | id: comment-1004665415 3 | date: 2013-08-17T12:45:49Z 4 | updated: 2013-08-17T12:45:49Z 5 | _parent: /mastering-paper/pogo-connect-smart-pen/ 6 | name: Luliio 7 | url: '' 8 | message: "Thats great Mr. Rose\r\n\r\nActually i have Adonit jot mini + AluPen, but 9 | still confuse whats the best between them and Pogo connect as i never use it ....<\r\n\r\nMany 10 | thanks for your reply.." 11 | -------------------------------------------------------------------------------- /src/_data/comments/pogo-connect-smart-pen/comment-1379039532000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '3' 2 | id: comment-1041380681 3 | date: 2013-09-13T02:32:12Z 4 | updated: 2013-09-13T02:32:12Z 5 | _parent: /mastering-paper/pogo-connect-smart-pen/ 6 | name: Michael Rose 7 | url: https://mademistakes.com/ 8 | message: "Great. Glad you're enjoying the Pogo Connect. It's easily my favorite 9 | stylus to use with Paper." 10 | email: 1ce71bc10b86565464b612093d89707e 11 | -------------------------------------------------------------------------------- /src/_data/comments/short-guide/comment-1372721299000.yml: -------------------------------------------------------------------------------- 1 | id: comment-948495061 2 | date: 2013-07-01T23:28:19Z 3 | updated: 2013-07-01T23:28:19Z 4 | _parent: /mastering-paper/short-guide/ 5 | name: abernathy24 6 | url: '' 7 | message: "I love your blog :-)" 8 | avatar: https://disqus.com/api/users/avatars/abernathy24.jpg 9 | -------------------------------------------------------------------------------- /src/_data/comments/short-guide/comment-1380651998000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1066287038 2 | date: 2013-10-01T18:26:38Z 3 | updated: 2013-10-01T18:26:38Z 4 | _parent: /mastering-paper/short-guide/ 5 | name: anilg 6 | url: '' 7 | message: "Great article for artists!" 8 | avatar: https://disqus.com/api/users/avatars/anilg.jpg 9 | -------------------------------------------------------------------------------- /src/_data/comments/short-guide/comment-1383110161000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1101837390 2 | date: 2013-10-30T05:16:01Z 3 | updated: 2013-10-30T05:16:01Z 4 | _parent: /mastering-paper/short-guide/ 5 | name: 'Katie Ryan ' 6 | url: '' 7 | message: "Is there any way to get the greyish background edited out on the paper 8 | app? I'm trying to use some lettering I did for a blog header." 9 | -------------------------------------------------------------------------------- /src/_data/comments/short-guide/comment-1392306483000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1242732099 2 | date: 2014-02-13T15:48:03Z 3 | updated: 2014-02-13T15:48:03Z 4 | _parent: /mastering-paper/short-guide/ 5 | name: Rusty Shackleberg 6 | url: '' 7 | message: "I really enjoyed the review of Paper. I will be using this app. Is there 8 | a user friendly app that you know of like Paper to make simple animations with? 9 | Thanks" 10 | avatar: https://disqus.com/api/users/avatars/rustyshackleberg.jpg 11 | -------------------------------------------------------------------------------- /src/_data/comments/short-guide/comment-1392320882000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '5' 2 | id: comment-1243073843 3 | date: 2014-02-13T19:48:02Z 4 | updated: 2014-02-13T19:48:02Z 5 | _parent: /mastering-paper/short-guide/ 6 | name: Michael Rose 7 | url: https://mademistakes.com/ 8 | message: "No sorry I don't know of any simple apps for creating animations." 9 | email: 1ce71bc10b86565464b612093d89707e 10 | -------------------------------------------------------------------------------- /src/_data/comments/short-guide/comment-1392385299000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '5' 2 | id: comment-1244061279 3 | date: 2014-02-14T13:41:39Z 4 | updated: 2014-02-14T13:41:39Z 5 | _parent: /mastering-paper/short-guide/ 6 | name: Rusty Shackleberg 7 | url: '' 8 | message: "Thank you for responding to my question. I enjoy your blog." 9 | avatar: https://disqus.com/api/users/avatars/rustyshackleberg.jpg 10 | -------------------------------------------------------------------------------- /src/_data/comments/short-guide/comment-1396062860000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1309200087 2 | date: 2014-03-29T03:14:20Z 3 | updated: 2014-03-29T03:14:20Z 4 | _parent: /mastering-paper/short-guide/ 5 | name: Nick 6 | url: '' 7 | message: "When you buy pencil does it give you all brushes if you don't already 8 | have them." 9 | -------------------------------------------------------------------------------- /src/_data/comments/short-guide/comment-1396063398000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '6' 2 | id: comment-1309205930 3 | date: 2014-03-29T03:23:18Z 4 | updated: 2014-03-29T03:23:18Z 5 | _parent: /mastering-paper/short-guide/ 6 | name: Michael Rose 7 | url: https://mademistakes.com/ 8 | message: "Yes. Any time you connect Pencil to Paper it unlocks all of the tools." 9 | email: 1ce71bc10b86565464b612093d89707e 10 | -------------------------------------------------------------------------------- /src/_data/comments/short-guide/comment-1405128379000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '8' 2 | id: comment-1481381638 3 | date: 2014-07-12T01:26:19Z 4 | updated: 2014-07-12T01:26:19Z 5 | _parent: /mastering-paper/short-guide/ 6 | name: Mikee 7 | url: '' 8 | message: "Oh my gosh. Super thanks. Now all I have to think about and do is to 9 | buy that pretty darn pencil <3" 10 | -------------------------------------------------------------------------------- /src/_data/comments/short-guide/comment-1425120630000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1880140653 2 | date: 2015-02-28T10:50:30Z 3 | updated: 2015-02-28T10:50:30Z 4 | _parent: /mastering-paper/short-guide/ 5 | name: MasterPiece 6 | url: '' 7 | message: "Hi how i can have a full colored background in paper 53 ?!" 8 | -------------------------------------------------------------------------------- /src/_data/comments/short-guide/comment-1425146368000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '10' 2 | id: comment-1880641514 3 | date: 2015-02-28T17:59:28Z 4 | updated: 2015-02-28T17:59:28Z 5 | _parent: /mastering-paper/short-guide/ 6 | name: Michael Rose 7 | url: https://mademistakes.com/ 8 | message: "Here's instruction on how to [change the background color](https://support.fiftythree.com/hc/en-us/articles/201721151-Using-Color#fill-with-color)." 9 | email: 1ce71bc10b86565464b612093d89707e 10 | -------------------------------------------------------------------------------- /src/_data/comments/short-guide/comment-1428282766000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1948308246 2 | date: 2015-04-06T01:12:46Z 3 | updated: 2015-04-06T01:12:46Z 4 | _parent: /mastering-paper/short-guide/ 5 | name: Ron 6 | url: '' 7 | message: "Is there an undo feature? Accidental errant strokes have destroyed entire 8 | sketches. Help?" 9 | -------------------------------------------------------------------------------- /src/_data/comments/short-guide/comment-1428325994000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '11' 2 | id: comment-1948898232 3 | date: 2015-04-06T13:13:14Z 4 | updated: 2015-04-06T13:13:14Z 5 | _parent: /mastering-paper/short-guide/ 6 | name: Ron 7 | url: '' 8 | message: "Cool. Thanks very much!" 9 | -------------------------------------------------------------------------------- /src/_data/comments/short-guide/comment-1430472945000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1997413939 2 | date: 2015-05-01T09:35:45Z 3 | updated: 2015-05-01T09:35:45Z 4 | _parent: /mastering-paper/short-guide/ 5 | name: MarcB 6 | url: '' 7 | message: "Try [**Animation Desk**](http://www.kdanmobile.com/en/animation-desk/)" 8 | -------------------------------------------------------------------------------- /src/_data/comments/short-guide/comment-1432960234000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '13' 2 | id: comment-2052773885 3 | date: 2015-05-30T04:30:34Z 4 | updated: 2015-05-30T04:30:34Z 5 | _parent: /mastering-paper/short-guide/ 6 | name: TheProgressiveTroll 7 | url: http://www.mediajazz.com 8 | message: "I have to admit that all I have done with the cut tool is select and 9 | throw it off the screen, probably because of the video. I'll give it a try in the 10 | morning. Thanks for the response." 11 | -------------------------------------------------------------------------------- /src/_data/comments/short-guide/comment-1439393532000.yml: -------------------------------------------------------------------------------- 1 | id: comment-2188789433 2 | date: 2015-08-12T15:32:12Z 3 | updated: 2015-08-12T15:32:12Z 4 | _parent: /mastering-paper/short-guide/ 5 | name: Rebecca MacPherson 6 | url: '' 7 | message: "I just want to say that you are very talented and watching this video 8 | blew my mind. Incredible work!" 9 | avatar: https://disqus.com/api/users/avatars/rebecca_macpherson.jpg 10 | -------------------------------------------------------------------------------- /src/_data/comments/short-guide/comment-1439403660000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '14' 2 | id: comment-2189116778 3 | date: 2015-08-12T18:21:00Z 4 | updated: 2015-08-12T18:21:00Z 5 | _parent: /mastering-paper/short-guide/ 6 | name: Michael Rose 7 | url: https://mademistakes.com/ 8 | message: "Thanks Rebecca :smile:" 9 | email: 1ce71bc10b86565464b612093d89707e 10 | -------------------------------------------------------------------------------- /src/_data/comments/skinny-bones-jekyll/comment-1413902978000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1646420078 2 | date: 2014-10-21T14:49:38Z 3 | updated: 2014-10-21T14:49:38Z 4 | _parent: /work/skinny-bones-jekyll/ 5 | name: Guest 6 | url: 7 | message: "Thanks for doing this. I'll be using Skinny Bones for both my personal 8 | website, and the website for my SF series." 9 | -------------------------------------------------------------------------------- /src/_data/comments/skinny-bones-jekyll/comment-1413994452000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '1' 2 | id: comment-1648336201 3 | date: 2014-10-22T16:14:12Z 4 | updated: 2014-10-22T16:14:12Z 5 | _parent: /work/skinny-bones-jekyll/ 6 | name: Michael Rose 7 | url: https://mademistakes.com/ 8 | message: "Fantastic. Glad it's been of use." 9 | email: 1ce71bc10b86565464b612093d89707e 10 | -------------------------------------------------------------------------------- /src/_data/comments/skinny-bones-jekyll/comment-1415781199000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1689169431 2 | date: 2014-11-12T08:33:19Z 3 | updated: 2014-11-12T08:33:19Z 4 | _parent: /work/skinny-bones-jekyll/ 5 | name: Moch Lutfi 6 | url: http://lumochift.org/ 7 | message: "Thanks for created awesome themes... I'm use it for my personal website 8 | but still in progress in customization." 9 | avatar: https://disqus.com/api/users/avatars/mochlutfi.jpg 10 | -------------------------------------------------------------------------------- /src/_data/comments/skinny-bones-jekyll/comment-1415909727000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1691869254 2 | date: 2014-11-13T20:15:27Z 3 | updated: 2014-11-13T20:15:27Z 4 | _parent: /work/skinny-bones-jekyll/ 5 | name: Victor Caldas 6 | url: http://vcaldas.github.io/ 7 | message: "Thanks a lot Michael. I started playing with Minimal Mistakes but the 8 | Skinny bones fits even better.\r\nCheers" 9 | avatar: https://disqus.com/api/users/avatars/vcaldas.jpg 10 | -------------------------------------------------------------------------------- /src/_data/comments/skinny-bones-jekyll/comment-1415911498000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '2' 2 | id: comment-1691932369 3 | date: 2014-11-13T20:44:58Z 4 | updated: 2014-11-13T20:44:58Z 5 | _parent: /work/skinny-bones-jekyll/ 6 | name: Michael Rose 7 | url: https://mademistakes.com/ 8 | message: "Looking good." 9 | email: 1ce71bc10b86565464b612093d89707e 10 | -------------------------------------------------------------------------------- /src/_data/comments/skinny-bones-jekyll/comment-1415911529000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '3' 2 | id: comment-1691933189 3 | date: 2014-11-13T20:45:29Z 4 | updated: 2014-11-13T20:45:29Z 5 | _parent: /work/skinny-bones-jekyll/ 6 | name: Michael Rose 7 | url: https://mademistakes.com/ 8 | message: "You're welcome. It's definitely my favorite out of the two. Way more 9 | fleshed out than my older Jekyll themes." 10 | email: 1ce71bc10b86565464b612093d89707e 11 | -------------------------------------------------------------------------------- /src/_data/comments/skinny-bones-jekyll/comment-1417297264000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1718280717 2 | date: 2014-11-29T21:41:04Z 3 | updated: 2014-11-29T21:41:04Z 4 | _parent: /work/skinny-bones-jekyll/ 5 | name: timani 6 | url: '' 7 | message: "Cheers Michael, an excellent way for someone to get started" 8 | -------------------------------------------------------------------------------- /src/_data/comments/skinny-bones-jekyll/comment-1418625404000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1742482456 2 | date: 2014-12-15T06:36:44Z 3 | updated: 2014-12-15T06:36:44Z 4 | _parent: /work/skinny-bones-jekyll/ 5 | name: John Tigue 6 | url: http://tigue.com/ 7 | message: "Nice work. Could I bother you for a quick summary of the difference between 8 | this and HPSTR?" 9 | avatar: https://disqus.com/api/users/avatars/johntigue.jpg 10 | -------------------------------------------------------------------------------- /src/_data/comments/skinny-bones-jekyll/comment-1430240907000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '6' 2 | id: comment-1992110313 3 | date: 2015-04-28T17:08:27Z 4 | updated: 2015-04-28T17:08:27Z 5 | _parent: /work/skinny-bones-jekyll/ 6 | name: Brian Moseley 7 | url: '' 8 | message: "I see. I'd forgotten that the fonts I was using weren't system fonts 9 | and needed to be loaded.\r\n\r\nThanks for the Jekyll starter! It's really great!" 10 | avatar: https://disqus.com/api/users/avatars/disqus_Kr3WZABtYx.jpg 11 | -------------------------------------------------------------------------------- /src/_data/comments/so-simple-jekyll-theme/comment-1372917246000.yml: -------------------------------------------------------------------------------- 1 | id: comment-951329172 2 | date: 2013-07-04T05:54:06Z 3 | updated: 2013-07-04T05:54:06Z 4 | _parent: /work/so-simple-jekyll-theme/ 5 | name: L. 6 | url: '' 7 | message: "Cheers man - I'm working on creating a personal blog with Jekyll and 8 | this is an excellent starting point. Appreciate the hard work :)" 9 | -------------------------------------------------------------------------------- /src/_data/comments/so-simple-jekyll-theme/comment-1372926897000.yml: -------------------------------------------------------------------------------- 1 | id: comment-951420040 2 | date: 2013-07-04T08:34:57Z 3 | updated: 2013-07-04T08:34:57Z 4 | _parent: /work/so-simple-jekyll-theme/ 5 | name: Rajagopal 6 | url: '' 7 | message: "Brilliant theme! Using this for my blog. Thanks for opensourcing it!" 8 | -------------------------------------------------------------------------------- /src/_data/comments/so-simple-jekyll-theme/comment-1372945264000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '1' 2 | id: comment-951663615 3 | date: 2013-07-04T13:41:04Z 4 | updated: 2013-07-04T13:41:04Z 5 | _parent: /work/so-simple-jekyll-theme/ 6 | name: Michael Rose 7 | url: https://mademistakes.com/ 8 | message: "Excellent, glad it's of help." 9 | email: 1ce71bc10b86565464b612093d89707e 10 | -------------------------------------------------------------------------------- /src/_data/comments/so-simple-jekyll-theme/comment-1372945305000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '2' 2 | id: comment-951664586 3 | date: 2013-07-04T13:41:45Z 4 | updated: 2013-07-04T13:41:45Z 5 | _parent: /work/so-simple-jekyll-theme/ 6 | name: Michael Rose 7 | url: https://mademistakes.com/ 8 | message: "No problem. Let me know if you hit any issues. Always looking to make 9 | it better." 10 | email: 1ce71bc10b86565464b612093d89707e 11 | -------------------------------------------------------------------------------- /src/_data/comments/so-simple-jekyll-theme/comment-1373660261000.yml: -------------------------------------------------------------------------------- 1 | id: comment-960258679 2 | date: 2013-07-12T20:17:41Z 3 | updated: 2013-07-12T20:17:41Z 4 | _parent: /work/so-simple-jekyll-theme/ 5 | name: Mike Carson 6 | url: 'http://hack.ly' 7 | message: "Great theme, thanks - I'm using it." 8 | avatar: https://disqus.com/api/users/avatars/mike_carson.jpg 9 | -------------------------------------------------------------------------------- /src/_data/comments/so-simple-jekyll-theme/comment-1374677809000.yml: -------------------------------------------------------------------------------- 1 | id: comment-974663528 2 | date: 2013-07-24T14:56:49Z 3 | updated: 2013-07-24T14:56:49Z 4 | _parent: /work/so-simple-jekyll-theme/ 5 | name: Joe 6 | url: '' 7 | message: "Thanks for creating this theme. It's a great starting point." 8 | -------------------------------------------------------------------------------- /src/_data/comments/so-simple-jekyll-theme/comment-1377475983000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1017325612 2 | date: 2013-08-26T00:13:03Z 3 | updated: 2013-08-26T00:13:03Z 4 | _parent: /work/so-simple-jekyll-theme/ 5 | name: Jason 6 | url: '' 7 | message: "I cannot get to this work. When I run it i see no styles." 8 | -------------------------------------------------------------------------------- /src/_data/comments/so-simple-jekyll-theme/comment-1377476182000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '5' 2 | id: comment-1017327745 3 | date: 2013-08-26T00:16:22Z 4 | updated: 2013-08-26T00:16:22Z 5 | _parent: /work/so-simple-jekyll-theme/ 6 | name: Jason 7 | url: '' 8 | message: "Nevermind, sorry!" 9 | -------------------------------------------------------------------------------- /src/_data/comments/so-simple-jekyll-theme/comment-1378075560000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '5' 2 | id: comment-1025687774 3 | date: 2013-09-01T22:46:00Z 4 | updated: 2013-09-01T22:46:00Z 5 | _parent: /work/so-simple-jekyll-theme/ 6 | name: Marlon Cabrera 7 | url: '' 8 | message: "I see no styles too. How did you fixed it?" 9 | avatar: https://disqus.com/api/users/avatars/marlon_cabrera.jpg 10 | -------------------------------------------------------------------------------- /src/_data/comments/so-simple-jekyll-theme/comment-1378092010000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '5' 2 | id: comment-1025961767 3 | date: 2013-09-02T03:20:10Z 4 | updated: 2013-09-02T03:20:10Z 5 | _parent: /work/so-simple-jekyll-theme/ 6 | name: Marlon Cabrera 7 | url: '' 8 | message: "I am working locally. It is working now, thank you so much!" 9 | avatar: https://disqus.com/api/users/avatars/marlon_cabrera.jpg 10 | -------------------------------------------------------------------------------- /src/_data/comments/so-simple-jekyll-theme/comment-1382543473000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1093853125 2 | date: 2013-10-23T15:51:13Z 3 | updated: 2013-10-23T15:51:13Z 4 | _parent: /work/so-simple-jekyll-theme/ 5 | name: Jesse 6 | url: '' 7 | message: "On the \"sample-post\" the `{: .pull-right}` is not working and neither is 8 | the table. It actually prints `{: .pull-right}` and `{: rules=\"groups\"}`. Do you think 9 | that is a redcarpet issue or something else?" 10 | -------------------------------------------------------------------------------- /src/_data/comments/so-simple-jekyll-theme/comment-1382543885000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '6' 2 | id: comment-1093861442 3 | date: 2013-10-23T15:58:05Z 4 | updated: 2013-10-23T15:58:05Z 5 | _parent: /work/so-simple-jekyll-theme/ 6 | name: Jesse 7 | url: '' 8 | message: "Actually just verified it is. Did a `gem install kramdown` and switched 9 | the `_config.yml` back to `kramdown` then regenerated. Works like it's supposed to. 10 | Might consider adding kramdown to the `Gemfile` since the samples rely on it." 11 | -------------------------------------------------------------------------------- /src/_data/comments/so-simple-jekyll-theme/comment-1382672424000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1095977565 2 | date: 2013-10-25T03:40:24Z 3 | updated: 2013-10-25T03:40:24Z 4 | _parent: /work/so-simple-jekyll-theme/ 5 | name: Anonymous 6 | url: '' 7 | message: "I know this sound stupid, but how do I set the button to be centered?" 8 | -------------------------------------------------------------------------------- /src/_data/comments/so-simple-jekyll-theme/comment-1382711236000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '7' 2 | id: comment-1096377519 3 | date: 2013-10-25T14:27:16Z 4 | updated: 2013-10-25T14:27:16Z 5 | _parent: /work/so-simple-jekyll-theme/ 6 | name: Anonymous 7 | url: '' 8 | message: "thanks for the response, also keep rocking with themes." 9 | -------------------------------------------------------------------------------- /src/_data/comments/so-simple-jekyll-theme/comment-1384374016000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '8' 2 | id: comment-1121843207 3 | date: 2013-11-13T20:20:16Z 4 | updated: 2013-11-13T20:20:16Z 5 | _parent: /work/so-simple-jekyll-theme/ 6 | name: Michael Rose 7 | url: https://mademistakes.com/ 8 | message: "Kramdown to my knowledge is a Jekyll dependency. It should install along 9 | with it, at least it does when I've tried a clean install or update." 10 | email: 1ce71bc10b86565464b612093d89707e 11 | -------------------------------------------------------------------------------- /src/_data/comments/so-simple-jekyll-theme/comment-1384375315000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '8' 2 | id: comment-1121870886 3 | date: 2013-11-13T20:41:55Z 4 | updated: 2013-11-13T20:41:55Z 5 | _parent: /work/so-simple-jekyll-theme/ 6 | name: Alessandro Amato del Monte 7 | url: '' 8 | message: "That was very quick! Thank you so much for the reply. I will try and 9 | follow your indications and will let you know of my (in)success!" 10 | avatar: https://disqus.com/api/users/avatars/alessandroamatodelmonte.jpg 11 | -------------------------------------------------------------------------------- /src/_data/comments/so-simple-jekyll-theme/comment-1385205251000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '9' 2 | id: comment-1135681128 3 | date: 2013-11-23T11:14:11Z 4 | updated: 2013-11-23T11:14:11Z 5 | _parent: /work/so-simple-jekyll-theme/ 6 | name: lcallot 7 | url: '' 8 | message: "Thanks a lot for the fast reply, it works perfectly. I just had to remember 9 | setting the margin to `margin: 20px auto;` instead of the current `margin 20px 0 0;`" 10 | -------------------------------------------------------------------------------- /src/_data/comments/so-simple-jekyll-theme/comment-1385214969000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '9' 2 | id: comment-1135835261 3 | date: 2013-11-23T13:56:09Z 4 | updated: 2013-11-23T13:56:09Z 5 | _parent: /work/so-simple-jekyll-theme/ 6 | name: Michael Rose 7 | url: https://mademistakes.com/ 8 | message: "Meant to include the bit about making the left and right margins auto. 9 | Glad it worked out." 10 | email: 1ce71bc10b86565464b612093d89707e 11 | -------------------------------------------------------------------------------- /src/_data/comments/so-simple-jekyll-theme/comment-1386795767000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '10' 2 | id: comment-1159198898 3 | date: 2013-12-11T21:02:47Z 4 | updated: 2013-12-11T21:02:47Z 5 | _parent: /work/so-simple-jekyll-theme/ 6 | name: cehter 7 | url: '' 8 | message: "No, Disqus does not load. Here my site: http://lebensverrueckt.haktar....\r\n\r\nThanks :)" 10 | avatar: https://disqus.com/api/users/avatars/cehter.jpg 11 | -------------------------------------------------------------------------------- /src/_data/comments/so-simple-jekyll-theme/comment-1386796421000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '10' 2 | id: comment-1159214410 3 | date: 2013-12-11T21:13:41Z 4 | updated: 2013-12-11T21:13:41Z 5 | _parent: /work/so-simple-jekyll-theme/ 6 | name: cehter 7 | url: '' 8 | message: "I made the changes and now the script loads. Thanks for the fast help! 9 | :) \r\nBut the problem is strange..." 10 | avatar: https://disqus.com/api/users/avatars/cehter.jpg 11 | -------------------------------------------------------------------------------- /src/_data/comments/so-simple-jekyll-theme/comment-1400554108000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '12' 2 | id: comment-1394856414 3 | date: 2014-05-20T02:48:28Z 4 | updated: 2014-05-20T02:48:28Z 5 | _parent: /work/so-simple-jekyll-theme/ 6 | name: Michael Rose 7 | url: https://mademistakes.com/ 8 | message: "Do you have a link to the page you're trying to share so I can look at 9 | the source to troubleshoot?" 10 | email: 1ce71bc10b86565464b612093d89707e 11 | -------------------------------------------------------------------------------- /src/_data/comments/so-simple-jekyll-theme/comment-1409551365000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1568359553 2 | date: 2014-09-01T06:02:45Z 3 | updated: 2014-09-01T06:02:45Z 4 | _parent: /work/so-simple-jekyll-theme/ 5 | name: aaronchiang 6 | url: '' 7 | message: "Hi, Michael, I got a warning on Jekyll 2.3.0. The `feed.xml` need change 8 | the layout from `none` to `null`" 9 | avatar: https://disqus.com/api/users/avatars/aaronchiang.jpg 10 | -------------------------------------------------------------------------------- /src/_data/comments/so-simple-jekyll-theme/comment-1409576060000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '14' 2 | id: comment-1568738800 3 | date: 2014-09-01T12:54:20Z 4 | updated: 2014-09-01T12:54:20Z 5 | _parent: /work/so-simple-jekyll-theme/ 6 | name: Michael Rose 7 | url: https://mademistakes.com/ 8 | message: "You can remove `layout: none` from the YAML Front Matter in `feed.xml` to 9 | make the warning go away." 10 | email: 1ce71bc10b86565464b612093d89707e 11 | -------------------------------------------------------------------------------- /src/_data/comments/so-simple-jekyll-theme/comment-1426887243000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1918859404 2 | date: 2015-03-20T21:34:03Z 3 | updated: 2015-03-20T21:34:03Z 4 | _parent: /work/so-simple-jekyll-theme/ 5 | name: faiz 6 | url: '' 7 | message: "How can I add categorization of blogs by types like: Arts, poems, tech 8 | stuff, science, philosophy, etc?" 9 | -------------------------------------------------------------------------------- /src/_data/comments/so-simple-jekyll-theme/comment-1429121005000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1969160248 2 | date: 2015-04-15T18:03:25Z 3 | updated: 2015-04-15T18:03:25Z 4 | _parent: /work/so-simple-jekyll-theme/ 5 | name: MrX 6 | url: '' 7 | message: "I'm a Newbie. How can I use it?" 8 | -------------------------------------------------------------------------------- /src/_data/comments/so-simple-jekyll-theme/comment-1429121818000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '16' 2 | id: comment-1969186238 3 | date: 2015-04-15T18:16:58Z 4 | updated: 2015-04-15T18:16:58Z 5 | _parent: /work/so-simple-jekyll-theme/ 6 | name: Michael Rose 7 | url: https://mademistakes.com/ 8 | message: "Follow the [setup guide](https://mmistakes.github.io/so-simple-theme/theme-setup/)." 9 | email: 1ce71bc10b86565464b612093d89707e 10 | -------------------------------------------------------------------------------- /src/_data/comments/so-simple-jekyll-theme/comment-1438174282000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '17' 2 | id: comment-2163091273 3 | date: 2015-07-29T12:51:22Z 4 | updated: 2015-07-29T12:51:22Z 5 | _parent: /work/so-simple-jekyll-theme/ 6 | name: Shobhit Garg 7 | url: '' 8 | message: "Thanks Michael!" 9 | avatar: https://disqus.com/api/users/avatars/shobhit4u.jpg 10 | -------------------------------------------------------------------------------- /src/_data/comments/so-simple-jekyll-theme/comment-1438279663000.yml: -------------------------------------------------------------------------------- 1 | id: comment-2165581515 2 | date: 2015-07-30T18:07:43Z 3 | updated: 2015-07-30T18:07:43Z 4 | _parent: /work/so-simple-jekyll-theme/ 5 | name: Shobhit Garg 6 | url: '' 7 | message: "How can i add google analytics into my blog?\r\n\r\nI have the tracking ID. I can see there is an option `analytics` in `_config.yml`. 8 | Should i put my tracking id there?" 9 | avatar: https://disqus.com/api/users/avatars/shobhit4u.jpg 10 | -------------------------------------------------------------------------------- /src/_data/comments/so-simple-jekyll-theme/comment-1438279817000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '18' 2 | id: comment-2165586484 3 | date: 2015-07-30T18:10:17Z 4 | updated: 2015-07-30T18:10:17Z 5 | _parent: /work/so-simple-jekyll-theme/ 6 | name: Michael Rose 7 | url: https://mademistakes.com/ 8 | message: "Read through the setup guide, it's all explained there." 9 | email: 1ce71bc10b86565464b612093d89707e 10 | -------------------------------------------------------------------------------- /src/_data/comments/starting-young/comment-1394230607000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1275760654 2 | date: 2014-03-07T22:16:47Z 3 | updated: 2014-03-07T22:16:47Z 4 | _parent: /articles/starting-young/ 5 | name: Wendy Rose 6 | url: https://2littlerosebuds.com/ 7 | message: "Aww! Way to do this when I was in the shower, turd." 8 | avatar: https://disqus.com/api/users/avatars/veganwendy.jpg 9 | -------------------------------------------------------------------------------- /src/_data/comments/styling-language-specific-code-blocks/comment-1529428168932.yml: -------------------------------------------------------------------------------- 1 | _id: 866a1630-73e3-11e8-b970-9b3e102e0cbc 2 | _parent: /til/styling-language-specific-code-blocks/ 3 | name: Manuel Monterosso 4 | email: 48c0388b19d5d81759a17612f840dbdd 5 | url: 'https://kualiti.net' 6 | message: >- 7 | Great job! Can you give me the color variables for this snippet? As I don't 8 | seem to find them anywhere ^^ 9 | replying_to: '' 10 | date: '2018-06-19T17:09:28.931Z' 11 | -------------------------------------------------------------------------------- /src/_data/comments/switching-tools/comment-1467572586000.yml: -------------------------------------------------------------------------------- 1 | id: comment-2763632614 2 | date: 2016-07-03T19:03:06Z 3 | updated: 2016-07-03T19:03:06Z 4 | _parent: /mastering-paper/switching-tools/ 5 | name: Mikef2007 6 | url: '' 7 | message: "How do I type on a picture I've imported?" 8 | avatar: https://disqus.com/api/users/avatars/Mikef2007.jpg 9 | -------------------------------------------------------------------------------- /src/_data/comments/switching-tools/comment-1506997770265.yml: -------------------------------------------------------------------------------- 1 | _id: aedfcec0-a7e2-11e7-8704-5b582ac668d2 2 | _parent: /mastering-paper/switching-tools/ 3 | message: >- 4 | Is there a way to widen the width of the pencil or brush or? And do you have a 5 | stylus you recommend? 6 | name: Cheryl 7 | email: 2aaee6e84eeae17b949fc33976219d3c 8 | url: 'http://www.cherylholz.com' 9 | replying_to: '' 10 | hidden: '' 11 | date: '2017-10-03T02:29:30.257Z' 12 | -------------------------------------------------------------------------------- /src/_data/comments/switching-tools/comment-1513644933497.yml: -------------------------------------------------------------------------------- 1 | _id: 50ee9470-e457-11e7-8b3a-bb1b96b9aa20 2 | _parent: /mastering-paper/switching-tools/ 3 | message: How do I import a picture from photo library and edit and email it..? 4 | name: Robin Baron 5 | email: adf797a8ef1093fa0ee9ca2f380d3052 6 | url: '' 7 | replying_to: '' 8 | hidden: '' 9 | date: '2017-12-19T00:55:33.495Z' 10 | timestamp: 1513644933 11 | -------------------------------------------------------------------------------- /src/_data/comments/switching-tools/comment-1537523000100.yml: -------------------------------------------------------------------------------- 1 | _id: c5bfa730-bd82-11e8-8d8b-834384c9d56e 2 | _parent: /mastering-paper/switching-tools/ 3 | name: susan hogan 4 | email: e87644eea15f0581edeb7e6cfdb2914a 5 | url: '' 6 | message: Do you have a book or compilation of these tutorials that I can buy? 7 | replying_to: '' 8 | date: '2018-09-21T09:43:20.099Z' 9 | -------------------------------------------------------------------------------- /src/_data/comments/using-jekyll-2016/comment-1456173679000.yml: -------------------------------------------------------------------------------- 1 | id: comment-2529395804 2 | replying_to: '1' 3 | date: 2016-02-22T20:41:19Z 4 | updated: 2016-02-22T20:41:19Z 5 | _parent: /articles/using-jekyll-2016/ 6 | name: Michael Rose 7 | url: https://mademistakes.com/ 8 | message: "Thanks sir! Just trying to return the sentiments I've picked up from 9 | others in the Jekyll and the open source communities." 10 | email: 1ce71bc10b86565464b612093d89707e 11 | -------------------------------------------------------------------------------- /src/_data/comments/using-jekyll-2016/comment-1457539295000.yml: -------------------------------------------------------------------------------- 1 | id: comment-2559978290 2 | date: 2016-03-09T16:01:35Z 3 | updated: 2016-03-09T16:01:35Z 4 | _parent: /articles/using-jekyll-2016/ 5 | name: Paolo Perego 6 | url: http://armoredcode.com/ 7 | message: "You just made me to understand that I had to learn a lot in order to 8 | use Jekyll on all its power. Thanks" 9 | avatar: https://disqus.com/api/users/avatars/thesp0nge.jpg 10 | -------------------------------------------------------------------------------- /src/_data/comments/using-jekyll-2016/comment-1459780880000.yml: -------------------------------------------------------------------------------- 1 | id: comment-2605370340 2 | date: 2016-04-04T14:41:20Z 3 | updated: 2016-04-04T14:41:20Z 4 | _parent: /articles/using-jekyll-2016/ 5 | name: Jens Stavnstrup 6 | url: '' 7 | message: "Really enjoy your comprehensive Jekyll posts. I am very much looking 8 | forward to an updated styleguide using atomic design :)." 9 | avatar: https://disqus.com/api/users/avatars/jensstavnstrup.jpg 10 | -------------------------------------------------------------------------------- /src/_data/comments/using-jekyll-2016/comment-1462321842000.yml: -------------------------------------------------------------------------------- 1 | id: comment-2656798750 2 | date: 2016-05-04T00:30:42Z 3 | updated: 2016-05-04T00:30:42Z 4 | _parent: /articles/using-jekyll-2016/ 5 | name: Ricardo N Feliciano 6 | url: https://feliciano.tech/ 7 | message: "Lots of info in one post. Great job." 8 | avatar: https://disqus.com/api/users/avatars/FelicianoTech.jpg 9 | -------------------------------------------------------------------------------- /src/_data/comments/using-jekyll-2016/comment-1465717020000.yml: -------------------------------------------------------------------------------- 1 | id: comment-2726029067 2 | date: 2016-06-12T07:37:00Z 3 | updated: 2016-06-12T07:37:00Z 4 | _parent: /articles/using-jekyll-2016/ 5 | name: AzureYu 6 | url: 7 | message: "Learned a lot. Thanks~" 8 | avatar: https://disqus.com/api/users/avatars/Yogayu.jpg 9 | -------------------------------------------------------------------------------- /src/_data/comments/using-jekyll-2016/comment-1470948072000.yml: -------------------------------------------------------------------------------- 1 | id: comment-2832854279 2 | date: 2016-08-11T20:41:12Z 3 | updated: 2016-08-11T20:41:12Z 4 | _parent: /articles/using-jekyll-2016/ 5 | name: Antonio Ulloa 6 | url: # http://antonio.ulloa.mx/ 7 | message: "Great post thank you!" 8 | -------------------------------------------------------------------------------- /src/_data/comments/using-jekyll-2016/comment-1471971078169.yml: -------------------------------------------------------------------------------- 1 | _parent: /articles/using-jekyll-2016/ 2 | message: 'This is such a great resource, thanks for the thorough post!' 3 | name: Anne T 4 | email: d8dcd74f3145b59d2f9894e6e33f3cdf 5 | url: 'https://savaslabs.com' 6 | hidden: '' 7 | date: '2016-08-23T16:51:17.412Z' 8 | -------------------------------------------------------------------------------- /src/_data/comments/using-jekyll-2016/comment-1472328172720.yml: -------------------------------------------------------------------------------- 1 | _parent: /articles/using-jekyll-2016/ 2 | message: >- 3 | Long and good article. Would you write something like a guide (more concise) 4 | how you setup jekyll and configure it the way you use it? 5 | name: Jason 6 | email: 269828e5344e26547024218213c99c51 7 | url: '' 8 | hidden: '' 9 | date: '2016-08-27T20:02:52.038Z' 10 | -------------------------------------------------------------------------------- /src/_data/comments/using-jekyll-2016/comment-1477653386098.yml: -------------------------------------------------------------------------------- 1 | _parent: /articles/using-jekyll-2016/ 2 | replying_to: '11' 3 | message: >- 4 | @Tim - Bummer. Guess I'll have to put the brakes on `epileptic-seizure-mode` and not animate the lines. :wink: 5 | name: Michael Rose 6 | email: 1ce71bc10b86565464b612093d89707e 7 | url: 'https://mademistakes.com' 8 | hidden: '' 9 | date: '2016-10-28T11:16:25.448Z' 10 | -------------------------------------------------------------------------------- /src/_data/comments/using-jekyll-2016/comment-1478819325223.yml: -------------------------------------------------------------------------------- 1 | _parent: /articles/using-jekyll-2016/ 2 | message: 'wow, thank you. learned a few new tricks' 3 | name: sherwin 4 | email: 1a96cca177e6475025e05183cd60bc45 5 | hidden: '' 6 | date: '2016-11-10T23:08:44.535Z' 7 | -------------------------------------------------------------------------------- /src/_data/comments/using-jekyll-2016/comment-1478882631813.yml: -------------------------------------------------------------------------------- 1 | _parent: /articles/using-jekyll-2016/ 2 | message: >- 3 | Holy hell I'm trying to read this article but the sidebar on the right is 4 | melting my eyes/brain. I appreciate the article but ow. Ow. Ow. Ow. 5 | name: Weston Wedding 6 | email: 6629ad919c2e57d0a4eeba06885fdc0f 7 | hidden: '' 8 | date: '2016-11-11T16:43:51.123Z' 9 | -------------------------------------------------------------------------------- /src/_data/comments/using-jekyll-2016/comment-1479107988971.yml: -------------------------------------------------------------------------------- 1 | _parent: /articles/using-jekyll-2016/ 2 | replying_to: '11' 3 | message: "@Michael - \"`eliptical-seizure-mode`\" - yes. Please don't!\r\n\r\n...and yet the seizure-indicuing diagonal lines are still there ...\r\n\r\n...you're just enjoying this now!\r\n[twitch twitch]" 4 | name: Tim 5 | email: 87e0bf84b76f1e38956a7254f7d27f97 6 | hidden: '' 7 | date: '2016-11-14T07:19:48.255Z' 8 | -------------------------------------------------------------------------------- /src/_data/comments/using-jekyll-2016/comment-1479124935027.yml: -------------------------------------------------------------------------------- 1 | _parent: /articles/using-jekyll-2016/ 2 | replying_to: '11' 3 | message: '''Tis the season for candy canes.' 4 | name: Michael Rose 5 | email: 1ce71bc10b86565464b612093d89707e 6 | hidden: '' 7 | date: '2016-11-14T12:02:14.351Z' 8 | -------------------------------------------------------------------------------- /src/_data/comments/using-jekyll-2016/comment-1479614551877.yml: -------------------------------------------------------------------------------- 1 | _parent: /articles/using-jekyll-2016/ 2 | replying_to: '11' 3 | _id: 28eddb50-aed6-11e6-a21c-d160c97c0fbf 4 | message: "@Michael - THANK YOU for getting rid of those seizure-inducing diagonal lines.\r\nIt's like an early Christmas present.\r\n[And thanks for all your cool help in the jekyll community too.]" 5 | name: Tim 6 | email: 87e0bf84b76f1e38956a7254f7d27f97 7 | hidden: '' 8 | date: '2016-11-20T04:02:31.869Z' 9 | -------------------------------------------------------------------------------- /src/_data/comments/using-jekyll-2016/comment-1480254831825.yml: -------------------------------------------------------------------------------- 1 | _parent: /articles/using-jekyll-2016/ 2 | _id: ed7bfc90-b4a8-11e6-b9c5-4f639f9a8f91 3 | message: "Many many thanks\r\n\r\nThis article is really a \"goldmine\", I learn a ton of new things I now have to try ;-) \r\n\r\nKindest regards, From France, \r\nRudy" 4 | name: Rudy D. 5 | email: 3c3a306ca39ef598678403d4168273ef 6 | hidden: '' 7 | date: '2016-11-27T13:53:51.816Z' 8 | -------------------------------------------------------------------------------- /src/_data/comments/using-jekyll-2016/comment-1482736520075.yml: -------------------------------------------------------------------------------- 1 | _id: 0f01bd20-cb3b-11e6-802d-8bd3c870d542 2 | _parent: /articles/using-jekyll-2016/ 3 | message: 'Thank you for this article, I''m waiting for the 2017 version ;)' 4 | email: 81afaf4fdf3d384e6b1c209b84b6de9e 5 | name: r. ricco 6 | url: '' 7 | hidden: '' 8 | date: '2016-12-26T07:15:20.074Z' 9 | -------------------------------------------------------------------------------- /src/_data/comments/using-jekyll-2016/comment-1483032133577.yml: -------------------------------------------------------------------------------- 1 | _id: 5666dfd0-cdeb-11e6-9ccb-5be4dff27bba 2 | _parent: /articles/using-jekyll-2016/ 3 | replying_to: '16' 4 | message: >- 5 | Stay tuned :smile:, the 2017 version is going to go a little something like 6 | Gulp + Jekyll + Travis CI = testing and auto deploy nirvana. 7 | email: 1ce71bc10b86565464b612093d89707e 8 | name: Michael Rose 9 | url: 'https://mademistakes.com' 10 | hidden: '' 11 | date: '2016-12-29T17:22:13.577Z' 12 | -------------------------------------------------------------------------------- /src/_data/comments/using-jekyll-2016/comment-1487186769933.yml: -------------------------------------------------------------------------------- 1 | _id: 9a88fab0-f3b4-11e6-9423-0b1977e996ac 2 | _parent: /articles/using-jekyll-2016/ 3 | message: "hey michael,\r\n\r\nis your \"Overview\"-menu based on javascript? \r\nOr maybe you have a(n) reference/article about it?\r\n\r\nps: just started, but is going to be filled with static data soon: www.bastogrande.de" 4 | name: basti 5 | email: 3fa4557fab828d9b65aa6a2327a822cb 6 | hidden: '' 7 | date: '2017-02-15T19:26:09.900Z' 8 | -------------------------------------------------------------------------------- /src/_data/comments/using-jekyll-2016/comment-1488193553159.yml: -------------------------------------------------------------------------------- 1 | _id: b4351080-fcdc-11e6-8443-11b8fd05dc21 2 | _parent: /articles/using-jekyll-2016/ 3 | message: Thanks for great article. It helps a lot. 4 | name: David Johnston 5 | email: fa49ac109bd4d9cd542cdfb4769b4f60 6 | hidden: '' 7 | date: '2017-02-27T11:05:53.155Z' 8 | -------------------------------------------------------------------------------- /src/_data/comments/using-jekyll-2016/comment-1489380756760.yml: -------------------------------------------------------------------------------- 1 | _id: e0994250-07a8-11e7-9207-01a5b35c40b5 2 | _parent: /articles/using-jekyll-2016/ 3 | replying_to: '2' 4 | message: 'So, is this site run on Jekyll too?' 5 | name: ortonomy 6 | email: 1034da1eeae914900d9bd3d4ff79a247 7 | url: '' 8 | hidden: '' 9 | date: '2017-03-13T04:52:36.756Z' 10 | -------------------------------------------------------------------------------- /src/_data/comments/using-jekyll-2016/comment-1499455795259.yml: -------------------------------------------------------------------------------- 1 | _id: a776cd00-634a-11e7-a4ce-e58b60706e25 2 | _parent: /articles/using-jekyll-2016/ 3 | message: Thanks so much for posting this! I am starting jekyll and this is so useful 4 | name: Katherine 5 | email: fedcaa357fc398f933b21e1f93c214ea 6 | url: '' 7 | replying_to: '' 8 | hidden: '' 9 | date: '2017-07-07T19:29:55.257Z' 10 | -------------------------------------------------------------------------------- /src/_data/comments/using-jekyll-2017/comment-1507012075364.yml: -------------------------------------------------------------------------------- 1 | _id: fd204c10-a803-11e7-8704-5b582ac668d2 2 | _parent: /articles/using-jekyll-2017/ 3 | message: 'It would be great if you created a Jekyll starter kit and open sourced it :)' 4 | name: Chris Howell 5 | email: a5a8f22041d1996d0a684fe02151753d 6 | url: '' 7 | replying_to: '' 8 | hidden: '' 9 | date: '2017-10-03T06:27:55.362Z' 10 | -------------------------------------------------------------------------------- /src/_data/comments/using-jekyll-2017/comment-1509502007119.yml: -------------------------------------------------------------------------------- 1 | _id: 505ca9d0-bea9-11e7-9c26-335bfbd926db 2 | _parent: /articles/using-jekyll-2017/ 3 | message: >- 4 | A lot of the thought process you have here are things I'm incorporating into 5 | my personal site's rebuild. Thanks for the detail! 6 | name: Jacky 7 | email: 4abe121cada34b52a2d7f2935ae1a3a6 8 | url: 'https://jacky.wtf' 9 | replying_to: '' 10 | hidden: '' 11 | date: '2017-11-01T02:06:47.112Z' 12 | -------------------------------------------------------------------------------- /src/_data/comments/using-jekyll-2017/comment-1511543323906.yml: -------------------------------------------------------------------------------- 1 | _id: 1ffde210-d13a-11e7-997a-9951f42f680c 2 | _parent: /articles/using-jekyll-2017/ 3 | message: Great write-up! Thanks for all this insights. 4 | name: Arthur Freitas 5 | email: 28236114af9c8a4d15c3d878e0de5f82 6 | url: 'https://arthr.me/' 7 | replying_to: '' 8 | hidden: '' 9 | date: '2017-11-24T17:08:43.905Z' 10 | layout: verslag 11 | excerpt_separator: 12 | draft: true 13 | -------------------------------------------------------------------------------- /src/_data/comments/using-jekyll-2017/comment-1511553630734.yml: -------------------------------------------------------------------------------- 1 | _id: 1eff9800-d152-11e7-8079-e9a63ed03f59 2 | _parent: /articles/using-jekyll-2017/ 3 | message: How do you tresspass the CORS message error in your comments? 4 | name: Esporo 5 | email: 5aaa0188add2271ef84a3cc0ed32a83c 6 | url: '' 7 | replying_to: '' 8 | hidden: '' 9 | date: '2017-11-24T20:00:30.734Z' 10 | -------------------------------------------------------------------------------- /src/_data/comments/using-jekyll-2017/comment-1524912555802.yml: -------------------------------------------------------------------------------- 1 | _id: cb0123f0-4ad1-11e8-9d89-87f59e4b29ef 2 | _parent: /articles/using-jekyll-2017/ 3 | message: Great article 4 | name: Jon 5 | email: add550ca15e07b02aa54939b02b79ace 6 | url: '' 7 | replying_to: '' 8 | date: '2018-04-28T10:49:15.801Z' 9 | pageless: true 10 | templateKey: comments 11 | -------------------------------------------------------------------------------- /src/_data/comments/using-jekyll-2017/comment-1528407001776.yml: -------------------------------------------------------------------------------- 1 | _id: ef472d80-6a99-11e8-9030-fbc557955408 2 | _parent: /articles/using-jekyll-2017/ 3 | message: >- 4 | I would like to use jekyll-paginate-v2, but still can't use that plugin on 5 | gh-pages. :( 6 | name: bekti 7 | email: aab48e6b304c0af442701e5ba34198c0 8 | url: 'https://bekti.net' 9 | replying_to: '' 10 | date: '2018-06-07T21:30:01.774Z' 11 | timestamp: 1528407001 12 | -------------------------------------------------------------------------------- /src/_data/comments/using-jekyll-2017/comment-1529069230477.yml: -------------------------------------------------------------------------------- 1 | _id: ce773530-709f-11e8-b0fb-f39dc3e2d59d 2 | _parent: /articles/using-jekyll-2017/ 3 | name: Alastair Cox 4 | email: 4ee7c1a08019673657dd5be6d0bd1b7c 5 | url: '' 6 | message: >- 7 | Cool article. Finally moving on to building bigger sites with Jekyll so always 8 | good to read the lessons of others who got there first. 9 | replying_to: '' 10 | date: '2018-06-15T13:27:10.477Z' 11 | -------------------------------------------------------------------------------- /src/_data/comments/using-jekyll-2017/comment-1533307031563.yml: -------------------------------------------------------------------------------- 1 | _id: b4c26720-972a-11e8-8b4d-27ecd4f7397d 2 | _parent: /articles/using-jekyll-2017/ 3 | name: Mike Jordan 4 | email: cf0d7e5f61f5c9e76818d89be4a0e57f 5 | url: '' 6 | message: This makes me want to use Jekyll. Thanks mate. 7 | replying_to: '' 8 | date: '2018-08-03T14:37:11.563Z' 9 | -------------------------------------------------------------------------------- /src/_data/comments/using-jekyll-2017/comment-1538453831567.yml: -------------------------------------------------------------------------------- 1 | _id: 088e4ec0-c5fa-11e8-a3e5-1590186c2f0d 2 | _parent: /articles/using-jekyll-2017/ 3 | name: Kulbhushan Chand 4 | email: 1718d1928bbcd0938ba7a621e68e5d39 5 | url: 'https://kulbhushan-chand.github.io' 6 | message: >- 7 | Very informative article. Is it possible to follow your path but, use only npm 8 | packages instead of gulp? 9 | replying_to: '' 10 | date: '2018-10-02T04:17:11.566Z' 11 | -------------------------------------------------------------------------------- /src/_data/comments/using-jekyll-2017/comment-1538482151295.yml: -------------------------------------------------------------------------------- 1 | _id: f86ccc50-c63b-11e8-a3e5-1590186c2f0d 2 | _parent: /articles/using-jekyll-2017/ 3 | name: Michael Rose 4 | email: 1ce71bc10b86565464b612093d89707e 5 | url: 'https://mademistakes.com' 6 | message: >- 7 | Sure it's possible, it's all just JavaScript. So if you're comfortable writing 8 | it, it could be done. 9 | replying_to: '10' 10 | date: '2018-10-02T12:09:11.295Z' 11 | -------------------------------------------------------------------------------- /src/_data/comments/watercolor-brush-update/comment-1410929331000.yml: -------------------------------------------------------------------------------- 1 | id: comment-1592631835 2 | date: 2014-09-17T04:48:51Z 3 | updated: 2014-09-17T04:48:51Z 4 | _parent: /mastering-paper/watercolor-brush-update/ 5 | name: Cici 6 | url: '' 7 | message: "Great post, Ty" 8 | avatar: https://disqus.com/api/users/avatars/disqus_v8vpl17TAn.jpg 9 | -------------------------------------------------------------------------------- /src/_data/comments/watercolor-brush-update/comment-1411401026000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '1' 2 | id: comment-1600514089 3 | date: 2014-09-22T15:50:26Z 4 | updated: 2014-09-22T15:50:26Z 5 | _parent: /mastering-paper/watercolor-brush-update/ 6 | name: Michael Rose 7 | url: https://mademistakes.com/ 8 | message: "You're welcome Cici." 9 | email: 1ce71bc10b86565464b612093d89707e 10 | -------------------------------------------------------------------------------- /src/_data/comments/website-tools/comment-1456305172000.yml: -------------------------------------------------------------------------------- 1 | id: 2534032537 2 | date: '2016-02-25T04:12:52' 3 | updated: '' 4 | _parent: /faqs/website-tools/ 5 | name: Anton 6 | url: http://likewhoa.ru 7 | message: "Thank you for your articles! I'm really curious: why don't you use GitHub pages as hosting spot?" 8 | avatar: https://disqus.com/api/users/avatars/antonwhoa.jpg 9 | -------------------------------------------------------------------------------- /src/_data/comments/website-tools/comment-1456306928000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '1' 2 | id: 2534060727 3 | date: '2016-02-25T04:42:08' 4 | updated: '' 5 | _parent: /faqs/website-tools/ 6 | name: Michael Rose 7 | url: https://mademistakes.com/ 8 | message: "I like having the extra control over the server. There are some things you just can't do when you host with GH Pages." 9 | email: 1ce71bc10b86565464b612093d89707e 10 | -------------------------------------------------------------------------------- /src/_data/comments/website-tools/comment-1456338618000.yml: -------------------------------------------------------------------------------- 1 | replying_to: '1' 2 | id: comment-2534548940 3 | date: '2016-02-25T13:30:18' 4 | updated: '' 5 | _parent: /faqs/website-tools/ 6 | name: Anton 7 | url: http://likewhoa.ru 8 | message: "I see. But nothing wrong with it? Kind a SEO or indexing issues? Since I don't need any special control, is it okay to host a website on gh pages? Really appreciate your advice." 9 | avatar: https://disqus.com/api/users/avatars/antonwhoa.jpg 10 | -------------------------------------------------------------------------------- /src/_includes/affiliate-disclosure.html: -------------------------------------------------------------------------------- 1 | Post contains affiliate and/or referral links. For more details read my disclosure policy. 2 | -------------------------------------------------------------------------------- /src/_includes/boilerplate/paperfaces-2.md: -------------------------------------------------------------------------------- 1 | #### Tools used 2 | 3 | - [Pogo Connect Bluetooth Smart Pen](https://www.amazon.com/gp/product/B009K448L4/ref=as_li_ss_tl?ie=UTF8&camp=1789&creative=390957&creativeASIN=B009K448L4&linkCode=as2&tag=mademist-20) 4 | - [Paper for iOS](https://paper.bywetransfer.com/) 5 | -------------------------------------------------------------------------------- /src/_includes/boilerplate/paperfaces-3.md: -------------------------------------------------------------------------------- 1 | #### Tools used 2 | 3 | - [Pencil by FiftyThree](https://www.amazon.com/FiftyThree-Digital-Stylus-Pencil-iPhone/dp/B01JJBUYR4/ref=as_li_ss_tl?keywords=pencil+53&qid=1550586265&s=gateway&sr=8-3&linkCode=ll1&tag=mademist-20&linkId=0134793cb840affff60f2e45a7f64678&language=en_US) 4 | - [Paper for iOS](https://paper.bywetransfer.com/) 5 | -------------------------------------------------------------------------------- /src/_includes/boilerplate/paperfaces-5.md: -------------------------------------------------------------------------------- 1 | #### Tools used 2 | 3 | - [Pencil by FiftyThree](https://www.amazon.com/FiftyThree-Digital-Stylus-Pencil-iPhone/dp/B01JJBUYR4/ref=as_li_ss_tl?keywords=pencil+53&qid=1550586265&s=gateway&sr=8-3&linkCode=ll1&tag=mademist-20&linkId=0134793cb840affff60f2e45a7f64678&language=en_US) 4 | - [Paper for iOS](https://paper.bywetransfer.com/) 5 | - [Lapse It](http://www.lapseit.com/) 6 | -------------------------------------------------------------------------------- /src/_includes/boilerplate/paperfaces.md: -------------------------------------------------------------------------------- 1 | #### Tools used 2 | 3 | - [LunaTik Alloy Touch Pen](https://www.amazon.com/gp/product/B00821TR7G/ref=as_li_ss_tl?ie=UTF8&tag=mademist-20&linkCode=as2&camp=1789&creative=390957&creativeASIN=B00821TR7G) 4 | - [Paper for iOS](https://paper.bywetransfer.com/) 5 | -------------------------------------------------------------------------------- /src/_includes/boilerplate/procreate-2.md: -------------------------------------------------------------------------------- 1 | #### Tools used 2 | 3 | - [Adobe Ink stylus](https://www.amazon.com/Adobe-Creative-Connected-Precision-Stylus/dp/B00LNECVN6/ref=as_li_ss_tl?ie=UTF8&qid=1461688574&sr=8-1&keywords=adobe+ink&linkCode=ll1&tag=mademist-20&linkId=85c30649adf50e2ff0b9c753f6dfe2c9) 4 | - [iPad Air 2](https://en.wikipedia.org/wiki/IPad_Air_2) 5 | - [Procreate](https://procreate.art/) 6 | -------------------------------------------------------------------------------- /src/_includes/boilerplate/procreate-3.md: -------------------------------------------------------------------------------- 1 | #### Tools used 2 | 3 | - [Apple Pencil](https://www.apple.com/apple-pencil/) 4 | - [iPad Pro 12.9" (2nd generation)](https://www.apple.com/ipad-pro/) 5 | - [Procreate](https://procreate.art/) 6 | -------------------------------------------------------------------------------- /src/_includes/google-analytics.html: -------------------------------------------------------------------------------- 1 | 10 | -------------------------------------------------------------------------------- /src/_includes/head-seo.html: -------------------------------------------------------------------------------- 1 | {% seo %} -------------------------------------------------------------------------------- /src/_includes/image__caption.html: -------------------------------------------------------------------------------- 1 |
2 | {{ page.image.caption | markdownify | remove: '

' | remove: '

' }} 3 |
4 | -------------------------------------------------------------------------------- /src/_includes/page__related.html: -------------------------------------------------------------------------------- 1 | 9 | -------------------------------------------------------------------------------- /src/_includes/post-list.html: -------------------------------------------------------------------------------- 1 |
  • {{ post.title | markdownify | remove: '

    ' | remove: '

    ' }}
  • 2 | -------------------------------------------------------------------------------- /src/_includes/posts-all.html: -------------------------------------------------------------------------------- 1 | {% for post in site.posts %} 2 | {% include entry.html %} 3 | {% endfor %} 4 | -------------------------------------------------------------------------------- /src/_includes/scripts.html: -------------------------------------------------------------------------------- 1 | {% if jekyll.environment == 'production' and site.google_analytics %} 2 | {% include_cached google-analytics.html %} 3 | {% endif %} 4 | 5 | {% assign index_js = site.data.js-manifest['index.js'] | default: 'index.js' | prepend: 'assets/javascripts/' | relative_url %} 6 | 7 | 8 | {% include_cached algolia-search-scripts.html %} 9 | -------------------------------------------------------------------------------- /src/_includes/search-form.html: -------------------------------------------------------------------------------- 1 | 2 |
    3 | -------------------------------------------------------------------------------- /src/_includes/skip-links.html: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /src/_layouts/home.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 | 5 |
    6 | {% if page.section %} 7 |
    8 | {% include section.html %} 9 |
    10 | {% endif %} 11 | 12 | {{ content }} 13 |
    14 | -------------------------------------------------------------------------------- /src/_pages/articles.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: archive 3 | permalink: /articles/ 4 | title: &title "Articles" 5 | alt_title: *title 6 | excerpt: &excerpt "A collection of thoughts, inspiration, mistakes, and other long-form minutia I've written. For smaller, more regular tidbits --- peruse the [notes section](/notes/)." 7 | introduction: *excerpt 8 | pagination: 9 | enabled: true 10 | category: articles 11 | date: 2016-08-26 12 | --- 13 | 14 | {% include popular-topics.html %} 15 | -------------------------------------------------------------------------------- /src/_pages/mastering-paper.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: archive 3 | permalink: /mastering-paper/ 4 | title: &title "Mastering Paper for iOS" 5 | alt_title: *title 6 | excerpt: &excerpt "Collection of tutorials written by an avid iPad illustrator to help you master [Paper for iOS](https://www.fiftythree.com/paper)." 7 | introduction: *excerpt 8 | pagination: 9 | enabled: true 10 | category: mastering-paper 11 | date: 2016-08-26 12 | --- 13 | -------------------------------------------------------------------------------- /src/_pages/notes.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: archive 3 | permalink: /notes/ 4 | category: notes 5 | title: &title "Notes" 6 | alt_title: *title 7 | excerpt: &excerpt "Small, bite sized content I've written. For longer, more thorough writing --- peruse the [articles section](/articles)." 8 | introduction: *excerpt 9 | pagination: 10 | enabled: true 11 | category: notes 12 | date: 2016-08-26 13 | --- 14 | 15 | {% include popular-topics.html %} 16 | -------------------------------------------------------------------------------- /src/_pages/work.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: archive_work 3 | permalink: /work/ 4 | category: work 5 | title: "Works" 6 | excerpt: &excerpt "A selection of things I've designed, illustrated, and developed." 7 | introduction: *excerpt 8 | date: 2016-08-26 9 | --- 10 | -------------------------------------------------------------------------------- /src/articles.xml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: atom_feed 3 | category_limit: articles 4 | limit: 25 5 | title: "Articles Feed" 6 | sitemap: false 7 | --- 8 | -------------------------------------------------------------------------------- /src/assets/icons/facebook.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/assets/icons/rss.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/assets/stylesheets/_contact-lists.scss: -------------------------------------------------------------------------------- 1 | /* ========================================================================== 2 | Contact lists 3 | ========================================================================== */ 4 | 5 | .contact-list { 6 | @include list-unstyled; 7 | 8 | .icon { 9 | margin-right: 0.25em; 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/assets/stylesheets/_mixins.scss: -------------------------------------------------------------------------------- 1 | @import "mixins/clearfix"; 2 | @import "mixins/color"; 3 | @import "mixins/float"; 4 | @import "mixins/image"; 5 | @import "mixins/lists"; 6 | @import "mixins/screen-reader"; 7 | @import "mixins/scrim-gradient"; 8 | @import "mixins/text-truncate"; 9 | @import "mixins/vertical-rhythm"; 10 | -------------------------------------------------------------------------------- /src/assets/stylesheets/_pagination.scss: -------------------------------------------------------------------------------- 1 | /* ========================================================================== 2 | Pagination 3 | ========================================================================== */ 4 | 5 | .pagination { 6 | max-width: 35em; 7 | 8 | ul { 9 | display: flex; 10 | flex-wrap: wrap; 11 | justify-content: space-between; 12 | list-style: none; 13 | padding: 0; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /src/assets/stylesheets/_utilities.scss: -------------------------------------------------------------------------------- 1 | @import "utilities/accessibility"; 2 | @import "utilities/align"; 3 | @import "utilities/browser-frame"; 4 | @import "utilities/clearfix"; 5 | @import "utilities/float"; 6 | @import "utilities/lazyload"; 7 | @import "utilities/responsive-video-embed"; 8 | @import "utilities/text"; 9 | @import "utilities/visibility"; 10 | -------------------------------------------------------------------------------- /src/assets/stylesheets/mixins/_clearfix.scss: -------------------------------------------------------------------------------- 1 | /* ========================================================================== 2 | Clearfix Mixin 3 | ========================================================================== */ 4 | 5 | @mixin clearfix() { 6 | &::after { 7 | display: block; 8 | clear: both; 9 | content: ""; 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/assets/stylesheets/mixins/_float.scss: -------------------------------------------------------------------------------- 1 | /* ========================================================================== 2 | Float Mixins 3 | ========================================================================== */ 4 | 5 | @mixin float-left { 6 | float: left !important; 7 | } 8 | 9 | @mixin float-right { 10 | float: right !important; 11 | } 12 | 13 | @mixin float-none { 14 | float: none !important; 15 | } 16 | -------------------------------------------------------------------------------- /src/assets/stylesheets/mixins/_lists.scss: -------------------------------------------------------------------------------- 1 | /* ========================================================================== 2 | List Mixins 3 | ========================================================================== */ 4 | 5 | // Unstyled keeps list items block level, just removes default browser padding and list-style 6 | @mixin list-unstyled { 7 | padding-left: 0; 8 | list-style: none; 9 | } 10 | -------------------------------------------------------------------------------- /src/assets/stylesheets/mixins/_text-truncate.scss: -------------------------------------------------------------------------------- 1 | /* ========================================================================== 2 | Text Truncate Mixin 3 | Requires inline-block or block for proper styling 4 | ========================================================================== */ 5 | 6 | @mixin text-truncate() { 7 | overflow: hidden; 8 | text-overflow: ellipsis; 9 | white-space: nowrap; 10 | } 11 | -------------------------------------------------------------------------------- /src/assets/stylesheets/utilities/_clearfix.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Clearfix 3 | // 4 | 5 | .clearfix { 6 | @include clearfix(); 7 | } 8 | -------------------------------------------------------------------------------- /src/assets/stylesheets/utilities/_float.scss: -------------------------------------------------------------------------------- 1 | /* ========================================================================== 2 | Floats 3 | ========================================================================== */ 4 | 5 | .float-left { 6 | @include float-left; 7 | } 8 | .float-right { 9 | @include float-right; 10 | } 11 | .float-none { 12 | @include float-none; 13 | } 14 | -------------------------------------------------------------------------------- /src/assets/stylesheets/utilities/_lazyload.scss: -------------------------------------------------------------------------------- 1 | /* ========================================================================== 2 | Lazyload 3 | ========================================================================== */ 4 | 5 | .no-js img.lazyload { 6 | display: none; 7 | } 8 | 9 | /* fade image in after load */ 10 | .lazyload, 11 | .lazyloading { 12 | opacity: 0; 13 | } 14 | 15 | .lazyloaded { 16 | opacity: 1; 17 | transition: opacity 300ms; 18 | } 19 | -------------------------------------------------------------------------------- /src/assets/stylesheets/vendor/instantsearch/default/_breadcrumb.scss: -------------------------------------------------------------------------------- 1 | .ais-breadcrumb--label, 2 | .ais-breadcrumb--separator, 3 | .ais-breadcrumb--home { 4 | display: inline; 5 | color: #3369E7; 6 | } 7 | 8 | .ais-breadcrumb--item { 9 | display: inline; 10 | } 11 | 12 | .ais-breadcrumb--disabledLabel { 13 | color: rgb(68, 68, 68); 14 | display: inline; 15 | } 16 | -------------------------------------------------------------------------------- /src/assets/stylesheets/vendor/instantsearch/default/_clear-all.scss: -------------------------------------------------------------------------------- 1 | // sass-lint:disable no-empty-rulesets 2 | @import "../base"; 3 | @import "variables"; 4 | 5 | @include block(clear-all) { 6 | @include element(header) { 7 | /* widget header */ 8 | } 9 | 10 | @include element(body) { 11 | /* widget body */ 12 | } 13 | 14 | @include element(link) { 15 | /* widget link */ 16 | } 17 | 18 | @include element(footer) { 19 | /* widget footer */ 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/assets/stylesheets/vendor/instantsearch/default/_header-footer.scss: -------------------------------------------------------------------------------- 1 | .ais-root__collapsible .ais-header { 2 | cursor: pointer; 3 | } 4 | 5 | .ais-root__collapsed .ais-body, .ais-root__collapsed .ais-footer { 6 | display: none; 7 | } 8 | -------------------------------------------------------------------------------- /src/assets/stylesheets/vendor/instantsearch/default/_hits.scss: -------------------------------------------------------------------------------- 1 | // sass-lint:disable no-empty-rulesets 2 | @import "../base"; 3 | @import "variables"; 4 | 5 | @include block(hits) { 6 | @include modifier(empty) { 7 | /* empty container */ 8 | } 9 | @include element(item) { 10 | /* hit item */ 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /src/assets/stylesheets/vendor/instantsearch/default/_sort-by-selector.scss: -------------------------------------------------------------------------------- 1 | // sass-lint:disable no-empty-rulesets 2 | @import "../base"; 3 | @import "variables"; 4 | 5 | @include block(sort-by-selector) { 6 | @include element(item) { 7 | /* selector item */ 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/assets/stylesheets/vendor/instantsearch/default/_stats.scss: -------------------------------------------------------------------------------- 1 | // sass-lint:disable no-empty-rulesets 2 | @import "../base"; 3 | @import "variables"; 4 | 5 | @include block(stats) { 6 | @include element(header) { 7 | /* widget header */ 8 | } 9 | @include element(body) { 10 | /* widget body */ 11 | } 12 | @include element(time) { 13 | /* processing time */ 14 | } 15 | @include element(footer) { 16 | /* widget footer */ 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /src/assets/stylesheets/vendor/instantsearch/default/_variables.scss: -------------------------------------------------------------------------------- 1 | $white: #FFFFFF; 2 | $gray-light: #F3F4F7; 3 | $blue-dark: #1F3B5D; 4 | $blue-light: #46AEDA; 5 | -------------------------------------------------------------------------------- /src/assets/stylesheets/vendor/instantsearch/instantsearch-theme-algolia.scss: -------------------------------------------------------------------------------- 1 | @import 'theme/base'; 2 | -------------------------------------------------------------------------------- /src/assets/stylesheets/vendor/instantsearch/theme/_menu-select.scss: -------------------------------------------------------------------------------- 1 | select.ais-menu-select--select { // sass-lint:disable-line no-qualifying-elements 2 | @extend select.ais-hits-per-page-selector; // sass-lint:disable-line no-qualifying-elements 3 | } 4 | -------------------------------------------------------------------------------- /src/assets/stylesheets/vendor/instantsearch/theme/_numeric-selector.scss: -------------------------------------------------------------------------------- 1 | select.ais-numeric-selector { // sass-lint:disable-line no-qualifying-elements 2 | @extend select.ais-hits-per-page-selector; // sass-lint:disable-line no-qualifying-elements 3 | } 4 | -------------------------------------------------------------------------------- /src/assets/stylesheets/vendor/instantsearch/theme/_range-slider.scss: -------------------------------------------------------------------------------- 1 | .ais-range-slider { 2 | &--handle { 3 | border: 1px solid $blue; 4 | } 5 | 6 | .rheostat-progress { 7 | background-color: $blue !important; 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/assets/stylesheets/vendor/instantsearch/theme/_sort-by-selector.scss: -------------------------------------------------------------------------------- 1 | select.ais-sort-by-selector { // sass-lint:disable-line no-qualifying-elements 2 | @extend select.ais-hits-per-page-selector; // sass-lint:disable-line no-qualifying-elements 3 | } 4 | -------------------------------------------------------------------------------- /src/assets/stylesheets/vendor/instantsearch/theme/_star-rating.scss: -------------------------------------------------------------------------------- 1 | .ais-star-rating { 2 | &--item { 3 | @extend .ais-current-refined-values--item; 4 | } 5 | 6 | &--link { 7 | @extend .ais-current-refined-values--link; 8 | } 9 | 10 | &--count { 11 | @extend .ais-current-refined-values--count; 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /src/assets/stylesheets/vendor/instantsearch/theme/_stats.scss: -------------------------------------------------------------------------------- 1 | .ais-stats { 2 | color: $grey; 3 | font-size: $font-size + 2px; 4 | opacity: .6; 5 | } 6 | -------------------------------------------------------------------------------- /src/assets/stylesheets/vendor/instantsearch/theme/_toggle.scss: -------------------------------------------------------------------------------- 1 | .ais-toggle { 2 | &--item { 3 | @extend .ais-current-refined-values--item; 4 | 5 | &__active { 6 | font-weight: bold; 7 | } 8 | } 9 | 10 | &--label { 11 | @extend .ais-refinement-list--label; 12 | } 13 | 14 | &--count { 15 | @extend .ais-current-refined-values--count; 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /src/assets/stylesheets/vendor/instantsearch/theme/_variables.scss: -------------------------------------------------------------------------------- 1 | // +--------+ 2 | // | LAYOUT | 3 | // +--------+ 4 | $border-radius: 4px; 5 | $font-size: 12px; 6 | 7 | // +--------+ 8 | // | COLORS | 9 | // +--------+ 10 | $white: #FFFFFF; 11 | $black: #000000; 12 | $light-blue: #3E82F7; 13 | $blue: #3369E7; 14 | $dark-blue: #184ECD; 15 | $grey: #697782; 16 | -------------------------------------------------------------------------------- /src/atom.xml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: atom_feed 3 | limit: 25 4 | title: "Feed" 5 | sitemap: false 6 | --- 7 | -------------------------------------------------------------------------------- /src/browserconfig.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | #000000 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /src/feed.json: -------------------------------------------------------------------------------- 1 | --- 2 | layout: json_feed 3 | limit: 25 4 | title: "Feed" 5 | sitemap: false 6 | --- 7 | -------------------------------------------------------------------------------- /src/mastering-paper.xml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: atom_feed 3 | category_limit: mastering-paper 4 | limit: 25 5 | title: "Mastering Paper for iOS Feed" 6 | sitemap: false 7 | --- 8 | -------------------------------------------------------------------------------- /src/notes.xml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: atom_feed 3 | category_limit: notes 4 | limit: 25 5 | title: "Notes Feed" 6 | sitemap: false 7 | --- 8 | -------------------------------------------------------------------------------- /src/paperfaces.xml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: atom_feed 3 | category_limit: paperfaces 4 | limit: 25 5 | title: "PaperFaces Feed" 6 | sitemap: false 7 | --- 8 | -------------------------------------------------------------------------------- /src/procreate-paintings.xml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: atom_feed 3 | category_limit: procreate-paintings 4 | limit: 25 5 | title: "Procreate Paintings Feed" 6 | sitemap: false 7 | --- 8 | -------------------------------------------------------------------------------- /src/robots.txt: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | User-agent: * 4 | Disallow: /cdn-cgi/ 5 | Sitemap: {{ site.url }}/sitemap.xml 6 | --------------------------------------------------------------------------------