{"id":1276,"date":"2020-02-13T17:06:32","date_gmt":"2020-02-13T22:06:32","guid":{"rendered":"http:\/\/newmediaproduction.mynmi.net\/?page_id=1276"},"modified":"2022-02-09T21:03:43","modified_gmt":"2022-02-09T21:03:43","slug":"study-like-an-artist","status":"publish","type":"page","link":"https:\/\/nmi.cool\/web\/study-like-an-artist\/","title":{"rendered":"Study like an artist"},"content":{"rendered":"\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1353\" height=\"1277\" src=\"https:\/\/nmi.cool\/newmediaproduction\/wp-content\/uploads\/sites\/3\/2020\/01\/photo-1459908676235-d5f02a50184b.jpeg\" alt=\"Paintbrushes and art supplies on table\" class=\"wp-image-1277\" srcset=\"https:\/\/nmi.cool\/web\/wp-content\/uploads\/sites\/3\/2020\/01\/photo-1459908676235-d5f02a50184b.jpeg 1353w, https:\/\/nmi.cool\/web\/wp-content\/uploads\/sites\/3\/2020\/01\/photo-1459908676235-d5f02a50184b-300x283.jpeg 300w, https:\/\/nmi.cool\/web\/wp-content\/uploads\/sites\/3\/2020\/01\/photo-1459908676235-d5f02a50184b-1024x966.jpeg 1024w, https:\/\/nmi.cool\/web\/wp-content\/uploads\/sites\/3\/2020\/01\/photo-1459908676235-d5f02a50184b-768x725.jpeg 768w\" sizes=\"auto, (max-width: 1353px) 100vw, 1353px\" \/><figcaption>Photo by <a href=\"https:\/\/unsplash.com\/photos\/KR84RpMCb0w\">Khara Woods<\/a><\/figcaption><\/figure>\n\n\n\n<p>When you&#8217;re learning a new skill\u2014like, say, oh, I don&#8217;t know, front-end web development\u2014, it can be immensely useful to conduct artist&#8217;s studies along the way. What&#8217;s an artist&#8217;s study?<\/p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\"><p>In art, a study is a drawing, sketch or painting <span style=\"font-weight:bold\">done in preparation for a finished piece<\/span>, or as visual notes. Studies are often used <span style=\"font-weight:bold\">to understand the problems involved<\/span> in rendering subjects and <span style=\"font-weight:bold\">to plan the elements to be used in finished works<\/span>, such as light, color, form, perspective and composition.<\/p><cite>https:\/\/en.wikipedia.org\/wiki\/Study_(art)<\/cite><\/blockquote>\n\n\n\n<p>In this course, a study is a small exercise you undertake simply for the goal of better understanding a thing you&#8217;re learning. It&#8217;s informal and directed by your curiosity.<\/p>\n\n\n\n<p>Let&#8217;s work through an example together. Let&#8217;s say that you&#8217;re interested in learning more about styling text with CSS. Maybe you&#8217;ve completed a few <a href=\"http:\/\/nmi.cool\/newmediaproduction\/free-code-camp-assignments\/\">FreeCodeCamp lessons<\/a>, or maybe you&#8217;re getting ready to start work on <a href=\"http:\/\/nmi.cool\/newmediaproduction\/artisanal-hand-crafted-small-batch-locally-sourced-bespoke-website\/\">Project One<\/a>.<\/p>\n\n\n\n<p>For this study, let&#8217;s spin up a little throwaway project folder, called <code>scratch<\/code>. You can save this on your Desktop, in your Dropbox, wherever. Since you&#8217;ll likely just delete it when you&#8217;re done, it doesn&#8217;t really matter.<\/p>\n\n\n\n<p>In your new <code>scratch<\/code> folder, make a second folder called <code>css<\/code>. Then, fire up Visual Studio Code, create a new file, and save it as <code>index.html<\/code> inside your <code>scratch<\/code> folder. Then, open up a vertical split view, and in your right pane, create another new file, this one named <code>style.css<\/code>, and save it in your <code>css<\/code> folder within your <code>scratch<\/code> folder. Finally, back in your <code>index.html<\/code>, use the html5 Intellisense complete to drop in your HTML boilerplate. Finally, add <code>&lt;link href=\"css\/style.css\" rel=\"stylesheet\"&gt;<\/code> to your <code>&lt;head&gt;<\/code> to link your stylesheet to your HTML file. When you&#8217;re done, you&#8217;ll see something like this:<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"2492\" height=\"1696\" src=\"https:\/\/nmi.cool\/newmediaproduction\/wp-content\/uploads\/sites\/3\/2020\/02\/Screen-Shot-2020-02-13-at-4.46.12-PM.png\" alt=\"Visual Studio Code screenshot\" class=\"wp-image-1473\" srcset=\"https:\/\/nmi.cool\/web\/wp-content\/uploads\/sites\/3\/2020\/02\/Screen-Shot-2020-02-13-at-4.46.12-PM.png 2492w, https:\/\/nmi.cool\/web\/wp-content\/uploads\/sites\/3\/2020\/02\/Screen-Shot-2020-02-13-at-4.46.12-PM-300x204.png 300w, https:\/\/nmi.cool\/web\/wp-content\/uploads\/sites\/3\/2020\/02\/Screen-Shot-2020-02-13-at-4.46.12-PM-1024x697.png 1024w, https:\/\/nmi.cool\/web\/wp-content\/uploads\/sites\/3\/2020\/02\/Screen-Shot-2020-02-13-at-4.46.12-PM-768x523.png 768w, https:\/\/nmi.cool\/web\/wp-content\/uploads\/sites\/3\/2020\/02\/Screen-Shot-2020-02-13-at-4.46.12-PM-1536x1045.png 1536w, https:\/\/nmi.cool\/web\/wp-content\/uploads\/sites\/3\/2020\/02\/Screen-Shot-2020-02-13-at-4.46.12-PM-2048x1394.png 2048w, https:\/\/nmi.cool\/web\/wp-content\/uploads\/sites\/3\/2020\/02\/Screen-Shot-2020-02-13-at-4.46.12-PM-1568x1067.png 1568w\" sizes=\"auto, (max-width: 2492px) 100vw, 2492px\" \/><\/figure>\n\n\n\n<p>Let&#8217;s throw in a couple paragraphs of <a href=\"https:\/\/hipsum.co\">hipster ipsum<\/a>, so that we have this:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;!DOCTYPE html&gt;\n&lt;html lang=\"en\"&gt;\n&lt;head&gt;\n    &lt;meta charset=\"UTF-8\"&gt;\n    &lt;meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"&gt;\n    &lt;meta http-equiv=\"X-UA-Compatible\" content=\"ie=edge\"&gt;\n    &lt;title&gt;Document&lt;\/title&gt;\n&lt;\/head&gt;\n&lt;body&gt;\n    &lt;p&gt;Lorem ipsum dolor amet biodiesel pickled whatever, butcher echo park lumbersexual raclette drinking vinegar salvia brooklyn sriracha freegan. Photo booth trust fund small batch palo santo disrupt kombucha pickled plaid. Succulents portland blue bottle, live-edge austin selvage food truck literally squid mumblecore. Cloud bread twee swag, meggings tbh kale chips whatever activated charcoal.&lt;\/p&gt;\n    &lt;p&gt;Trust fund whatever DIY edison bulb YOLO mlkshk, vinyl photo booth cold-pressed. Yuccie YOLO food truck gluten-free, banh mi man braid poke mustache try-hard cold-pressed listicle woke. Pinterest cold-pressed blue bottle meditation vegan godard, fanny pack humblebrag offal edison bulb wayfarers seitan tilde keffiyeh.&lt;\/p&gt;\n&lt;\/body&gt;\n&lt;\/html&gt;<\/code><\/pre>\n\n\n\n<p>Now that we have our materials set out, so to speak, it&#8217;s time to start playing around. <em>Disciplined play<\/em> is an essential component of a study. <em>Pla<\/em>y in the sense of relaxed, unconstrained, and curious, <em>disciplined<\/em> in the sense of careful, diligent attention to what you&#8217;re doing.<\/p>\n\n\n\n<p>What might your next steps be?<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>Apply anything related to text-styling from FreeCodeCamp<\/li><li>Google &#8220;CSS text styles&#8221; and try what you find, especially maybe with resources from w3schools or MDN<\/li><li>Try some things we discussed in class<\/li><li>See if you can achieve a particular design goal\u2014something like &#8220;24-pt monospaced bold text in a dark blue color against a translucent pale blue background with a line-height of 30px and a maximum of 80 characters per line in paragraphs that are left-aligned, centered on the page, have some margin between each paragraph, have a bit of padding within each paragraph, and that have rounded corners.&#8221; You know, something that will look like this:<\/li><\/ul>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"2098\" height=\"1110\" src=\"https:\/\/nmi.cool\/newmediaproduction\/wp-content\/uploads\/sites\/3\/2020\/02\/Screen-Shot-2020-02-13-at-5.01.13-PM.png\" alt=\"Paragraphs styled as described\" class=\"wp-image-1475\" srcset=\"https:\/\/nmi.cool\/web\/wp-content\/uploads\/sites\/3\/2020\/02\/Screen-Shot-2020-02-13-at-5.01.13-PM.png 2098w, https:\/\/nmi.cool\/web\/wp-content\/uploads\/sites\/3\/2020\/02\/Screen-Shot-2020-02-13-at-5.01.13-PM-300x159.png 300w, https:\/\/nmi.cool\/web\/wp-content\/uploads\/sites\/3\/2020\/02\/Screen-Shot-2020-02-13-at-5.01.13-PM-1024x542.png 1024w, https:\/\/nmi.cool\/web\/wp-content\/uploads\/sites\/3\/2020\/02\/Screen-Shot-2020-02-13-at-5.01.13-PM-768x406.png 768w, https:\/\/nmi.cool\/web\/wp-content\/uploads\/sites\/3\/2020\/02\/Screen-Shot-2020-02-13-at-5.01.13-PM-1536x813.png 1536w, https:\/\/nmi.cool\/web\/wp-content\/uploads\/sites\/3\/2020\/02\/Screen-Shot-2020-02-13-at-5.01.13-PM-2048x1084.png 2048w, https:\/\/nmi.cool\/web\/wp-content\/uploads\/sites\/3\/2020\/02\/Screen-Shot-2020-02-13-at-5.01.13-PM-1568x830.png 1568w\" sizes=\"auto, (max-width: 2098px) 100vw, 2098px\" \/><\/figure>\n\n\n\n<p>As you work through any or all of the above, some key principles to keep in mind:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>Change only one variable at a time. You&#8217;re a scientist, trying to isolate and understand each ingredient in your formula.<\/li><li>Predict your outcomes before verifying them. That is, add a single CSS style, save your CSS stylesheet, and then pause. Think about what effect you imagine the style will have on your HTML, and only then go to your browser to see if you were correct.<\/li><li>The Inspector is a great friend in trying to figure out why your predictions aren&#8217;t coming true.<\/li><\/ul>\n\n\n\n<p>The specific study workflow detailed above can be generally translated to anything: customizing a Bootstrap theme, trying new plugins in WordPress, etc.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>When you&#8217;re learning a new skill\u2014like, say, oh, I don&#8217;t know, front-end web development\u2014, it can be immensely useful to conduct artist&#8217;s studies along the way. What&#8217;s an artist&#8217;s study? In art, a study is a drawing, sketch or painting done in preparation for a finished piece, or as visual notes. Studies are often used &hellip; <a href=\"https:\/\/nmi.cool\/web\/study-like-an-artist\/\" class=\"more-link\">Continue reading <span class=\"screen-reader-text\">Study like an artist<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-1276","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/nmi.cool\/web\/wp-json\/wp\/v2\/pages\/1276","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/nmi.cool\/web\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/nmi.cool\/web\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/nmi.cool\/web\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/nmi.cool\/web\/wp-json\/wp\/v2\/comments?post=1276"}],"version-history":[{"count":3,"href":"https:\/\/nmi.cool\/web\/wp-json\/wp\/v2\/pages\/1276\/revisions"}],"predecessor-version":[{"id":3415,"href":"https:\/\/nmi.cool\/web\/wp-json\/wp\/v2\/pages\/1276\/revisions\/3415"}],"wp:attachment":[{"href":"https:\/\/nmi.cool\/web\/wp-json\/wp\/v2\/media?parent=1276"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}