In [15]:
import requests
import json
In [16]:
webArt = ('http://artcontrol.me/?wpapi=search&dev=1&keyword=post&count=2&page=1&content=1')
In [17]:
dawArt = requests.get(webArt)
In [18]:
jawArt = json.loads(dawArt.text)
print jawArt
{u'status': u'ok', u'count': u'2', u'count_total': 10, u'posts': [{u'status': u'publish', u'category': [], u'name': u'api', u'parent': u'0', u'title': u'API', u'url': u'http://artcontrol.me/?page_id=5256', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"artcontrol.me uses the wp-api RESTful API system. You can find a github repo that uses this data in IPython notebook here\r\n\r\nHere's an example of the", u'modified': u'2013-10-18 04:12:48', u'slug': u'API', u'content': u'artcontrol.me uses the wp-api RESTful API system. You can find a github repo that uses this data in IPython notebook <a href="https://github.com/wcmckee/artcontrol-api">here</a>\r\n\r\nHere\'s an example of the documentation:\r\n<table class="widefat">\r\n<thead>\r\n<tr>\r\n<th width="100">Method</th>\r\n<th width="200">Description</th>\r\n<th>arguments</th>\r\n</tr>\r\n</thead>\r\n<tfoot>\r\n<tr>\r\n<th width="100">Method</th>\r\n<th width="200">Description</th>\r\n<th>arguments</th>\r\n</tr>\r\n</tfoot>\r\n<tbody>\r\n<tr>\r\n<td><code><a id="i_p"></a>get_posts</code></td>\r\n<td id="p">Call this method to get the recent posts/pages or specify the post/page id to get the specified post information.</td>\r\n<td id="p2">argument: <b>dev</b> (optional)\r\nvalue: <b>1</b> >> pretty output in browser\r\nvalue: <b>0</b> >> default json format to use in your program\r\nexample: <a href="http://artcontrol.me/?wpapi=get_posts&dev=1" target="_blank">http://artcontrol.me/?wpapi=get_posts&<b>dev=1</b></a>\r\n\r\n<hr />\r\n\r\nargument: <b>id</b> (optional)\r\nvalue: <b>post or page id</b> >> show information about the specified post\r\nexample: <a href="http://artcontrol.me/?wpapi=get_posts&dev=1&id=1" target="_blank">http://artcontrol.me/?wpapi=get_posts&dev=1&<b>id=1</b></a>\r\n\r\n<hr />\r\n\r\nargument: <b>count</b> (optional)\r\nvalue: <b>number of items per page</b> >> specify the number of post items to be returned.\r\n\r\nargument: <b>page</b> (optional)\r\nvalue: <b>page number</b> >> if <i>count</i> is set, use the <i>page</i> argument to move forward through the rest of the items.\r\n\r\nexample: <a href="http://artcontrol.me/?wpapi=get_posts&dev=1&count=2&page=1" target="_blank">http://artcontrol.me/?wpapi=get_posts&dev=1&<b>count=2</b>&<b>page=1</b></a>\r\n\r\n<hr />\r\n\r\nargument: <b>comment</b> (optional)\r\nvalue: <b>1</b> >> Return comments if available\r\nvalue: <b>0</b> >> Don\'t return comments\r\n\r\nargument: <b>content</b> (optional)\r\nvalue: <b>1</b> >> Return the content\r\nvalue: <b>0</b> >> Don\'t return the content\r\n\r\nexample: <a href="http://artcontrol.me/?wpapi=get_posts&dev=1&comment=1&content=1" target="_blank">http://artcontrol.me/?wpapi=get_posts&dev=1&<b>comment=1</b>&<b>content=1</b></a></td>\r\n</tr>\r\n<tr>\r\n<td><code><a id="i_t"></a>get_tags</code></td>\r\n<td id="t">Call this method to retrieve all tag information</td>\r\n<td id="t2">argument: <b>dev</b> (optional) Read more about it in <i>get_posts</i> method\r\nargument: <b>count</b> (optional) Read more about it in <i>get_posts</i> method\r\nargument: <b>page</b> (optional) Read more about it in <i>get_posts</i> method\r\nexample: <a href="http://artcontrol.me/?wpapi=get_tags&dev=1" target="_blank">http://artcontrol.me/?wpapi=get_tags&dev=1</a>\r\n\r\n<hr />\r\n\r\nargument: <b>id</b> (optional)\r\nvalue: <b>tag id</b> >> return information about the specified tag\r\nexample: <a href="http://artcontrol.me/?wpapi=get_tags&dev=1&id=1" target="_blank">http://artcontrol.me/?wpapi=get_tags&dev=1&<b>id=1</b></a>\r\n\r\n<hr />\r\n\r\nargument: <b>cat</b> (optional)\r\nvalue: <b>1</b> >> returns those tags with taxonomy of category\r\nvalue: <b>0</b> >> does not return tags with taxonomy of category\r\n\r\nargument: <b>tag</b> (optional)\r\nvalue: <b>1</b> >> returns normal tags\r\nvalue: <b>0</b> >> does not return normal tags\r\n\r\nexample: <a href="http://artcontrol.me/?wpapi=get_tags&dev=1&cat=1&tag=1" target="_blank">http://artcontrol.me/?wpapi=get_tags&dev=1&<b>cat=1</b>&<b>tag=1</b></a></td>\r\n</tr>\r\n<tr>\r\n<td><code><a id="i_a"></a>get_author</code></td>\r\n<td id="a">Call this method to retrieve information about authors registered in the wordpress blog</td>\r\n<td id="a2">argument: <b>dev</b> (optional) Read more about it in <i>get_posts</i> method\r\nargument: <b>count</b> (optional) Read more about it in <i>get_posts</i> method\r\nargument: <b>page</b> (optional) Read more about it in <i>get_posts</i> method\r\nexample: <a href="http://artcontrol.me/?wpapi=get_author&dev=1" target="_blank">http://artcontrol.me/?wpapi=get_author&dev=1</a>\r\n\r\n<hr />\r\n\r\nargument: <b>id</b> (optional)\r\nvalue: <b>author id</b> >> return information about the specified author\r\nexample: <a href="http://artcontrol.me/?wpapi=get_author&dev=1&id=1" target="_blank">http://artcontrol.me/?wpapi=get_author&dev=1&<b>id=1</b></a></td>\r\n</tr>\r\n<tr>\r\n<td><code><a id="i_g"></a>gravatar</code></td>\r\n<td id="g">Call this method to connect to the gravatar api and retrieve the gravatar based on the email address you specify.</td>\r\n<td id="g2">argument: <b>dev</b> (optional) Read more about it in <i>get_posts</i> method\r\nexample: <a href="http://artcontrol.me/?wpapi=gravatar&dev=1" target="_blank">http://artcontrol.me/?wpapi=gravatar&dev=1</a>\r\n\r\n<hr />\r\n\r\nargument: <b>email</b> (required)\r\nvalue: <b>standard email address</b> >> the email address to found its gravatar\r\n\r\nargument: <b>size</b> (optional)\r\nvalue: <b>size of the gravatar in pixel</b> >> size of the returned gravatar image, default value is 100 which means the returned gravatar image will be 100X100 pixel\r\n\r\nexample: <a href="http://artcontrol.me/?wpapi=gravatar&dev=1&email=email@site.com&size=200" target="_blank">http://artcontrol.me/?wpapi=gravatar&dev=1&<b>email=email@site.com</b>&<b>size=200</b></a></td>\r\n</tr>\r\n<tr>\r\n<td><code><a id="i_s"></a>search</code></td>\r\n<td id="s">Call this method and pass <i>keyword</i> argument to return the search results.</td>\r\n<td id="s2">argument: <b>dev</b> (optional) Read more about it in <i>get_posts</i> method\r\nargument: <b>count</b> (optional) Read more about it in <i>get_posts</i> method\r\nargument: <b>page</b> (optional) Read more about it in <i>get_posts</i> method\r\nargument: <b>comment</b> (optional) Read more about it in <i>get_posts</i> method\r\nargument: <b>content</b> (optional) Read more about it in <i>get_posts</i> method\r\nexample: <a href="http://artcontrol.me/?wpapi=search&dev=1&keyword=post&count=2&page=1&content=1&comment=1" target="_blank">http://artcontrol.me/?wpapi=search&dev=1&keyword=post&<b>count=2</b>&<b>page=1</b>&<b>content=1</b>&<b>comment=1</b></a>\r\n\r\n<hr />\r\n\r\nargument: <b>keyword</b> (required)\r\nvalue: <b>search string</b> >> the keyword to be searched.\r\nexample: <a href="http://artcontrol.me/?wpapi=search&dev=1&keyword=something" target="_blank">http://artcontrol.me/?wpapi=search&dev=1&<b>keyword=something</b></a></td>\r\n</tr>\r\n<tr>\r\n<td><code><a id="i_c"></a>comment</code></td>\r\n<td id="c">Call this method to submit a comment on a post.</td>\r\n<td id="c2">argument: <b>dev</b> (optional) Read more about it in <i>get_posts</i> method\r\nexample: <a href="http://artcontrol.me/?wpapi=comment&dev=1" target="_blank">http://artcontrol.me/?wpapi=comment&dev=1</a>\r\n\r\n<hr />\r\n\r\nargument: <b>name</b> (required)\r\nvalue: <b>author name</b> >> name of the person who\'s leaving the comment\r\n\r\nargument: <b>email</b> (required)\r\nvalue: <b>author email address</b> >> email address of the person who\'s leaving the comment\r\n\r\nargument: <b>content</b> (required)\r\nvalue: <b>comment content</b> >> content of the comment\r\n\r\nargument: <b>post_id</b> (required)\r\nvalue: <b>post id</b> >> id of the post which you are submitting your comment to\r\n\r\nexample: <a href="http://artcontrol.me/?wpapi=comment&dev=1&name=Hadi&email=email@site.com&content=some%20content%20to%20comment&post_id=1" target="_blank">http://artcontrol.me/?wpapi=comment&dev=1&<b>name=Hadi</b>&<b>email=email@site.com</b>&<b>content=some content to comment</b>&<b>post_id=1</b></a>\r\n\r\n<hr />\r\n\r\nargument: <b>website</b> (optional)\r\nvalue: <b>www.your-site.com</b> >> Optionally you can pass author\'s website\r\n\r\nargument: <b>parent</b> (optional)</td>\r\n</tr>\r\n</tbody>\r\n</table>', u'comment_count': u'0', u'tag': [], u'date': u'2013-10-16 21:57:06', u'type': u'page', u'id': u'5256', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'82', u'name': u'draw', u'parent': u'0', u'term_id': u'7', u'cat_ID': u'7', u'category_description': u'', u'category_parent': u'0', u'object_id': u'5195', u'cat_name': u'draw', u'category_count': u'82', u'term_taxonomy_id': u'7', u'taxonomy': u'category', u'category_nicename': u'draw', u'slug': u'draw', u'description': u''}], u'name': u'ludum-dare-pencil-sketches', u'parent': u'0', u'title': u'Ludum Dare Pencil Sketches', u'url': u'http://artcontrol.me/?p=5195', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"Here's thress pencil sketches that I've done recently.\xa0\r\n\r\nThis is the view from outside my home. I was racing around on my Fathers hand wheel chair and decided to draw the", u'modified': u'2013-08-23 07:15:23', u'slug': u'Ludum Dare Pencil Sketches', u'content': u'Here\'s thress pencil sketches that I\'ve done recently.\xa0<a href="http://artcontrol.me/wp-content/uploads/2013/08/DSC_0708.jpg"><img class="aligncenter size-large wp-image-5196" alt="DSC_0708" src="http://artcontrol.me/wp-content/uploads/2013/08/DSC_0708-628x1024.jpg" width="625" height="1019" /></a>\r\n\r\nThis is the view from outside my home. I was racing around on my Fathers hand wheel chair and decided to draw the view. A fold up chair would be handy as I\'m always having to draw scenes that involve a seat!\r\n<a href="http://artcontrol.me/wp-content/uploads/2013/08/DSC_0710.jpg"><img class="aligncenter size-large wp-image-5198" alt="DSC_0710" src="http://artcontrol.me/wp-content/uploads/2013/08/DSC_0710-682x1024.jpg" width="625" height="938" /></a>\r\n\r\nI have been using a 2h pencil. It\'s a wonderful pencil and I could not go back to HB. No smudging, and takes awhile to blunt - shading still works alright with it.\r\n\r\nThis was drawn well walking down the road - starting sketching ideas for Ludum Dare - but ended up writing down ideas for a podcast I\'d like to start with my friend Matt. I don\'t know if it will go ahead because Matt is very unreliable - I might be better to just organize something myself.\r\n\r\n<a href="http://artcontrol.me/wp-content/uploads/2013/08/DSC_0712.jpg"><img class="aligncenter size-large wp-image-5199" alt="DSC_0712" src="http://artcontrol.me/wp-content/uploads/2013/08/DSC_0712-e1377179011767-632x1024.jpg" width="625" height="1012" /></a>Sitting outside the library. Again - another Ludum Dare logo, this time I sketched the lamppost and large pillar - adding in clouds, figure and tree.\r\n\r\n ', u'comment_count': u'0', u'tag': {u'10': {u'term_group': u'0', u'count': u'34', u'name': u'pencil', u'parent': u'0', u'term_id': u'10', u'object_id': u'5195', u'term_taxonomy_id': u'10', u'taxonomy': u'post_tag', u'slug': u'pencil', u'description': u''}, u'110': {u'term_group': u'0', u'count': u'14', u'name': u'Street', u'parent': u'0', u'term_id': u'110', u'object_id': u'5195', u'term_taxonomy_id': u'114', u'taxonomy': u'post_tag', u'slug': u'street', u'description': u''}, u'84': {u'term_group': u'0', u'count': u'26', u'name': u'levin', u'parent': u'0', u'term_id': u'84', u'object_id': u'5195', u'term_taxonomy_id': u'86', u'taxonomy': u'post_tag', u'slug': u'levin', u'description': u''}}, u'date': u'2013-08-23 07:15:23', u'type': u'post', u'id': u'5195', u'comment_status': u'open'}], u'currPage': 1, u'pages': 5}
In [19]:
lodArt = jawArt['posts']
In [20]:
print lodArt[1]
{u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'82', u'name': u'draw', u'parent': u'0', u'term_id': u'7', u'cat_ID': u'7', u'category_description': u'', u'category_parent': u'0', u'object_id': u'5195', u'cat_name': u'draw', u'category_count': u'82', u'term_taxonomy_id': u'7', u'taxonomy': u'category', u'category_nicename': u'draw', u'slug': u'draw', u'description': u''}], u'name': u'ludum-dare-pencil-sketches', u'parent': u'0', u'title': u'Ludum Dare Pencil Sketches', u'url': u'http://artcontrol.me/?p=5195', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"Here's thress pencil sketches that I've done recently.\xa0\r\n\r\nThis is the view from outside my home. I was racing around on my Fathers hand wheel chair and decided to draw the", u'modified': u'2013-08-23 07:15:23', u'slug': u'Ludum Dare Pencil Sketches', u'content': u'Here\'s thress pencil sketches that I\'ve done recently.\xa0<a href="http://artcontrol.me/wp-content/uploads/2013/08/DSC_0708.jpg"><img class="aligncenter size-large wp-image-5196" alt="DSC_0708" src="http://artcontrol.me/wp-content/uploads/2013/08/DSC_0708-628x1024.jpg" width="625" height="1019" /></a>\r\n\r\nThis is the view from outside my home. I was racing around on my Fathers hand wheel chair and decided to draw the view. A fold up chair would be handy as I\'m always having to draw scenes that involve a seat!\r\n<a href="http://artcontrol.me/wp-content/uploads/2013/08/DSC_0710.jpg"><img class="aligncenter size-large wp-image-5198" alt="DSC_0710" src="http://artcontrol.me/wp-content/uploads/2013/08/DSC_0710-682x1024.jpg" width="625" height="938" /></a>\r\n\r\nI have been using a 2h pencil. It\'s a wonderful pencil and I could not go back to HB. No smudging, and takes awhile to blunt - shading still works alright with it.\r\n\r\nThis was drawn well walking down the road - starting sketching ideas for Ludum Dare - but ended up writing down ideas for a podcast I\'d like to start with my friend Matt. I don\'t know if it will go ahead because Matt is very unreliable - I might be better to just organize something myself.\r\n\r\n<a href="http://artcontrol.me/wp-content/uploads/2013/08/DSC_0712.jpg"><img class="aligncenter size-large wp-image-5199" alt="DSC_0712" src="http://artcontrol.me/wp-content/uploads/2013/08/DSC_0712-e1377179011767-632x1024.jpg" width="625" height="1012" /></a>Sitting outside the library. Again - another Ludum Dare logo, this time I sketched the lamppost and large pillar - adding in clouds, figure and tree.\r\n\r\n ', u'comment_count': u'0', u'tag': {u'10': {u'term_group': u'0', u'count': u'34', u'name': u'pencil', u'parent': u'0', u'term_id': u'10', u'object_id': u'5195', u'term_taxonomy_id': u'10', u'taxonomy': u'post_tag', u'slug': u'pencil', u'description': u''}, u'110': {u'term_group': u'0', u'count': u'14', u'name': u'Street', u'parent': u'0', u'term_id': u'110', u'object_id': u'5195', u'term_taxonomy_id': u'114', u'taxonomy': u'post_tag', u'slug': u'street', u'description': u''}, u'84': {u'term_group': u'0', u'count': u'26', u'name': u'levin', u'parent': u'0', u'term_id': u'84', u'object_id': u'5195', u'term_taxonomy_id': u'86', u'taxonomy': u'post_tag', u'slug': u'levin', u'description': u''}}, u'date': u'2013-08-23 07:15:23', u'type': u'post', u'id': u'5195', u'comment_status': u'open'}
In [20]:
In [20]:
In [21]:
print lodArt[1]
{u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'82', u'name': u'draw', u'parent': u'0', u'term_id': u'7', u'cat_ID': u'7', u'category_description': u'', u'category_parent': u'0', u'object_id': u'5195', u'cat_name': u'draw', u'category_count': u'82', u'term_taxonomy_id': u'7', u'taxonomy': u'category', u'category_nicename': u'draw', u'slug': u'draw', u'description': u''}], u'name': u'ludum-dare-pencil-sketches', u'parent': u'0', u'title': u'Ludum Dare Pencil Sketches', u'url': u'http://artcontrol.me/?p=5195', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"Here's thress pencil sketches that I've done recently.\xa0\r\n\r\nThis is the view from outside my home. I was racing around on my Fathers hand wheel chair and decided to draw the", u'modified': u'2013-08-23 07:15:23', u'slug': u'Ludum Dare Pencil Sketches', u'content': u'Here\'s thress pencil sketches that I\'ve done recently.\xa0<a href="http://artcontrol.me/wp-content/uploads/2013/08/DSC_0708.jpg"><img class="aligncenter size-large wp-image-5196" alt="DSC_0708" src="http://artcontrol.me/wp-content/uploads/2013/08/DSC_0708-628x1024.jpg" width="625" height="1019" /></a>\r\n\r\nThis is the view from outside my home. I was racing around on my Fathers hand wheel chair and decided to draw the view. A fold up chair would be handy as I\'m always having to draw scenes that involve a seat!\r\n<a href="http://artcontrol.me/wp-content/uploads/2013/08/DSC_0710.jpg"><img class="aligncenter size-large wp-image-5198" alt="DSC_0710" src="http://artcontrol.me/wp-content/uploads/2013/08/DSC_0710-682x1024.jpg" width="625" height="938" /></a>\r\n\r\nI have been using a 2h pencil. It\'s a wonderful pencil and I could not go back to HB. No smudging, and takes awhile to blunt - shading still works alright with it.\r\n\r\nThis was drawn well walking down the road - starting sketching ideas for Ludum Dare - but ended up writing down ideas for a podcast I\'d like to start with my friend Matt. I don\'t know if it will go ahead because Matt is very unreliable - I might be better to just organize something myself.\r\n\r\n<a href="http://artcontrol.me/wp-content/uploads/2013/08/DSC_0712.jpg"><img class="aligncenter size-large wp-image-5199" alt="DSC_0712" src="http://artcontrol.me/wp-content/uploads/2013/08/DSC_0712-e1377179011767-632x1024.jpg" width="625" height="1012" /></a>Sitting outside the library. Again - another Ludum Dare logo, this time I sketched the lamppost and large pillar - adding in clouds, figure and tree.\r\n\r\n ', u'comment_count': u'0', u'tag': {u'10': {u'term_group': u'0', u'count': u'34', u'name': u'pencil', u'parent': u'0', u'term_id': u'10', u'object_id': u'5195', u'term_taxonomy_id': u'10', u'taxonomy': u'post_tag', u'slug': u'pencil', u'description': u''}, u'110': {u'term_group': u'0', u'count': u'14', u'name': u'Street', u'parent': u'0', u'term_id': u'110', u'object_id': u'5195', u'term_taxonomy_id': u'114', u'taxonomy': u'post_tag', u'slug': u'street', u'description': u''}, u'84': {u'term_group': u'0', u'count': u'26', u'name': u'levin', u'parent': u'0', u'term_id': u'84', u'object_id': u'5195', u'term_taxonomy_id': u'86', u'taxonomy': u'post_tag', u'slug': u'levin', u'description': u''}}, u'date': u'2013-08-23 07:15:23', u'type': u'post', u'id': u'5195', u'comment_status': u'open'}
In [22]:
#print lodArt[0]
behArt = lodArt[1]
areArt = behArt['content']
print areArt
Here's thress pencil sketches that I've done recently. <a href="http://artcontrol.me/wp-content/uploads/2013/08/DSC_0708.jpg"><img class="aligncenter size-large wp-image-5196" alt="DSC_0708" src="http://artcontrol.me/wp-content/uploads/2013/08/DSC_0708-628x1024.jpg" width="625" height="1019" /></a>
This is the view from outside my home. I was racing around on my Fathers hand wheel chair and decided to draw the view. A fold up chair would be handy as I'm always having to draw scenes that involve a seat!
<a href="http://artcontrol.me/wp-content/uploads/2013/08/DSC_0710.jpg"><img class="aligncenter size-large wp-image-5198" alt="DSC_0710" src="http://artcontrol.me/wp-content/uploads/2013/08/DSC_0710-682x1024.jpg" width="625" height="938" /></a>
I have been using a 2h pencil. It's a wonderful pencil and I could not go back to HB. No smudging, and takes awhile to blunt - shading still works alright with it.
This was drawn well walking down the road - starting sketching ideas for Ludum Dare - but ended up writing down ideas for a podcast I'd like to start with my friend Matt. I don't know if it will go ahead because Matt is very unreliable - I might be better to just organize something myself.
<a href="http://artcontrol.me/wp-content/uploads/2013/08/DSC_0712.jpg"><img class="aligncenter size-large wp-image-5199" alt="DSC_0712" src="http://artcontrol.me/wp-content/uploads/2013/08/DSC_0712-e1377179011767-632x1024.jpg" width="625" height="1012" /></a>Sitting outside the library. Again - another Ludum Dare logo, this time I sketched the lamppost and large pillar - adding in clouds, figure and tree.
In [24]:
from bs4 import BeautifulSoup
In [25]:
postData = BeautifulSoup(areArt)
#print postData
linkData = postData.find_all('a')
print linkData[0]
<a href="http://artcontrol.me/wp-content/uploads/2013/08/DSC_0708.jpg"><img alt="DSC_0708" class="aligncenter size-large wp-image-5196" height="1019" src="http://artcontrol.me/wp-content/uploads/2013/08/DSC_0708-628x1024.jpg" width="625"/></a>
In [27]:
for link in postData.find_all('a'):
print(link.get('href'))
http://artcontrol.me/wp-content/uploads/2013/08/DSC_0708.jpg
http://artcontrol.me/wp-content/uploads/2013/08/DSC_0710.jpg
http://artcontrol.me/wp-content/uploads/2013/08/DSC_0712.jpg
In [30]:
txtzData = (postData.get_text())
print imgzData
Here's thress pencil sketches that I've done recently.
This is the view from outside my home. I was racing around on my Fathers hand wheel chair and decided to draw the view. A fold up chair would be handy as I'm always having to draw scenes that involve a seat!
I have been using a 2h pencil. It's a wonderful pencil and I could not go back to HB. No smudging, and takes awhile to blunt - shading still works alright with it.
This was drawn well walking down the road - starting sketching ideas for Ludum Dare - but ended up writing down ideas for a podcast I'd like to start with my friend Matt. I don't know if it will go ahead because Matt is very unreliable - I might be better to just organize something myself.
Sitting outside the library. Again - another Ludum Dare logo, this time I sketched the lamppost and large pillar - adding in clouds, figure and tree.
In [31]:
tlahArt = getArt['title']
print tlahArt
---------------------------------------------------------------------------
NameError Traceback (most recent call last)
<ipython-input-31-acb8691b1378> in <module>()
----> 1 tlahArt = getArt['title']
2 print tlahArt
NameError: name 'getArt' is not defined
In [32]:
dictData = {'imgz': linkData, 'text': txtzData}
print dictData
{'imgz': [<a href="http://artcontrol.me/wp-content/uploads/2013/08/DSC_0708.jpg"><img alt="DSC_0708" class="aligncenter size-large wp-image-5196" height="1019" src="http://artcontrol.me/wp-content/uploads/2013/08/DSC_0708-628x1024.jpg" width="625"/></a>, <a href="http://artcontrol.me/wp-content/uploads/2013/08/DSC_0710.jpg"><img alt="DSC_0710" class="aligncenter size-large wp-image-5198" height="938" src="http://artcontrol.me/wp-content/uploads/2013/08/DSC_0710-682x1024.jpg" width="625"/></a>, <a href="http://artcontrol.me/wp-content/uploads/2013/08/DSC_0712.jpg"><img alt="DSC_0712" class="aligncenter size-large wp-image-5199" height="1012" src="http://artcontrol.me/wp-content/uploads/2013/08/DSC_0712-e1377179011767-632x1024.jpg" width="625"/></a>], 'text': u"Here's thress pencil sketches that I've done recently.\xa0\r\n\r\nThis is the view from outside my home. I was racing around on my Fathers hand wheel chair and decided to draw the view. A fold up chair would be handy as I'm always having to draw scenes that involve a seat!\r\n\r\n\r\nI have been using a 2h pencil. It's a wonderful pencil and I could not go back to HB. No smudging, and takes awhile to blunt - shading still works alright with it.\r\n\r\nThis was drawn well walking down the road - starting sketching ideas for Ludum Dare - but ended up writing down ideas for a podcast I'd like to start with my friend Matt. I don't know if it will go ahead because Matt is very unreliable - I might be better to just organize something myself.\r\n\r\nSitting outside the library. Again - another Ludum Dare logo, this time I sketched the lamppost and large pillar - adding in clouds, figure and tree.\r\n\r\n\xa0"}
In [25]:
getArt = requests.get('http://artcontrol.me/?wpapi=get_posts&dev=0')
jsnArt = json.loads(getArt.text)
print jsnArt
{u'status': u'ok', u'count': 254, u'posts': [{u'status': u'publish', u'category': [], u'name': u'api', u'parent': u'0', u'title': u'API', u'url': u'http://artcontrol.me/?page_id=5256', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"artcontrol.me uses the wp-api RESTful API system. You can find a github repo that uses this data in IPython notebook here\r\n\r\nHere's an example of the", u'modified': u'2013-10-18 04:12:48', u'slug': u'API', u'comment_count': u'0', u'tag': [], u'date': u'2013-10-16 21:57:06', u'type': u'page', u'id': u'5256', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'27', u'name': u'Digital Painting', u'parent': u'0', u'term_id': u'169', u'cat_ID': u'169', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'Digital Painting', u'category_count': u'27', u'term_taxonomy_id': u'181', u'taxonomy': u'category', u'category_nicename': u'digpaint', u'slug': u'digpaint', u'description': u''}, {u'term_group': u'0', u'count': u'11', u'name': u'RedditGetsDrawn', u'parent': u'169', u'term_id': u'170', u'cat_ID': u'170', u'category_description': u'', u'category_parent': u'169', u'cat_name': u'RedditGetsDrawn', u'category_count': u'11', u'term_taxonomy_id': u'182', u'taxonomy': u'category', u'category_nicename': u'redditgetsdrawn-digpaint', u'slug': u'redditgetsdrawn-digpaint', u'description': u''}], u'name': u'angelique-portrait', u'parent': u'0', u'title': u'Angelique Portrait', u'url': u'http://artcontrol.me/?p=5236', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'Formatted my laptop yesterday, backed up majority of my files on the system but forgot to backup my GIMP 2.8 settings. I had to create new settings for getting a thin to', u'modified': u'2013-10-07 16:43:09', u'slug': u'Angelique Portrait', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'21', u'name': u'color', u'parent': u'0', u'term_id': u'30', u'term_taxonomy_id': u'31', u'taxonomy': u'post_tag', u'slug': u'color', u'description': u''}, {u'term_group': u'0', u'count': u'1', u'name': u'friend', u'parent': u'0', u'term_id': u'217', u'term_taxonomy_id': u'237', u'taxonomy': u'post_tag', u'slug': u'friend', u'description': u''}, {u'term_group': u'0', u'count': u'85', u'name': u'GIMP', u'parent': u'0', u'term_id': u'59', u'term_taxonomy_id': u'60', u'taxonomy': u'post_tag', u'slug': u'gimp', u'description': u''}, {u'term_group': u'0', u'count': u'33', u'name': u'portrait', u'parent': u'0', u'term_id': u'20', u'term_taxonomy_id': u'20', u'taxonomy': u'post_tag', u'slug': u'portrait', u'description': u''}], u'date': u'2013-10-07 16:43:09', u'type': u'post', u'id': u'5236', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'82', u'name': u'draw', u'parent': u'0', u'term_id': u'7', u'cat_ID': u'7', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'draw', u'category_count': u'82', u'term_taxonomy_id': u'7', u'taxonomy': u'category', u'category_nicename': u'draw', u'slug': u'draw', u'description': u''}], u'name': u'hamilton-building', u'parent': u'0', u'title': u'Hamilton Building', u'url': u'http://artcontrol.me/?p=5225', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'Since moving to Hamilton I have gotten outside with my drawing and photography gear everyday. This is a great success because my art was really suffering and I had not found', u'modified': u'2013-10-04 13:49:53', u'slug': u'Hamilton Building', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'3', u'name': u'enviorment', u'parent': u'0', u'term_id': u'145', u'term_taxonomy_id': u'153', u'taxonomy': u'post_tag', u'slug': u'enviorment', u'description': u''}, {u'term_group': u'0', u'count': u'2', u'name': u'Hamilton', u'parent': u'0', u'term_id': u'130', u'term_taxonomy_id': u'137', u'taxonomy': u'post_tag', u'slug': u'hamilton', u'description': u''}, {u'term_group': u'0', u'count': u'34', u'name': u'pencil', u'parent': u'0', u'term_id': u'10', u'term_taxonomy_id': u'10', u'taxonomy': u'post_tag', u'slug': u'pencil', u'description': u''}], u'date': u'2013-10-04 13:49:53', u'type': u'post', u'id': u'5225', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'27', u'name': u'Digital Painting', u'parent': u'0', u'term_id': u'169', u'cat_ID': u'169', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'Digital Painting', u'category_count': u'27', u'term_taxonomy_id': u'181', u'taxonomy': u'category', u'category_nicename': u'digpaint', u'slug': u'digpaint', u'description': u''}], u'name': u'lorde-portrait', u'parent': u'0', u'title': u'Lorde Portrait', u'url': u'http://artcontrol.me/?p=5217', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"Lorde is a New Zealand Musician Artist from Auckland, New Zealand. She's taken the world by storm with her EP - The Love Club. If you have yet to here her music - check out", u'modified': u'2013-09-23 09:42:41', u'slug': u'Lorde Portrait', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'1', u'name': u'lorde', u'parent': u'0', u'term_id': u'215', u'term_taxonomy_id': u'235', u'taxonomy': u'post_tag', u'slug': u'lorde', u'description': u''}, {u'term_group': u'0', u'count': u'4', u'name': u'music', u'parent': u'0', u'term_id': u'35', u'term_taxonomy_id': u'36', u'taxonomy': u'post_tag', u'slug': u'music', u'description': u''}, {u'term_group': u'0', u'count': u'1', u'name': u'nz', u'parent': u'0', u'term_id': u'216', u'term_taxonomy_id': u'236', u'taxonomy': u'post_tag', u'slug': u'nz', u'description': u''}, {u'term_group': u'0', u'count': u'33', u'name': u'portrait', u'parent': u'0', u'term_id': u'20', u'term_taxonomy_id': u'20', u'taxonomy': u'post_tag', u'slug': u'portrait', u'description': u''}], u'date': u'2013-09-23 09:42:41', u'type': u'post', u'id': u'5217', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'27', u'name': u'Digital Painting', u'parent': u'0', u'term_id': u'169', u'cat_ID': u'169', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'Digital Painting', u'category_count': u'27', u'term_taxonomy_id': u'181', u'taxonomy': u'category', u'category_nicename': u'digpaint', u'slug': u'digpaint', u'description': u''}], u'name': u'trademe-and-portraits', u'parent': u'0', u'title': u'trademe and portraits', u'url': u'http://artcontrol.me/?p=5204', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"Hello. I've setup my laptop to run GIMP the same way as my desktop. This frees up my desktop for other uses.\r\n\r\nHere are several paintings I've done recently in GIMP (running", u'modified': u'2013-09-10 19:45:27', u'slug': u'trademe and portraits', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'85', u'name': u'GIMP', u'parent': u'0', u'term_id': u'59', u'term_taxonomy_id': u'60', u'taxonomy': u'post_tag', u'slug': u'gimp', u'description': u''}, {u'term_group': u'0', u'count': u'1', u'name': u'Linux Mint', u'parent': u'0', u'term_id': u'214', u'term_taxonomy_id': u'234', u'taxonomy': u'post_tag', u'slug': u'linux-mint', u'description': u''}, {u'term_group': u'0', u'count': u'1', u'name': u'trademe', u'parent': u'0', u'term_id': u'213', u'term_taxonomy_id': u'233', u'taxonomy': u'post_tag', u'slug': u'trademe', u'description': u''}], u'date': u'2013-09-10 19:45:27', u'type': u'post', u'id': u'5204', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'82', u'name': u'draw', u'parent': u'0', u'term_id': u'7', u'cat_ID': u'7', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'draw', u'category_count': u'82', u'term_taxonomy_id': u'7', u'taxonomy': u'category', u'category_nicename': u'draw', u'slug': u'draw', u'description': u''}], u'name': u'ludum-dare-pencil-sketches', u'parent': u'0', u'title': u'Ludum Dare Pencil Sketches', u'url': u'http://artcontrol.me/?p=5195', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"Here's thress pencil sketches that I've done recently.\xa0\r\n\r\nThis is the view from outside my home. I was racing around on my Fathers hand wheel chair and decided to draw the", u'modified': u'2013-08-23 07:15:23', u'slug': u'Ludum Dare Pencil Sketches', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'26', u'name': u'levin', u'parent': u'0', u'term_id': u'84', u'term_taxonomy_id': u'86', u'taxonomy': u'post_tag', u'slug': u'levin', u'description': u''}, {u'term_group': u'0', u'count': u'34', u'name': u'pencil', u'parent': u'0', u'term_id': u'10', u'term_taxonomy_id': u'10', u'taxonomy': u'post_tag', u'slug': u'pencil', u'description': u''}, {u'term_group': u'0', u'count': u'14', u'name': u'Street', u'parent': u'0', u'term_id': u'110', u'term_taxonomy_id': u'114', u'taxonomy': u'post_tag', u'slug': u'street', u'description': u''}], u'date': u'2013-08-23 07:15:23', u'type': u'post', u'id': u'5195', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'27', u'name': u'Digital Painting', u'parent': u'0', u'term_id': u'169', u'cat_ID': u'169', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'Digital Painting', u'category_count': u'27', u'term_taxonomy_id': u'181', u'taxonomy': u'category', u'category_nicename': u'digpaint', u'slug': u'digpaint', u'description': u''}], u'name': u'hell-earth-title', u'parent': u'0', u'title': u'Hell Earth Title', u'url': u'http://artcontrol.me/?p=5190', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"\r\n\r\nwow, its been awhile since I've updated this site. I've been drawing a little, but most of the focus has been going into game development. Unity is going well, currently", u'modified': u'2013-08-15 15:42:32', u'slug': u'Hell Earth Title', u'comment_count': u'0', u'tag': [], u'date': u'2013-08-15 15:42:32', u'type': u'post', u'id': u'5190', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'27', u'name': u'Digital Painting', u'parent': u'0', u'term_id': u'169', u'cat_ID': u'169', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'Digital Painting', u'category_count': u'27', u'term_taxonomy_id': u'181', u'taxonomy': u'category', u'category_nicename': u'digpaint', u'slug': u'digpaint', u'description': u''}, {u'term_group': u'0', u'count': u'11', u'name': u'RedditGetsDrawn', u'parent': u'169', u'term_id': u'170', u'cat_ID': u'170', u'category_description': u'', u'category_parent': u'169', u'cat_name': u'RedditGetsDrawn', u'category_count': u'11', u'term_taxonomy_id': u'182', u'taxonomy': u'category', u'category_nicename': u'redditgetsdrawn-digpaint', u'slug': u'redditgetsdrawn-digpaint', u'description': u''}], u'name': u'redditgetsdrawn-zombie', u'parent': u'0', u'title': u'redditgetsdrawn zombie', u'url': u'http://artcontrol.me/?p=5177', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"I've got a better setup in my room now for working on the computer. My energy has been low for a long time, this is why I haven't been updating the site. I've been focusing", u'modified': u'2013-07-30 20:35:17', u'slug': u'redditgetsdrawn zombie', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'21', u'name': u'color', u'parent': u'0', u'term_id': u'30', u'term_taxonomy_id': u'31', u'taxonomy': u'post_tag', u'slug': u'color', u'description': u''}, {u'term_group': u'0', u'count': u'14', u'name': u'landscape', u'parent': u'0', u'term_id': u'9', u'term_taxonomy_id': u'9', u'taxonomy': u'post_tag', u'slug': u'landscape', u'description': u''}, {u'term_group': u'0', u'count': u'12', u'name': u'reddit', u'parent': u'0', u'term_id': u'112', u'term_taxonomy_id': u'116', u'taxonomy': u'post_tag', u'slug': u'reddit', u'description': u''}, {u'term_group': u'0', u'count': u'1', u'name': u'zombie', u'parent': u'0', u'term_id': u'212', u'term_taxonomy_id': u'232', u'taxonomy': u'post_tag', u'slug': u'zombie', u'description': u''}], u'date': u'2013-07-30 20:35:17', u'type': u'post', u'id': u'5177', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'82', u'name': u'draw', u'parent': u'0', u'term_id': u'7', u'cat_ID': u'7', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'draw', u'category_count': u'82', u'term_taxonomy_id': u'7', u'taxonomy': u'category', u'category_nicename': u'draw', u'slug': u'draw', u'description': u''}], u'name': u'redditgetsdrawn-library-portraits', u'parent': u'0', u'title': u'RedditGetsDrawn Library Portraits', u'url': u'http://artcontrol.me/?p=5168', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"It's school holidays and I want to get my sleeping\xa0back on track so I've been hanging out in the youth center in the Library here in Levin. Using my cellphone as reference I", u'modified': u'2013-07-17 07:04:28', u'slug': u'RedditGetsDrawn Library Portraits', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'2', u'name': u'child', u'parent': u'0', u'term_id': u'172', u'term_taxonomy_id': u'189', u'taxonomy': u'post_tag', u'slug': u'child', u'description': u''}, {u'term_group': u'0', u'count': u'33', u'name': u'portrait', u'parent': u'0', u'term_id': u'20', u'term_taxonomy_id': u'20', u'taxonomy': u'post_tag', u'slug': u'portrait', u'description': u''}, {u'term_group': u'0', u'count': u'11', u'name': u'redditgetsdrawn', u'parent': u'0', u'term_id': u'119', u'term_taxonomy_id': u'125', u'taxonomy': u'post_tag', u'slug': u'redditgetsdrawn', u'description': u''}, {u'term_group': u'0', u'count': u'1', u'name': u'war', u'parent': u'0', u'term_id': u'211', u'term_taxonomy_id': u'231', u'taxonomy': u'post_tag', u'slug': u'war', u'description': u''}], u'date': u'2013-07-17 07:04:28', u'type': u'post', u'id': u'5168', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'82', u'name': u'draw', u'parent': u'0', u'term_id': u'7', u'cat_ID': u'7', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'draw', u'category_count': u'82', u'term_taxonomy_id': u'7', u'taxonomy': u'category', u'category_nicename': u'draw', u'slug': u'draw', u'description': u''}], u'name': u'july-portrait', u'parent': u'0', u'title': u'July portrait', u'url': u'http://artcontrol.me/?p=5166', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"Hi. I've been busy with unity3d but get in a pencil drawing now and then. I think I've lost my pen for my tablet. Its likely somewhere in my room. Looking on mightyape I see", u'modified': u'2013-07-12 03:53:44', u'slug': u'July portrait', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'22', u'name': u'female', u'parent': u'0', u'term_id': u'19', u'term_taxonomy_id': u'19', u'taxonomy': u'post_tag', u'slug': u'female', u'description': u''}, {u'term_group': u'0', u'count': u'34', u'name': u'pencil', u'parent': u'0', u'term_id': u'10', u'term_taxonomy_id': u'10', u'taxonomy': u'post_tag', u'slug': u'pencil', u'description': u''}, {u'term_group': u'0', u'count': u'33', u'name': u'portrait', u'parent': u'0', u'term_id': u'20', u'term_taxonomy_id': u'20', u'taxonomy': u'post_tag', u'slug': u'portrait', u'description': u''}], u'date': u'2013-07-12 03:53:44', u'type': u'post', u'id': u'5166', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'82', u'name': u'draw', u'parent': u'0', u'term_id': u'7', u'cat_ID': u'7', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'draw', u'category_count': u'82', u'term_taxonomy_id': u'7', u'taxonomy': u'category', u'category_nicename': u'draw', u'slug': u'draw', u'description': u''}], u'name': u'triger-concept-drawings', u'parent': u'0', u'title': u'Triger Concept Drawings', u'url': u'http://artcontrol.me/?p=5161', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"MolyJam2013 is happening right now. It lasts 48 hours. I finely got GIT working with my unity project - Triget.\n\nHere's some concept art:\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nCant find my tablet", u'modified': u'2013-07-07 01:45:25', u'slug': u'Triger Concept Drawings', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'8', u'name': u'concept art', u'parent': u'0', u'term_id': u'117', u'term_taxonomy_id': u'123', u'taxonomy': u'post_tag', u'slug': u'concept-art', u'description': u''}, {u'term_group': u'0', u'count': u'3', u'name': u'game', u'parent': u'0', u'term_id': u'46', u'term_taxonomy_id': u'144', u'taxonomy': u'post_tag', u'slug': u'game', u'description': u''}, {u'term_group': u'0', u'count': u'34', u'name': u'pencil', u'parent': u'0', u'term_id': u'10', u'term_taxonomy_id': u'10', u'taxonomy': u'post_tag', u'slug': u'pencil', u'description': u''}], u'date': u'2013-07-07 01:44:26', u'type': u'post', u'id': u'5161', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'82', u'name': u'draw', u'parent': u'0', u'term_id': u'7', u'cat_ID': u'7', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'draw', u'category_count': u'82', u'term_taxonomy_id': u'7', u'taxonomy': u'category', u'category_nicename': u'draw', u'slug': u'draw', u'description': u''}], u'name': u'cuba-street-fish', u'parent': u'0', u'title': u'Cuba street fish', u'url': u'http://artcontrol.me/?p=5155', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"I had a request today to upload some art. I have a new sketchbook that I have started to fill. Always buying new sketchbooks. So many half finished.\nHere's a pencil sketch", u'modified': u'2013-06-29 16:27:48', u'slug': u'Cuba street fish', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'1', u'name': u'cuba', u'parent': u'0', u'term_id': u'210', u'term_taxonomy_id': u'230', u'taxonomy': u'post_tag', u'slug': u'cuba', u'description': u''}, {u'term_group': u'0', u'count': u'34', u'name': u'pencil', u'parent': u'0', u'term_id': u'10', u'term_taxonomy_id': u'10', u'taxonomy': u'post_tag', u'slug': u'pencil', u'description': u''}, {u'term_group': u'0', u'count': u'14', u'name': u'Street', u'parent': u'0', u'term_id': u'110', u'term_taxonomy_id': u'114', u'taxonomy': u'post_tag', u'slug': u'street', u'description': u''}, {u'term_group': u'0', u'count': u'15', u'name': u'wellington', u'parent': u'0', u'term_id': u'94', u'term_taxonomy_id': u'96', u'taxonomy': u'post_tag', u'slug': u'wellington', u'description': u''}], u'date': u'2013-06-29 16:27:48', u'type': u'post', u'id': u'5155', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'27', u'name': u'Digital Painting', u'parent': u'0', u'term_id': u'169', u'cat_ID': u'169', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'Digital Painting', u'category_count': u'27', u'term_taxonomy_id': u'181', u'taxonomy': u'category', u'category_nicename': u'digpaint', u'slug': u'digpaint', u'description': u''}], u'name': u'three-figures-in-library', u'parent': u'0', u'title': u'three figures in library', u'url': u'http://artcontrol.me/?p=5151', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"Here's a painting I did in the library:\r\n\r\n\r\n\r\nNothing much, just a few figures in an environment. This was done on the library computers. I think I've lost my tablet pen. Oh", u'modified': u'2013-06-26 10:28:51', u'slug': u'three figures in library', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'17', u'name': u'figure', u'parent': u'0', u'term_id': u'8', u'term_taxonomy_id': u'8', u'taxonomy': u'post_tag', u'slug': u'figure', u'description': u''}, {u'term_group': u'0', u'count': u'85', u'name': u'GIMP', u'parent': u'0', u'term_id': u'59', u'term_taxonomy_id': u'60', u'taxonomy': u'post_tag', u'slug': u'gimp', u'description': u''}], u'date': u'2013-06-26 10:28:51', u'type': u'post', u'id': u'5151', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'82', u'name': u'draw', u'parent': u'0', u'term_id': u'7', u'cat_ID': u'7', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'draw', u'category_count': u'82', u'term_taxonomy_id': u'7', u'taxonomy': u'category', u'category_nicename': u'draw', u'slug': u'draw', u'description': u''}], u'name': u'sketchbook-palmerston-north', u'parent': u'0', u'title': u'Sketchbook palmerston North', u'url': u'http://artcontrol.me/?p=5142', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'', u'modified': u'2013-06-21 17:04:42', u'slug': u'Sketchbook palmerston North', u'comment_count': u'0', u'tag': [], u'date': u'2013-06-21 17:04:42', u'type': u'post', u'id': u'5142', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'82', u'name': u'draw', u'parent': u'0', u'term_id': u'7', u'cat_ID': u'7', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'draw', u'category_count': u'82', u'term_taxonomy_id': u'7', u'taxonomy': u'category', u'category_nicename': u'draw', u'slug': u'draw', u'description': u''}], u'name': u'chocolate-cup-sketch', u'parent': u'0', u'title': u'Chocolate cup sketch', u'url': u'http://artcontrol.me/?p=5134', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'Drawing on cup with bic bio pen. Used the phone camera - decided to leave my camera at home as it was leaving. This camera built into the phone is damn good\n\n\n\n\n\n\nCharacter.', u'modified': u'2013-06-18 13:14:59', u'slug': u'Chocolate cup sketch', u'comment_count': u'0', u'tag': [], u'date': u'2013-06-18 13:14:59', u'type': u'post', u'id': u'5134', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'27', u'name': u'Digital Painting', u'parent': u'0', u'term_id': u'169', u'cat_ID': u'169', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'Digital Painting', u'category_count': u'27', u'term_taxonomy_id': u'181', u'taxonomy': u'category', u'category_nicename': u'digpaint', u'slug': u'digpaint', u'description': u''}], u'name': u'janelle-figure', u'parent': u'0', u'title': u'Janelle figure ', u'url': u'http://artcontrol.me/?p=5124', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"This is my friend Janelle. She uploaded a nice picture with a sweet haircut that I had to paint. Normally I paint strangers on r/redditgetsdrawn but I haven't even been", u'modified': u'2013-06-13 07:49:40', u'slug': u'Janelle figure ', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'1', u'name': u'facebook', u'parent': u'0', u'term_id': u'207', u'term_taxonomy_id': u'227', u'taxonomy': u'post_tag', u'slug': u'facebook', u'description': u''}, {u'term_group': u'0', u'count': u'22', u'name': u'female', u'parent': u'0', u'term_id': u'19', u'term_taxonomy_id': u'19', u'taxonomy': u'post_tag', u'slug': u'female', u'description': u''}, {u'term_group': u'0', u'count': u'17', u'name': u'figure', u'parent': u'0', u'term_id': u'8', u'term_taxonomy_id': u'8', u'taxonomy': u'post_tag', u'slug': u'figure', u'description': u''}, {u'term_group': u'0', u'count': u'85', u'name': u'GIMP', u'parent': u'0', u'term_id': u'59', u'term_taxonomy_id': u'60', u'taxonomy': u'post_tag', u'slug': u'gimp', u'description': u''}, {u'term_group': u'0', u'count': u'1', u'name': u'real life', u'parent': u'0', u'term_id': u'208', u'term_taxonomy_id': u'228', u'taxonomy': u'post_tag', u'slug': u'real-life', u'description': u''}], u'date': u'2013-06-13 07:45:10', u'type': u'post', u'id': u'5124', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'27', u'name': u'Digital Painting', u'parent': u'0', u'term_id': u'169', u'cat_ID': u'169', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'Digital Painting', u'category_count': u'27', u'term_taxonomy_id': u'181', u'taxonomy': u'category', u'category_nicename': u'digpaint', u'slug': u'digpaint', u'description': u''}], u'name': u'bacon-game-jam-landscape-painting', u'parent': u'0', u'title': u'Bacon Game Jam landscape painting', u'url': u'http://artcontrol.me/?p=5113', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'[caption id="attachment_5114" align="aligncenter" width="1024"] line. basic and quick[/caption]\r\n\r\n[caption id="attachment_5116" align="aligncenter" width="1024"]', u'modified': u'2013-06-10 00:38:52', u'slug': u'Bacon Game Jam landscape painting', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'2', u'name': u'gamejam', u'parent': u'0', u'term_id': u'201', u'term_taxonomy_id': u'219', u'taxonomy': u'post_tag', u'slug': u'gamejam', u'description': u''}, {u'term_group': u'0', u'count': u'85', u'name': u'GIMP', u'parent': u'0', u'term_id': u'59', u'term_taxonomy_id': u'60', u'taxonomy': u'post_tag', u'slug': u'gimp', u'description': u''}, {u'term_group': u'0', u'count': u'14', u'name': u'landscape', u'parent': u'0', u'term_id': u'9', u'term_taxonomy_id': u'9', u'taxonomy': u'post_tag', u'slug': u'landscape', u'description': u''}], u'date': u'2013-06-10 00:38:52', u'type': u'post', u'id': u'5113', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'27', u'name': u'Digital Painting', u'parent': u'0', u'term_id': u'169', u'cat_ID': u'169', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'Digital Painting', u'category_count': u'27', u'term_taxonomy_id': u'181', u'taxonomy': u'category', u'category_nicename': u'digpaint', u'slug': u'digpaint', u'description': u''}], u'name': u'lightsoff-pixel-ideas', u'parent': u'0', u'title': u'LightsOff pixel ideas', u'url': u'http://artcontrol.me/?p=5096', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"The following is a painting I did in GIMP this morning - it was to produce ideas and move forward with the BaconGameJam. I'm going to sleep soon and it will likely be a big", u'modified': u'2013-06-09 09:13:09', u'slug': u'LightsOff pixel ideas', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'1', u'name': u'imagination', u'parent': u'0', u'term_id': u'206', u'term_taxonomy_id': u'226', u'taxonomy': u'post_tag', u'slug': u'imagination', u'description': u''}, {u'term_group': u'0', u'count': u'14', u'name': u'landscape', u'parent': u'0', u'term_id': u'9', u'term_taxonomy_id': u'9', u'taxonomy': u'post_tag', u'slug': u'landscape', u'description': u''}, {u'term_group': u'0', u'count': u'2', u'name': u'pixel', u'parent': u'0', u'term_id': u'205', u'term_taxonomy_id': u'225', u'taxonomy': u'post_tag', u'slug': u'pixel', u'description': u''}], u'date': u'2013-06-09 09:13:09', u'type': u'post', u'id': u'5096', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'27', u'name': u'Digital Painting', u'parent': u'0', u'term_id': u'169', u'cat_ID': u'169', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'Digital Painting', u'category_count': u'27', u'term_taxonomy_id': u'181', u'taxonomy': u'category', u'category_nicename': u'digpaint', u'slug': u'digpaint', u'description': u''}, {u'term_group': u'0', u'count': u'1', u'name': u'pixel', u'parent': u'0', u'term_id': u'205', u'cat_ID': u'205', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'pixel', u'category_count': u'1', u'term_taxonomy_id': u'224', u'taxonomy': u'category', u'category_nicename': u'pixel', u'slug': u'pixel', u'description': u''}], u'name': u'lights-out-bacongamejam-character-concept', u'parent': u'0', u'title': u'Lights Out BaconGameJam - Character concept ', u'url': u'http://artcontrol.me/?p=5092', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'character', u'modified': u'2013-06-08 16:09:33', u'slug': u'Lights Out BaconGameJam - Character concept ', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'9', u'name': u'character', u'parent': u'0', u'term_id': u'33', u'term_taxonomy_id': u'34', u'taxonomy': u'post_tag', u'slug': u'character', u'description': u''}, {u'term_group': u'0', u'count': u'4', u'name': u'concept', u'parent': u'0', u'term_id': u'108', u'term_taxonomy_id': u'110', u'taxonomy': u'post_tag', u'slug': u'concept', u'description': u''}, {u'term_group': u'0', u'count': u'2', u'name': u'pixel', u'parent': u'0', u'term_id': u'205', u'term_taxonomy_id': u'225', u'taxonomy': u'post_tag', u'slug': u'pixel', u'description': u''}], u'date': u'2013-06-08 16:09:33', u'type': u'post', u'id': u'5092', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'27', u'name': u'Digital Painting', u'parent': u'0', u'term_id': u'169', u'cat_ID': u'169', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'Digital Painting', u'category_count': u'27', u'term_taxonomy_id': u'181', u'taxonomy': u'category', u'category_nicename': u'digpaint', u'slug': u'digpaint', u'description': u''}, {u'term_group': u'0', u'count': u'11', u'name': u'RedditGetsDrawn', u'parent': u'169', u'term_id': u'170', u'cat_ID': u'170', u'category_description': u'', u'category_parent': u'169', u'cat_name': u'RedditGetsDrawn', u'category_count': u'11', u'term_taxonomy_id': u'182', u'taxonomy': u'category', u'category_nicename': u'redditgetsdrawn-digpaint', u'slug': u'redditgetsdrawn-digpaint', u'description': u''}], u'name': u'lights-out-bacongamejam-5-third-painting-redditgetsdrawn', u'parent': u'0', u'title': u'Lights Out - BaconGameJam 5 - Third Painting RedditGetsDrawn', u'url': u'http://artcontrol.me/?p=5086', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'Onto my third painting. For this I decided to use the pencil tool over brush - creates a pixel effect. Here;s the reference along with the', u'modified': u'2013-06-08 13:31:53', u'slug': u'Lights Out - BaconGameJam 5 - Third Painting RedditGetsDrawn', u'comment_count': u'2', u'tag': [{u'term_group': u'0', u'count': u'1', u'name': u'couple', u'parent': u'0', u'term_id': u'203', u'term_taxonomy_id': u'222', u'taxonomy': u'post_tag', u'slug': u'couple', u'description': u''}, {u'term_group': u'0', u'count': u'85', u'name': u'GIMP', u'parent': u'0', u'term_id': u'59', u'term_taxonomy_id': u'60', u'taxonomy': u'post_tag', u'slug': u'gimp', u'description': u''}, {u'term_group': u'0', u'count': u'1', u'name': u'married', u'parent': u'0', u'term_id': u'204', u'term_taxonomy_id': u'223', u'taxonomy': u'post_tag', u'slug': u'married', u'description': u''}], u'date': u'2013-06-08 13:31:53', u'type': u'post', u'id': u'5086', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'27', u'name': u'Digital Painting', u'parent': u'0', u'term_id': u'169', u'cat_ID': u'169', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'Digital Painting', u'category_count': u'27', u'term_taxonomy_id': u'181', u'taxonomy': u'category', u'category_nicename': u'digpaint', u'slug': u'digpaint', u'description': u''}, {u'term_group': u'0', u'count': u'1', u'name': u'gamejam', u'parent': u'0', u'term_id': u'201', u'cat_ID': u'201', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'gamejam', u'category_count': u'1', u'term_taxonomy_id': u'220', u'taxonomy': u'category', u'category_nicename': u'gamejam', u'slug': u'gamejam', u'description': u''}], u'name': u'lights-out-bacongamejam-secondpainting', u'parent': u'0', u'title': u'Lights Out - BaconGameJam 5 - Second Painting', u'url': u'http://artcontrol.me/?p=5081', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"Keeping with similar idea as the previous painting. Here's the second painting. I am currently working on a third - it's pixel! ", u'modified': u'2013-06-08 12:42:58', u'slug': u'Lights Out - BaconGameJam 5 - Second Painting', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'1', u'name': u'bacongamjam', u'parent': u'0', u'term_id': u'202', u'term_taxonomy_id': u'221', u'taxonomy': u'post_tag', u'slug': u'bacongamjam', u'description': u''}, {u'term_group': u'0', u'count': u'85', u'name': u'GIMP', u'parent': u'0', u'term_id': u'59', u'term_taxonomy_id': u'60', u'taxonomy': u'post_tag', u'slug': u'gimp', u'description': u''}, {u'term_group': u'0', u'count': u'3', u'name': u'imagine', u'parent': u'0', u'term_id': u'174', u'term_taxonomy_id': u'191', u'taxonomy': u'post_tag', u'slug': u'imagine', u'description': u''}], u'date': u'2013-06-08 12:42:58', u'type': u'post', u'id': u'5081', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'27', u'name': u'Digital Painting', u'parent': u'0', u'term_id': u'169', u'cat_ID': u'169', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'Digital Painting', u'category_count': u'27', u'term_taxonomy_id': u'181', u'taxonomy': u'category', u'category_nicename': u'digpaint', u'slug': u'digpaint', u'description': u''}], u'name': u'lightsout-bacon-jam-5-first-painting', u'parent': u'0', u'title': u'lightsout Bacon Jam 5 - First painting', u'url': u'http://artcontrol.me/?p=5071', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"I'm doing the BaconGameJam. The theme is Lights Out. Three of us are working on it\r\n\r\nHere we are live:\r\n\r\n\r\n\r\nHere is the first", u'modified': u'2013-06-08 11:28:41', u'slug': u'lightsout Bacon Jam 5 - First painting', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'8', u'name': u'environment', u'parent': u'0', u'term_id': u'115', u'term_taxonomy_id': u'119', u'taxonomy': u'post_tag', u'slug': u'environment', u'description': u''}, {u'term_group': u'0', u'count': u'2', u'name': u'gamejam', u'parent': u'0', u'term_id': u'201', u'term_taxonomy_id': u'219', u'taxonomy': u'post_tag', u'slug': u'gamejam', u'description': u''}, {u'term_group': u'0', u'count': u'3', u'name': u'imagine', u'parent': u'0', u'term_id': u'174', u'term_taxonomy_id': u'191', u'taxonomy': u'post_tag', u'slug': u'imagine', u'description': u''}], u'date': u'2013-06-08 11:26:29', u'type': u'post', u'id': u'5071', u'comment_status': u'open'}, {u'status': u'publish', u'category': [], u'name': u'links', u'parent': u'0', u'title': u'Links', u'url': u'http://artcontrol.me/?page_id=5060', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'This page is for links to other websites.\r\n\r\nFreshFigure.com/art -\xa0 Photography blog.\r\n\r\nBroBeur - Game Development\r\n\r\nwcmckee - Personal', u'modified': u'2013-06-06 20:12:06', u'slug': u'Links', u'comment_count': u'0', u'tag': [], u'date': u'2013-06-06 20:12:06', u'type': u'page', u'id': u'5060', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'27', u'name': u'Digital Painting', u'parent': u'0', u'term_id': u'169', u'cat_ID': u'169', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'Digital Painting', u'category_count': u'27', u'term_taxonomy_id': u'181', u'taxonomy': u'category', u'category_nicename': u'digpaint', u'slug': u'digpaint', u'description': u''}], u'name': u'vampire-weekend-paintin', u'parent': u'0', u'title': u'Vampire Weekend Painting', u'url': u'http://artcontrol.me/?p=5057', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"A digital painting that isn't referenced from RedditGetsDrawn. I like the band Vampire Weekend, they have recently released their third album recently titled Modern Vampires", u'modified': u'2013-06-06 20:07:18', u'slug': u'Vampire Weekend Painting', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'1', u'name': u'band', u'parent': u'0', u'term_id': u'199', u'term_taxonomy_id': u'217', u'taxonomy': u'post_tag', u'slug': u'band', u'description': u''}, {u'term_group': u'0', u'count': u'85', u'name': u'GIMP', u'parent': u'0', u'term_id': u'59', u'term_taxonomy_id': u'60', u'taxonomy': u'post_tag', u'slug': u'gimp', u'description': u''}, {u'term_group': u'0', u'count': u'4', u'name': u'music', u'parent': u'0', u'term_id': u'35', u'term_taxonomy_id': u'36', u'taxonomy': u'post_tag', u'slug': u'music', u'description': u''}, {u'term_group': u'0', u'count': u'6', u'name': u'paint', u'parent': u'0', u'term_id': u'15', u'term_taxonomy_id': u'134', u'taxonomy': u'post_tag', u'slug': u'paint', u'description': u''}, {u'term_group': u'0', u'count': u'1', u'name': u'vampire weekend', u'parent': u'0', u'term_id': u'200', u'term_taxonomy_id': u'218', u'taxonomy': u'post_tag', u'slug': u'vampire-weekend', u'description': u''}], u'date': u'2013-06-06 20:07:18', u'type': u'post', u'id': u'5057', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'27', u'name': u'Digital Painting', u'parent': u'0', u'term_id': u'169', u'cat_ID': u'169', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'Digital Painting', u'category_count': u'27', u'term_taxonomy_id': u'181', u'taxonomy': u'category', u'category_nicename': u'digpaint', u'slug': u'digpaint', u'description': u''}, {u'term_group': u'0', u'count': u'11', u'name': u'RedditGetsDrawn', u'parent': u'169', u'term_id': u'170', u'cat_ID': u'170', u'category_description': u'', u'category_parent': u'169', u'cat_name': u'RedditGetsDrawn', u'category_count': u'11', u'term_taxonomy_id': u'182', u'taxonomy': u'category', u'category_nicename': u'redditgetsdrawn-digpaint', u'slug': u'redditgetsdrawn-digpaint', u'description': u''}], u'name': u'blackhead-sitting', u'parent': u'0', u'title': u'Blackhead Sitting', u'url': u'http://artcontrol.me/?p=5051', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'It\'s another RedditGetsDrawn.\r\n\r\n \r\n\r\n[caption id="attachment_5043" align="aligncenter" width="576"] Reference photo.[/caption]\r\n\r\n \r\n\r\nReference photo. Decent', u'modified': u'2013-06-06 05:48:38', u'slug': u'Blackhead Sitting', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'1', u'name': u'critic', u'parent': u'0', u'term_id': u'198', u'term_taxonomy_id': u'216', u'taxonomy': u'post_tag', u'slug': u'critic', u'description': u''}, {u'term_group': u'0', u'count': u'22', u'name': u'female', u'parent': u'0', u'term_id': u'19', u'term_taxonomy_id': u'19', u'taxonomy': u'post_tag', u'slug': u'female', u'description': u''}, {u'term_group': u'0', u'count': u'33', u'name': u'portrait', u'parent': u'0', u'term_id': u'20', u'term_taxonomy_id': u'20', u'taxonomy': u'post_tag', u'slug': u'portrait', u'description': u''}, {u'term_group': u'0', u'count': u'12', u'name': u'reddit', u'parent': u'0', u'term_id': u'112', u'term_taxonomy_id': u'116', u'taxonomy': u'post_tag', u'slug': u'reddit', u'description': u''}, {u'term_group': u'0', u'count': u'1', u'name': u'write', u'parent': u'0', u'term_id': u'197', u'term_taxonomy_id': u'215', u'taxonomy': u'post_tag', u'slug': u'write', u'description': u''}], u'date': u'2013-06-06 05:45:53', u'type': u'post', u'id': u'5051', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'27', u'name': u'Digital Painting', u'parent': u'0', u'term_id': u'169', u'cat_ID': u'169', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'Digital Painting', u'category_count': u'27', u'term_taxonomy_id': u'181', u'taxonomy': u'category', u'category_nicename': u'digpaint', u'slug': u'digpaint', u'description': u''}, {u'term_group': u'0', u'count': u'11', u'name': u'RedditGetsDrawn', u'parent': u'169', u'term_id': u'170', u'cat_ID': u'170', u'category_description': u'', u'category_parent': u'169', u'cat_name': u'RedditGetsDrawn', u'category_count': u'11', u'term_taxonomy_id': u'182', u'taxonomy': u'category', u'category_nicename': u'redditgetsdrawn-digpaint', u'slug': u'redditgetsdrawn-digpaint', u'description': u''}], u'name': u'gjgj', u'parent': u'0', u'title': u'May Reddit Drawn Dump', u'url': u'http://artcontrol.me/?p=5010', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u" \r\n\r\nHere's some more RedditGetsDrawn work. Enjoy", u'modified': u'2013-05-30 11:53:01', u'slug': u'May Reddit Drawn Dump', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'85', u'name': u'GIMP', u'parent': u'0', u'term_id': u'59', u'term_taxonomy_id': u'60', u'taxonomy': u'post_tag', u'slug': u'gimp', u'description': u''}, {u'term_group': u'0', u'count': u'33', u'name': u'portrait', u'parent': u'0', u'term_id': u'20', u'term_taxonomy_id': u'20', u'taxonomy': u'post_tag', u'slug': u'portrait', u'description': u''}, {u'term_group': u'0', u'count': u'12', u'name': u'reddit', u'parent': u'0', u'term_id': u'112', u'term_taxonomy_id': u'116', u'taxonomy': u'post_tag', u'slug': u'reddit', u'description': u''}], u'date': u'2013-05-30 11:53:01', u'type': u'post', u'id': u'5010', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'27', u'name': u'Digital Painting', u'parent': u'0', u'term_id': u'169', u'cat_ID': u'169', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'Digital Painting', u'category_count': u'27', u'term_taxonomy_id': u'181', u'taxonomy': u'category', u'category_nicename': u'digpaint', u'slug': u'digpaint', u'description': u''}, {u'term_group': u'0', u'count': u'11', u'name': u'RedditGetsDrawn', u'parent': u'169', u'term_id': u'170', u'cat_ID': u'170', u'category_description': u'', u'category_parent': u'169', u'cat_name': u'RedditGetsDrawn', u'category_count': u'11', u'term_taxonomy_id': u'182', u'taxonomy': u'category', u'category_nicename': u'redditgetsdrawn-digpaint', u'slug': u'redditgetsdrawn-digpaint', u'description': u''}], u'name': u'maydog-kiss', u'parent': u'0', u'title': u'maydog kiss', u'url': u'http://artcontrol.me/?p=4999', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"I've been keeping myself busy with painting people on RedditGetsDrawn. Getting multi paintings done a day is great. For a long time nothing much happened, but it's always", u'modified': u'2013-05-28 21:04:04', u'slug': u'maydog kiss', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'1', u'name': u'dog', u'parent': u'0', u'term_id': u'196', u'term_taxonomy_id': u'214', u'taxonomy': u'post_tag', u'slug': u'dog', u'description': u''}, {u'term_group': u'0', u'count': u'85', u'name': u'GIMP', u'parent': u'0', u'term_id': u'59', u'term_taxonomy_id': u'60', u'taxonomy': u'post_tag', u'slug': u'gimp', u'description': u''}, {u'term_group': u'0', u'count': u'33', u'name': u'portrait', u'parent': u'0', u'term_id': u'20', u'term_taxonomy_id': u'20', u'taxonomy': u'post_tag', u'slug': u'portrait', u'description': u''}, {u'term_group': u'0', u'count': u'12', u'name': u'reddit', u'parent': u'0', u'term_id': u'112', u'term_taxonomy_id': u'116', u'taxonomy': u'post_tag', u'slug': u'reddit', u'description': u''}], u'date': u'2013-05-28 21:04:04', u'type': u'post', u'id': u'4999', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'27', u'name': u'Digital Painting', u'parent': u'0', u'term_id': u'169', u'cat_ID': u'169', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'Digital Painting', u'category_count': u'27', u'term_taxonomy_id': u'181', u'taxonomy': u'category', u'category_nicename': u'digpaint', u'slug': u'digpaint', u'description': u''}], u'name': u'bellez-rat', u'parent': u'0', u'title': u'Bellez Rat', u'url': u'http://artcontrol.me/?p=4967', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"Here's a digital painting \xa0I did today of Bellez. I promised her a painting months ago of her rats. It's not the most dominating image of her Rat, it's something.\r\nIt's been", u'modified': u'2013-05-21 18:10:18', u'slug': u'Bellez Rat', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'1', u'name': u'bellez', u'parent': u'0', u'term_id': u'195', u'term_taxonomy_id': u'213', u'taxonomy': u'post_tag', u'slug': u'bellez', u'description': u''}], u'date': u'2013-05-21 18:08:03', u'type': u'post', u'id': u'4967', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'82', u'name': u'draw', u'parent': u'0', u'term_id': u'7', u'cat_ID': u'7', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'draw', u'category_count': u'82', u'term_taxonomy_id': u'7', u'taxonomy': u'category', u'category_nicename': u'draw', u'slug': u'draw', u'description': u''}], u'name': u'dune-painting', u'parent': u'0', u'title': u'Dune Painting', u'url': u'http://artcontrol.me/?p=4943', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'Here are several drawings I did well reading the Frank Hebert book - DUNE.\r\nRather than working from reference these works are from imagination. I do this in real time - read', u'modified': u'2013-05-10 10:55:34', u'slug': u'Dune Painting', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'2', u'name': u'book', u'parent': u'0', u'term_id': u'124', u'term_taxonomy_id': u'130', u'taxonomy': u'post_tag', u'slug': u'book', u'description': u''}, {u'term_group': u'0', u'count': u'1', u'name': u'dun', u'parent': u'0', u'term_id': u'192', u'term_taxonomy_id': u'210', u'taxonomy': u'post_tag', u'slug': u'dun', u'description': u''}, {u'term_group': u'0', u'count': u'1', u'name': u'illustation', u'parent': u'0', u'term_id': u'194', u'term_taxonomy_id': u'212', u'taxonomy': u'post_tag', u'slug': u'illustation', u'description': u''}, {u'term_group': u'0', u'count': u'1', u'name': u'pen', u'parent': u'0', u'term_id': u'193', u'term_taxonomy_id': u'211', u'taxonomy': u'post_tag', u'slug': u'pen', u'description': u''}, {u'term_group': u'0', u'count': u'34', u'name': u'pencil', u'parent': u'0', u'term_id': u'10', u'term_taxonomy_id': u'10', u'taxonomy': u'post_tag', u'slug': u'pencil', u'description': u''}], u'date': u'2013-05-10 10:54:55', u'type': u'post', u'id': u'4943', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'82', u'name': u'draw', u'parent': u'0', u'term_id': u'7', u'cat_ID': u'7', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'draw', u'category_count': u'82', u'term_taxonomy_id': u'7', u'taxonomy': u'category', u'category_nicename': u'draw', u'slug': u'draw', u'description': u''}], u'name': u'auckland-pencil-drawings', u'parent': u'0', u'title': u'Auckland Pencil Drawings', u'url': u'http://artcontrol.me/?p=4933', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'It\'s been sometime since I\'ve uploaded some artwork. I\'ve mostly been drawing, street scenes and such.\r\n\r\n[caption id="attachment_4924" align="aligncenter" width="600"]', u'modified': u'2013-05-03 00:18:33', u'slug': u'Auckland Pencil Drawings', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'10', u'name': u'auckland', u'parent': u'0', u'term_id': u'88', u'term_taxonomy_id': u'90', u'taxonomy': u'post_tag', u'slug': u'auckland', u'description': u''}, {u'term_group': u'0', u'count': u'34', u'name': u'pencil', u'parent': u'0', u'term_id': u'10', u'term_taxonomy_id': u'10', u'taxonomy': u'post_tag', u'slug': u'pencil', u'description': u''}, {u'term_group': u'0', u'count': u'5', u'name': u'sketchbook', u'parent': u'0', u'term_id': u'87', u'term_taxonomy_id': u'89', u'taxonomy': u'post_tag', u'slug': u'sketchbook', u'description': u''}], u'date': u'2013-05-03 00:18:33', u'type': u'post', u'id': u'4933', u'comment_status': u'open'}, {u'status': u'publish', u'category': [], u'name': u'test', u'parent': u'0', u'title': u'test', u'url': u'http://artcontrol.me/?post_type=sliders&p=4918', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'', u'modified': u'2013-04-28 23:30:59', u'slug': u'test', u'comment_count': u'0', u'tag': [], u'date': u'2013-04-28 23:30:59', u'type': u'sliders', u'id': u'4918', u'comment_status': u'closed'}, {u'status': u'publish', u'category': [], u'name': u'test', u'parent': u'0', u'title': u'test', u'url': u'http://artcontrol.me/?post_type=portfolio&p=4877', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'', u'modified': u'2013-04-28 21:24:29', u'slug': u'test', u'comment_count': u'0', u'tag': [], u'date': u'2013-04-28 21:24:29', u'type': u'portfolio', u'id': u'4877', u'comment_status': u'open'}, {u'status': u'publish', u'category': [], u'name': u'pencil', u'parent': u'0', u'title': u'Pencil', u'url': u'http://artcontrol.me/?post_type=portfolio&p=4876', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'', u'modified': u'2013-04-28 21:23:26', u'slug': u'Pencil', u'comment_count': u'0', u'tag': [], u'date': u'2013-04-28 21:22:41', u'type': u'portfolio', u'id': u'4876', u'comment_status': u'open'}, {u'status': u'publish', u'category': [], u'name': u'pencil-drawing', u'parent': u'0', u'title': u'Pencil Drawings', u'url': u'http://artcontrol.me/?post_type=portfolio&p=4869', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'', u'modified': u'2013-04-28 21:21:40', u'slug': u'Pencil Drawings', u'comment_count': u'0', u'tag': [], u'date': u'2013-04-28 15:41:15', u'type': u'portfolio', u'id': u'4869', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'82', u'name': u'draw', u'parent': u'0', u'term_id': u'7', u'cat_ID': u'7', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'draw', u'category_count': u'82', u'term_taxonomy_id': u'7', u'taxonomy': u'category', u'category_nicename': u'draw', u'slug': u'draw', u'description': u''}], u'name': u'dzhokar-redditgetsdrawn-portraits', u'parent': u'0', u'title': u'Dzhokar RedditGetsDrawn Portraits', u'url': u'http://artcontrol.me/?p=4845', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'The following images were drawn this morning. Reference used was photographs on RedditGetsdrawn. Minimal line, but enough to fill in the area. No tone was used. For tone HB', u'modified': u'2013-04-23 15:45:33', u'slug': u'Dzhokar RedditGetsDrawn Portraits', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'1', u'name': u'dzhokar', u'parent': u'0', u'term_id': u'191', u'term_taxonomy_id': u'209', u'taxonomy': u'post_tag', u'slug': u'dzhokar', u'description': u''}, {u'term_group': u'0', u'count': u'33', u'name': u'portrait', u'parent': u'0', u'term_id': u'20', u'term_taxonomy_id': u'20', u'taxonomy': u'post_tag', u'slug': u'portrait', u'description': u''}], u'date': u'2013-04-23 15:45:32', u'type': u'post', u'id': u'4845', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'82', u'name': u'draw', u'parent': u'0', u'term_id': u'7', u'cat_ID': u'7', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'draw', u'category_count': u'82', u'term_taxonomy_id': u'7', u'taxonomy': u'category', u'category_nicename': u'draw', u'slug': u'draw', u'description': u''}], u'name': u'2h-pencil-works', u'parent': u'0', u'title': u'2H Pencil Works', u'url': u'http://artcontrol.me/?p=4829', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u' \r\n\r\n \r\n\r\nThe following images were drawn recently in an a5 sketchbook. Paper quality is high. Slightly textured. Page is easily marked. 2H pencil was used. This', u'modified': u'2013-04-22 23:33:16', u'slug': u'2H Pencil Works', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'34', u'name': u'pencil', u'parent': u'0', u'term_id': u'10', u'term_taxonomy_id': u'10', u'taxonomy': u'post_tag', u'slug': u'pencil', u'description': u''}, {u'term_group': u'0', u'count': u'33', u'name': u'portrait', u'parent': u'0', u'term_id': u'20', u'term_taxonomy_id': u'20', u'taxonomy': u'post_tag', u'slug': u'portrait', u'description': u''}, {u'term_group': u'0', u'count': u'11', u'name': u'redditgetsdrawn', u'parent': u'0', u'term_id': u'119', u'term_taxonomy_id': u'125', u'taxonomy': u'post_tag', u'slug': u'redditgetsdrawn', u'description': u''}, {u'term_group': u'0', u'count': u'5', u'name': u'sketchbook', u'parent': u'0', u'term_id': u'87', u'term_taxonomy_id': u'89', u'taxonomy': u'post_tag', u'slug': u'sketchbook', u'description': u''}], u'date': u'2013-04-22 23:33:15', u'type': u'post', u'id': u'4829', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'13', u'name': u'paint', u'parent': u'0', u'term_id': u'15', u'cat_ID': u'15', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'paint', u'category_count': u'13', u'term_taxonomy_id': u'15', u'taxonomy': u'category', u'category_nicename': u'paint', u'slug': u'paint', u'description': u''}], u'name': u'oil-paint-portrait-tree', u'parent': u'0', u'title': u'Oil Paint Portrait Tree', u'url': u'http://artcontrol.me/?p=4821', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"Oil paint hasn't been used since 2011. Blank wooden boards were lying around the room. Not being used is a waste. The follow images were painted. Relaxing, and something", u'modified': u'2013-04-20 22:31:19', u'slug': u'Oil Paint Portrait Tree', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'1', u'name': u'board', u'parent': u'0', u'term_id': u'190', u'term_taxonomy_id': u'208', u'taxonomy': u'post_tag', u'slug': u'board', u'description': u''}, {u'term_group': u'0', u'count': u'3', u'name': u'oil', u'parent': u'0', u'term_id': u'39', u'term_taxonomy_id': u'40', u'taxonomy': u'post_tag', u'slug': u'oil', u'description': u''}, {u'term_group': u'0', u'count': u'33', u'name': u'portrait', u'parent': u'0', u'term_id': u'20', u'term_taxonomy_id': u'20', u'taxonomy': u'post_tag', u'slug': u'portrait', u'description': u''}, {u'term_group': u'0', u'count': u'1', u'name': u'wood', u'parent': u'0', u'term_id': u'189', u'term_taxonomy_id': u'207', u'taxonomy': u'post_tag', u'slug': u'wood', u'description': u''}], u'date': u'2013-04-20 22:31:19', u'type': u'post', u'id': u'4821', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'27', u'name': u'Digital Painting', u'parent': u'0', u'term_id': u'169', u'cat_ID': u'169', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'Digital Painting', u'category_count': u'27', u'term_taxonomy_id': u'181', u'taxonomy': u'category', u'category_nicename': u'digpaint', u'slug': u'digpaint', u'description': u''}], u'name': u'three-angry-figures', u'parent': u'0', u'title': u'Three Angry Figures', u'url': u'http://artcontrol.me/?p=4818', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"I've been doing other things rather than updating this blog. It's a shame really. I do art. I do photography. I don't get it uploaded. My laptop is a mess and I'll really", u'modified': u'2013-04-20 00:37:29', u'slug': u'Three Angry Figures', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'17', u'name': u'figure', u'parent': u'0', u'term_id': u'8', u'term_taxonomy_id': u'8', u'taxonomy': u'post_tag', u'slug': u'figure', u'description': u''}, {u'term_group': u'0', u'count': u'85', u'name': u'GIMP', u'parent': u'0', u'term_id': u'59', u'term_taxonomy_id': u'60', u'taxonomy': u'post_tag', u'slug': u'gimp', u'description': u''}], u'date': u'2013-04-20 00:37:29', u'type': u'post', u'id': u'4818', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'82', u'name': u'draw', u'parent': u'0', u'term_id': u'7', u'cat_ID': u'7', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'draw', u'category_count': u'82', u'term_taxonomy_id': u'7', u'taxonomy': u'category', u'category_nicename': u'draw', u'slug': u'draw', u'description': u''}], u'name': u'march-concept-title', u'parent': u'0', u'title': u'March concept title', u'url': u'http://artcontrol.me/?p=4782', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"Currently my drawing tablet is broken.\xa0 Usb won't recognise the device.\xa0 I'm working on getting it fixed.\xa0 In the meantime,\xa0 pen and paper plus digital painting on the", u'modified': u'2013-04-07 02:27:55', u'slug': u'March concept title', u'comment_count': u'0', u'tag': [], u'date': u'2013-04-07 02:27:55', u'type': u'post', u'id': u'4782', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'27', u'name': u'Digital Painting', u'parent': u'0', u'term_id': u'169', u'cat_ID': u'169', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'Digital Painting', u'category_count': u'27', u'term_taxonomy_id': u'181', u'taxonomy': u'category', u'category_nicename': u'digpaint', u'slug': u'digpaint', u'description': u''}], u'name': u'well-boat-painting', u'parent': u'0', u'title': u'Well boat painting', u'url': u'http://artcontrol.me/?p=4749', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"It's a rare moment when William takes his pencil drawings digital. He has been focused on working from photo and imagination. That's something that needs to change - a", u'modified': u'2013-03-28 11:07:13', u'slug': u'Well boat painting', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'1', u'name': u'boat', u'parent': u'0', u'term_id': u'186', u'term_taxonomy_id': u'203', u'taxonomy': u'post_tag', u'slug': u'boat', u'description': u''}, {u'term_group': u'0', u'count': u'85', u'name': u'GIMP', u'parent': u'0', u'term_id': u'59', u'term_taxonomy_id': u'60', u'taxonomy': u'post_tag', u'slug': u'gimp', u'description': u''}, {u'term_group': u'0', u'count': u'6', u'name': u'grayscale', u'parent': u'0', u'term_id': u'82', u'term_taxonomy_id': u'84', u'taxonomy': u'post_tag', u'slug': u'grayscale', u'description': u''}, {u'term_group': u'0', u'count': u'3', u'name': u'line', u'parent': u'0', u'term_id': u'159', u'term_taxonomy_id': u'168', u'taxonomy': u'post_tag', u'slug': u'line', u'description': u''}, {u'term_group': u'0', u'count': u'1', u'name': u'pencil development', u'parent': u'0', u'term_id': u'185', u'term_taxonomy_id': u'202', u'taxonomy': u'post_tag', u'slug': u'pencil-development-2', u'description': u''}], u'date': u'2013-03-28 11:07:13', u'type': u'post', u'id': u'4749', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'82', u'name': u'draw', u'parent': u'0', u'term_id': u'7', u'cat_ID': u'7', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'draw', u'category_count': u'82', u'term_taxonomy_id': u'7', u'taxonomy': u'category', u'category_nicename': u'draw', u'slug': u'draw', u'description': u''}], u'name': u'drawing-around-wellington', u'parent': u'0', u'title': u'Drawing around Wellington', u'url': u'http://artcontrol.me/?p=4727', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"I have a new sketchbook. It's likely the most expensive paper I've\xa0used.\xa0Slight texture, but nothing too major.\r\n\r\nHere's drawings from around Wellington:\r\n\r\nThe", u'modified': u'2013-03-24 19:41:59', u'slug': u'Drawing around Wellington', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'1', u'name': u'pencil. line', u'parent': u'0', u'term_id': u'184', u'term_taxonomy_id': u'201', u'taxonomy': u'post_tag', u'slug': u'pencil-line', u'description': u''}, {u'term_group': u'0', u'count': u'2', u'name': u'waterfront', u'parent': u'0', u'term_id': u'175', u'term_taxonomy_id': u'192', u'taxonomy': u'post_tag', u'slug': u'waterfront', u'description': u''}, {u'term_group': u'0', u'count': u'15', u'name': u'wellington', u'parent': u'0', u'term_id': u'94', u'term_taxonomy_id': u'96', u'taxonomy': u'post_tag', u'slug': u'wellington', u'description': u''}], u'date': u'2013-03-24 19:41:36', u'type': u'post', u'id': u'4727', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'27', u'name': u'Digital Painting', u'parent': u'0', u'term_id': u'169', u'cat_ID': u'169', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'Digital Painting', u'category_count': u'27', u'term_taxonomy_id': u'181', u'taxonomy': u'category', u'category_nicename': u'digpaint', u'slug': u'digpaint', u'description': u''}], u'name': u'cuba-sunsets', u'parent': u'0', u'title': u'Cuba Sunsets', u'url': u'http://artcontrol.me/?p=4715', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"I've been wanting to complete some digital paintings for days. I've been busy with other art related activities. I have so much work to sort though. Create a portfolio book", u'modified': u'2013-03-21 10:34:14', u'slug': u'Cuba Sunsets', u'comment_count': u'0', u'tag': [], u'date': u'2013-03-21 10:33:40', u'type': u'post', u'id': u'4715', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'82', u'name': u'draw', u'parent': u'0', u'term_id': u'7', u'cat_ID': u'7', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'draw', u'category_count': u'82', u'term_taxonomy_id': u'7', u'taxonomy': u'category', u'category_nicename': u'draw', u'slug': u'draw', u'description': u''}, {u'term_group': u'0', u'count': u'11', u'name': u'RedditGetsDrawn', u'parent': u'169', u'term_id': u'170', u'cat_ID': u'170', u'category_description': u'', u'category_parent': u'169', u'cat_name': u'RedditGetsDrawn', u'category_count': u'11', u'term_taxonomy_id': u'182', u'taxonomy': u'category', u'category_nicename': u'redditgetsdrawn-digpaint', u'slug': u'redditgetsdrawn-digpaint', u'description': u''}], u'name': u'redditgetsdrawn-kobo-sketches', u'parent': u'0', u'title': u'RedditGetsDrawn Kobo Sketches', u'url': u'http://artcontrol.me/?p=2829', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"I've used my new Kobo for more drawings. I used my ipod touch to look at reference photos on RedditGetsDrawn and then sketch them on the Kobo. No color and such for the Kobo", u'modified': u'2013-03-17 16:38:41', u'slug': u'RedditGetsDrawn Kobo Sketches', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'2', u'name': u'kobo', u'parent': u'0', u'term_id': u'182', u'term_taxonomy_id': u'199', u'taxonomy': u'post_tag', u'slug': u'kobo', u'description': u''}], u'date': u'2013-03-17 16:38:41', u'type': u'post', u'id': u'2829', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'kobo-mini-drawing', u'parent': u'0', u'title': u'Kobo Mini Drawing', u'url': u'http://artcontrol.me/?p=2823', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"I now have a Kobo Mini. At 5 inchs it's small, but it does the trick. I downloaded free epub files for it at first. But now I've uploaded a collection of epub files that I", u'modified': u'2013-03-15 06:47:20', u'slug': u'Kobo Mini Drawing', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'9', u'name': u'character', u'parent': u'0', u'term_id': u'33', u'term_taxonomy_id': u'34', u'taxonomy': u'post_tag', u'slug': u'character', u'description': u''}, {u'term_group': u'0', u'count': u'2', u'name': u'Draw', u'parent': u'0', u'term_id': u'86', u'term_taxonomy_id': u'88', u'taxonomy': u'post_tag', u'slug': u'draw-2', u'description': u''}, {u'term_group': u'0', u'count': u'2', u'name': u'kobo', u'parent': u'0', u'term_id': u'182', u'term_taxonomy_id': u'199', u'taxonomy': u'post_tag', u'slug': u'kobo', u'description': u''}, {u'term_group': u'0', u'count': u'2', u'name': u'type', u'parent': u'0', u'term_id': u'143', u'term_taxonomy_id': u'151', u'taxonomy': u'post_tag', u'slug': u'type', u'description': u''}], u'date': u'2013-03-15 06:47:20', u'type': u'post', u'id': u'2823', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'27', u'name': u'Digital Painting', u'parent': u'0', u'term_id': u'169', u'cat_ID': u'169', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'Digital Painting', u'category_count': u'27', u'term_taxonomy_id': u'181', u'taxonomy': u'category', u'category_nicename': u'digpaint', u'slug': u'digpaint', u'description': u''}, {u'term_group': u'0', u'count': u'1', u'name': u'Pencil Development', u'parent': u'169', u'term_id': u'180', u'cat_ID': u'180', u'category_description': u'', u'category_parent': u'169', u'cat_name': u'Pencil Development', u'category_count': u'1', u'term_taxonomy_id': u'197', u'taxonomy': u'category', u'category_nicename': u'pencil-development', u'slug': u'pencil-development', u'description': u''}], u'name': u'circling-wellington-building-painting', u'parent': u'0', u'title': u'Circling Wellington building painting', u'url': u'http://artcontrol.me/?p=2808', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"Slow on the digital painting recently. I've been filling up my sketchbook with pencil drawings. This morning though I went to Lower Hutt Starbucks and finished a cityscape", u'modified': u'2013-03-13 11:07:20', u'slug': u'Circling Wellington building painting', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'21', u'name': u'color', u'parent': u'0', u'term_id': u'30', u'term_taxonomy_id': u'31', u'taxonomy': u'post_tag', u'slug': u'color', u'description': u''}, {u'term_group': u'0', u'count': u'4', u'name': u'Cuba Street', u'parent': u'0', u'term_id': u'107', u'term_taxonomy_id': u'109', u'taxonomy': u'post_tag', u'slug': u'cuba-street', u'description': u''}, {u'term_group': u'0', u'count': u'85', u'name': u'GIMP', u'parent': u'0', u'term_id': u'59', u'term_taxonomy_id': u'60', u'taxonomy': u'post_tag', u'slug': u'gimp', u'description': u''}, {u'term_group': u'0', u'count': u'6', u'name': u'grayscale', u'parent': u'0', u'term_id': u'82', u'term_taxonomy_id': u'84', u'taxonomy': u'post_tag', u'slug': u'grayscale', u'description': u''}, {u'term_group': u'0', u'count': u'1', u'name': u'hastings', u'parent': u'0', u'term_id': u'181', u'term_taxonomy_id': u'198', u'taxonomy': u'post_tag', u'slug': u'hastings', u'description': u''}, {u'term_group': u'0', u'count': u'3', u'name': u'line', u'parent': u'0', u'term_id': u'159', u'term_taxonomy_id': u'168', u'taxonomy': u'post_tag', u'slug': u'line', u'description': u''}, {u'term_group': u'0', u'count': u'34', u'name': u'pencil', u'parent': u'0', u'term_id': u'10', u'term_taxonomy_id': u'10', u'taxonomy': u'post_tag', u'slug': u'pencil', u'description': u''}, {u'term_group': u'0', u'count': u'3', u'name': u'Tone', u'parent': u'0', u'term_id': u'114', u'term_taxonomy_id': u'118', u'taxonomy': u'post_tag', u'slug': u'tone', u'description': u''}, {u'term_group': u'0', u'count': u'15', u'name': u'wellington', u'parent': u'0', u'term_id': u'94', u'term_taxonomy_id': u'96', u'taxonomy': u'post_tag', u'slug': u'wellington', u'description': u''}], u'date': u'2013-03-13 11:06:30', u'type': u'post', u'id': u'2808', u'comment_status': u'open'}, {u'status': u'publish', u'category': [], u'name': u'slider1', u'parent': u'0', u'title': u'Slider1', u'url': u'http://artcontrol.me/thethe-slider/slider1/', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'', u'modified': u'2013-03-09 15:12:55', u'slug': u'Slider1', u'comment_count': u'0', u'tag': [], u'date': u'2013-03-09 15:12:55', u'type': u'thethe-slider', u'id': u'2797', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'regina-spektor-and-characters-on-the-wall', u'parent': u'0', u'title': u'Regina Spektor and Characters on the wall ', u'url': u'http://artcontrol.me/?p=2775', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'Some portrait painting during my time in Wainui. These were used as demos to show Michelle how I digitally painted.\r\n\r\nHere we go:\xa0\r\n Since I only have the laptop currently', u'modified': u'2013-03-10 16:40:27', u'slug': u'Regina Spektor and Characters on the wall ', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'9', u'name': u'character', u'parent': u'0', u'term_id': u'33', u'term_taxonomy_id': u'34', u'taxonomy': u'post_tag', u'slug': u'character', u'description': u''}, {u'term_group': u'0', u'count': u'85', u'name': u'GIMP', u'parent': u'0', u'term_id': u'59', u'term_taxonomy_id': u'60', u'taxonomy': u'post_tag', u'slug': u'gimp', u'description': u''}, {u'term_group': u'0', u'count': u'6', u'name': u'paint', u'parent': u'0', u'term_id': u'15', u'term_taxonomy_id': u'134', u'taxonomy': u'post_tag', u'slug': u'paint', u'description': u''}, {u'term_group': u'0', u'count': u'33', u'name': u'portrait', u'parent': u'0', u'term_id': u'20', u'term_taxonomy_id': u'20', u'taxonomy': u'post_tag', u'slug': u'portrait', u'description': u''}, {u'term_group': u'0', u'count': u'1', u'name': u'regina spektor', u'parent': u'0', u'term_id': u'179', u'term_taxonomy_id': u'196', u'taxonomy': u'post_tag', u'slug': u'regina-spektor', u'description': u''}], u'date': u'2013-03-10 16:40:27', u'type': u'post', u'id': u'2775', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'27', u'name': u'Digital Painting', u'parent': u'0', u'term_id': u'169', u'cat_ID': u'169', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'Digital Painting', u'category_count': u'27', u'term_taxonomy_id': u'181', u'taxonomy': u'category', u'category_nicename': u'digpaint', u'slug': u'digpaint', u'description': u''}, {u'term_group': u'0', u'count': u'82', u'name': u'draw', u'parent': u'0', u'term_id': u'7', u'cat_ID': u'7', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'draw', u'category_count': u'82', u'term_taxonomy_id': u'7', u'taxonomy': u'category', u'category_nicename': u'draw', u'slug': u'draw', u'description': u''}, {u'term_group': u'0', u'count': u'11', u'name': u'RedditGetsDrawn', u'parent': u'169', u'term_id': u'170', u'cat_ID': u'170', u'category_description': u'', u'category_parent': u'169', u'cat_name': u'RedditGetsDrawn', u'category_count': u'11', u'term_taxonomy_id': u'182', u'taxonomy': u'category', u'category_nicename': u'redditgetsdrawn-digpaint', u'slug': u'redditgetsdrawn-digpaint', u'description': u''}], u'name': u'color-explored-with-redditgetsdrawn-paintings', u'parent': u'0', u'title': u'Color explored with RedditGetsDrawn Paintings', u'url': u'http://artcontrol.me/?p=2757', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"Here's some more digital works. This time I used reference from RedditGetsDrawn.\r\n\r\n\r\n \r\n\r\nPortrait photo reference. I usually go for photos that have more of the body", u'modified': u'2013-03-08 02:08:55', u'slug': u'Color explored with RedditGetsDrawn Paintings', u'comment_count': u'1', u'tag': [{u'term_group': u'0', u'count': u'21', u'name': u'color', u'parent': u'0', u'term_id': u'30', u'term_taxonomy_id': u'31', u'taxonomy': u'post_tag', u'slug': u'color', u'description': u''}, {u'term_group': u'0', u'count': u'3', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'term_taxonomy_id': u'120', u'taxonomy': u'post_tag', u'slug': u'digital', u'description': u''}, {u'term_group': u'0', u'count': u'1', u'name': u'environmental', u'parent': u'0', u'term_id': u'178', u'term_taxonomy_id': u'195', u'taxonomy': u'post_tag', u'slug': u'environmental', u'description': u''}, {u'term_group': u'0', u'count': u'17', u'name': u'figure', u'parent': u'0', u'term_id': u'8', u'term_taxonomy_id': u'8', u'taxonomy': u'post_tag', u'slug': u'figure', u'description': u''}, {u'term_group': u'0', u'count': u'85', u'name': u'GIMP', u'parent': u'0', u'term_id': u'59', u'term_taxonomy_id': u'60', u'taxonomy': u'post_tag', u'slug': u'gimp', u'description': u''}], u'date': u'2013-03-08 02:08:55', u'type': u'post', u'id': u'2757', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'27', u'name': u'Digital Painting', u'parent': u'0', u'term_id': u'169', u'cat_ID': u'169', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'Digital Painting', u'category_count': u'27', u'term_taxonomy_id': u'181', u'taxonomy': u'category', u'category_nicename': u'digpaint', u'slug': u'digpaint', u'description': u''}, {u'term_group': u'0', u'count': u'11', u'name': u'RedditGetsDrawn', u'parent': u'169', u'term_id': u'170', u'cat_ID': u'170', u'category_description': u'', u'category_parent': u'169', u'cat_name': u'RedditGetsDrawn', u'category_count': u'11', u'term_taxonomy_id': u'182', u'taxonomy': u'category', u'category_nicename': u'redditgetsdrawn-digpaint', u'slug': u'redditgetsdrawn-digpaint', u'description': u''}], u'name': u'badly-painted-microsoft-paint-works', u'parent': u'0', u'title': u'Badly Painted Microsoft Paint Works', u'url': u'http://artcontrol.me/?p=2738', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"Slow recently on the blogging. I'm not that motivated to upload my\xa0photographs\xa0to my photography blog here due to the slow connection and\xa0continued\xa0timeouts. I need to", u'modified': u'2013-03-06 06:17:27', u'slug': u'Badly Painted Microsoft Paint Works', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'9', u'name': u'character', u'parent': u'0', u'term_id': u'33', u'term_taxonomy_id': u'34', u'taxonomy': u'post_tag', u'slug': u'character', u'description': u''}, {u'term_group': u'0', u'count': u'21', u'name': u'color', u'parent': u'0', u'term_id': u'30', u'term_taxonomy_id': u'31', u'taxonomy': u'post_tag', u'slug': u'color', u'description': u''}, {u'term_group': u'0', u'count': u'1', u'name': u'ms paint', u'parent': u'0', u'term_id': u'176', u'term_taxonomy_id': u'193', u'taxonomy': u'post_tag', u'slug': u'ms-paint', u'description': u''}, {u'term_group': u'0', u'count': u'33', u'name': u'portrait', u'parent': u'0', u'term_id': u'20', u'term_taxonomy_id': u'20', u'taxonomy': u'post_tag', u'slug': u'portrait', u'description': u''}, {u'term_group': u'0', u'count': u'1', u'name': u'redditgetsdrawnbadly', u'parent': u'0', u'term_id': u'177', u'term_taxonomy_id': u'194', u'taxonomy': u'post_tag', u'slug': u'redditgetsdrawnbadly', u'description': u''}], u'date': u'2013-03-06 06:17:27', u'type': u'post', u'id': u'2738', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'82', u'name': u'draw', u'parent': u'0', u'term_id': u'7', u'cat_ID': u'7', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'draw', u'category_count': u'82', u'term_taxonomy_id': u'7', u'taxonomy': u'category', u'category_nicename': u'draw', u'slug': u'draw', u'description': u''}], u'name': u'hastings-imagine-painting', u'parent': u'0', u'title': u'Hastings Imagine Painting', u'url': u'http://artcontrol.me/?p=2709', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"Currently staying at a farm just out of Hastings. Slow on the\xa0digital\xa0painting, but getting\xa0plenty\xa0of Photography and Pencil Drawings done.\r\n\r\nHere's a digital painting I", u'modified': u'2013-02-27 17:59:26', u'slug': u'Hastings Imagine Painting', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'21', u'name': u'color', u'parent': u'0', u'term_id': u'30', u'term_taxonomy_id': u'31', u'taxonomy': u'post_tag', u'slug': u'color', u'description': u''}, {u'term_group': u'0', u'count': u'85', u'name': u'GIMP', u'parent': u'0', u'term_id': u'59', u'term_taxonomy_id': u'60', u'taxonomy': u'post_tag', u'slug': u'gimp', u'description': u''}, {u'term_group': u'0', u'count': u'3', u'name': u'imagine', u'parent': u'0', u'term_id': u'174', u'term_taxonomy_id': u'191', u'taxonomy': u'post_tag', u'slug': u'imagine', u'description': u''}], u'date': u'2013-02-27 17:59:26', u'type': u'post', u'id': u'2709', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'82', u'name': u'draw', u'parent': u'0', u'term_id': u'7', u'cat_ID': u'7', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'draw', u'category_count': u'82', u'term_taxonomy_id': u'7', u'taxonomy': u'category', u'category_nicename': u'draw', u'slug': u'draw', u'description': u''}], u'name': u'wellington-draw', u'parent': u'0', u'title': u'wellington draw', u'url': u'http://artcontrol.me/?p=2696', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'Currently in Hastings. Busy with the photos, plus some drawings. This post is for the drawings I did during my time in Wellington. I have wifi.\r\n\r\n\r\n\r\nThis view is of on the', u'modified': u'2013-03-04 00:30:28', u'slug': u'wellington draw', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'5', u'name': u'building', u'parent': u'0', u'term_id': u'70', u'term_taxonomy_id': u'72', u'taxonomy': u'post_tag', u'slug': u'building', u'description': u''}, {u'term_group': u'0', u'count': u'34', u'name': u'pencil', u'parent': u'0', u'term_id': u'10', u'term_taxonomy_id': u'10', u'taxonomy': u'post_tag', u'slug': u'pencil', u'description': u''}, {u'term_group': u'0', u'count': u'2', u'name': u'waterfront', u'parent': u'0', u'term_id': u'175', u'term_taxonomy_id': u'192', u'taxonomy': u'post_tag', u'slug': u'waterfront', u'description': u''}, {u'term_group': u'0', u'count': u'15', u'name': u'wellington', u'parent': u'0', u'term_id': u'94', u'term_taxonomy_id': u'96', u'taxonomy': u'post_tag', u'slug': u'wellington', u'description': u''}], u'date': u'2013-03-04 00:30:28', u'type': u'post', u'id': u'2696', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'82', u'name': u'draw', u'parent': u'0', u'term_id': u'7', u'cat_ID': u'7', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'draw', u'category_count': u'82', u'term_taxonomy_id': u'7', u'taxonomy': u'category', u'category_nicename': u'draw', u'slug': u'draw', u'description': u''}], u'name': u'pencil-drawings-from-wellington', u'parent': u'0', u'title': u'Pencil RedditGetsDrawn A5 Landscape', u'url': u'http://artcontrol.me/?p=2660', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"It's been a long time since I've uploaded pencil drawings.\xa0Everything has\xa0been digital. During my time in Wellington I got a new clutch pencil and did a bunch of pencil", u'modified': u'2013-02-21 10:56:13', u'slug': u'Pencil RedditGetsDrawn A5 Landscape', u'comment_count': u'1', u'tag': [{u'term_group': u'0', u'count': u'2', u'name': u'child', u'parent': u'0', u'term_id': u'172', u'term_taxonomy_id': u'189', u'taxonomy': u'post_tag', u'slug': u'child', u'description': u''}, {u'term_group': u'0', u'count': u'22', u'name': u'female', u'parent': u'0', u'term_id': u'19', u'term_taxonomy_id': u'19', u'taxonomy': u'post_tag', u'slug': u'female', u'description': u''}, {u'term_group': u'0', u'count': u'17', u'name': u'figure', u'parent': u'0', u'term_id': u'8', u'term_taxonomy_id': u'8', u'taxonomy': u'post_tag', u'slug': u'figure', u'description': u''}, {u'term_group': u'0', u'count': u'1', u'name': u'hat', u'parent': u'0', u'term_id': u'173', u'term_taxonomy_id': u'190', u'taxonomy': u'post_tag', u'slug': u'hat', u'description': u''}, {u'term_group': u'0', u'count': u'11', u'name': u'male', u'parent': u'0', u'term_id': u'22', u'term_taxonomy_id': u'22', u'taxonomy': u'post_tag', u'slug': u'male', u'description': u''}, {u'term_group': u'0', u'count': u'33', u'name': u'portrait', u'parent': u'0', u'term_id': u'20', u'term_taxonomy_id': u'20', u'taxonomy': u'post_tag', u'slug': u'portrait', u'description': u''}, {u'term_group': u'0', u'count': u'11', u'name': u'redditgetsdrawn', u'parent': u'0', u'term_id': u'119', u'term_taxonomy_id': u'125', u'taxonomy': u'post_tag', u'slug': u'redditgetsdrawn', u'description': u''}], u'date': u'2013-02-21 10:54:39', u'type': u'post', u'id': u'2660', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'27', u'name': u'Digital Painting', u'parent': u'0', u'term_id': u'169', u'cat_ID': u'169', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'Digital Painting', u'category_count': u'27', u'term_taxonomy_id': u'181', u'taxonomy': u'category', u'category_nicename': u'digpaint', u'slug': u'digpaint', u'description': u''}, {u'term_group': u'0', u'count': u'11', u'name': u'RedditGetsDrawn', u'parent': u'169', u'term_id': u'170', u'cat_ID': u'170', u'category_description': u'', u'category_parent': u'169', u'cat_name': u'RedditGetsDrawn', u'category_count': u'11', u'term_taxonomy_id': u'182', u'taxonomy': u'category', u'category_nicename': u'redditgetsdrawn-digpaint', u'slug': u'redditgetsdrawn-digpaint', u'description': u''}], u'name': u'skullgirl', u'parent': u'0', u'title': u'Skull Girl painting from RedditGetsDrawn', u'url': u'http://artcontrol.me/?p=2638', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"Currently in Wellington.I have my tablet with me but likely it won't get much use - the weather in Wellington is beautiful. I plan on getting out and photographing and maybe", u'modified': u'2013-02-16 20:16:02', u'slug': u'Skull Girl painting from RedditGetsDrawn', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'21', u'name': u'color', u'parent': u'0', u'term_id': u'30', u'term_taxonomy_id': u'31', u'taxonomy': u'post_tag', u'slug': u'color', u'description': u''}, {u'term_group': u'0', u'count': u'85', u'name': u'GIMP', u'parent': u'0', u'term_id': u'59', u'term_taxonomy_id': u'60', u'taxonomy': u'post_tag', u'slug': u'gimp', u'description': u''}, {u'term_group': u'0', u'count': u'6', u'name': u'paint', u'parent': u'0', u'term_id': u'15', u'term_taxonomy_id': u'134', u'taxonomy': u'post_tag', u'slug': u'paint', u'description': u''}], u'date': u'2013-02-16 20:14:23', u'type': u'post', u'id': u'2638', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'27', u'name': u'Digital Painting', u'parent': u'0', u'term_id': u'169', u'cat_ID': u'169', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'Digital Painting', u'category_count': u'27', u'term_taxonomy_id': u'181', u'taxonomy': u'category', u'category_nicename': u'digpaint', u'slug': u'digpaint', u'description': u''}], u'name': u'wellington-rail-remake', u'parent': u'0', u'title': u'Wellington Rail Remake', u'url': u'http://artcontrol.me/?p=2633', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"This is Wellington Railway Station Digital Painting,\xa0I've been producing plenty of RedditGetsDrawn works lately, these have been a character focused but have included", u'modified': u'2013-02-15 08:58:26', u'slug': u'Wellington Rail Remake', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'85', u'name': u'GIMP', u'parent': u'0', u'term_id': u'59', u'term_taxonomy_id': u'60', u'taxonomy': u'post_tag', u'slug': u'gimp', u'description': u''}, {u'term_group': u'0', u'count': u'5', u'name': u'sketchbook', u'parent': u'0', u'term_id': u'87', u'term_taxonomy_id': u'89', u'taxonomy': u'post_tag', u'slug': u'sketchbook', u'description': u''}, {u'term_group': u'0', u'count': u'15', u'name': u'wellington', u'parent': u'0', u'term_id': u'94', u'term_taxonomy_id': u'96', u'taxonomy': u'post_tag', u'slug': u'wellington', u'description': u''}], u'date': u'2013-02-15 08:58:26', u'type': u'post', u'id': u'2633', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'27', u'name': u'Digital Painting', u'parent': u'0', u'term_id': u'169', u'cat_ID': u'169', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'Digital Painting', u'category_count': u'27', u'term_taxonomy_id': u'181', u'taxonomy': u'category', u'category_nicename': u'digpaint', u'slug': u'digpaint', u'description': u''}, {u'term_group': u'0', u'count': u'11', u'name': u'RedditGetsDrawn', u'parent': u'169', u'term_id': u'170', u'cat_ID': u'170', u'category_description': u'', u'category_parent': u'169', u'cat_name': u'RedditGetsDrawn', u'category_count': u'11', u'term_taxonomy_id': u'182', u'taxonomy': u'category', u'category_nicename': u'redditgetsdrawn-digpaint', u'slug': u'redditgetsdrawn-digpaint', u'description': u''}], u'name': u'beautiful-red-dress-painting', u'parent': u'0', u'title': u'Beautiful Red Dress Painting ', u'url': u'http://artcontrol.me/?p=2619', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"Today has been a bad day. I have an awful headache and feeling sick. I've managed to half finish a painting (just have the color to do). I am broke if anyone would care to", u'modified': u'2013-02-13 14:10:14', u'slug': u'Beautiful Red Dress Painting ', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'21', u'name': u'color', u'parent': u'0', u'term_id': u'30', u'term_taxonomy_id': u'31', u'taxonomy': u'post_tag', u'slug': u'color', u'description': u''}, {u'term_group': u'0', u'count': u'22', u'name': u'female', u'parent': u'0', u'term_id': u'19', u'term_taxonomy_id': u'19', u'taxonomy': u'post_tag', u'slug': u'female', u'description': u''}, {u'term_group': u'0', u'count': u'85', u'name': u'GIMP', u'parent': u'0', u'term_id': u'59', u'term_taxonomy_id': u'60', u'taxonomy': u'post_tag', u'slug': u'gimp', u'description': u''}, {u'term_group': u'0', u'count': u'3', u'name': u'photo reference', u'parent': u'0', u'term_id': u'139', u'term_taxonomy_id': u'147', u'taxonomy': u'post_tag', u'slug': u'photo-reference', u'description': u''}, {u'term_group': u'0', u'count': u'33', u'name': u'portrait', u'parent': u'0', u'term_id': u'20', u'term_taxonomy_id': u'20', u'taxonomy': u'post_tag', u'slug': u'portrait', u'description': u''}, {u'term_group': u'0', u'count': u'11', u'name': u'redditgetsdrawn', u'parent': u'0', u'term_id': u'119', u'term_taxonomy_id': u'125', u'taxonomy': u'post_tag', u'slug': u'redditgetsdrawn', u'description': u''}], u'date': u'2013-02-13 14:10:14', u'type': u'post', u'id': u'2619', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'color-painting-of-kikis-delivery-service', u'parent': u'0', u'title': u"Color painting of Kiki's Delivery Service ", u'url': u'http://artcontrol.me/?p=2615', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"Break from RedditGetsDrawn works for something a little different -\xa0Kiki's\xa0Delivery Service. I watched this film in 2011. It's rather perfect. If you haven't seen it yet,", u'modified': u'2013-02-13 01:35:27', u'slug': u"Color painting of Kiki's Delivery Service ", u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'1', u'name': u'anime', u'parent': u'0', u'term_id': u'162', u'term_taxonomy_id': u'174', u'taxonomy': u'post_tag', u'slug': u'anime', u'description': u''}, {u'term_group': u'0', u'count': u'21', u'name': u'color', u'parent': u'0', u'term_id': u'30', u'term_taxonomy_id': u'31', u'taxonomy': u'post_tag', u'slug': u'color', u'description': u''}, {u'term_group': u'0', u'count': u'1', u'name': u'fan art', u'parent': u'0', u'term_id': u'163', u'term_taxonomy_id': u'175', u'taxonomy': u'post_tag', u'slug': u'fan-art', u'description': u''}, {u'term_group': u'0', u'count': u'1', u'name': u'impression', u'parent': u'0', u'term_id': u'168', u'term_taxonomy_id': u'180', u'taxonomy': u'post_tag', u'slug': u'impression', u'description': u''}, {u'term_group': u'0', u'count': u'1', u'name': u'kiki', u'parent': u'0', u'term_id': u'164', u'term_taxonomy_id': u'176', u'taxonomy': u'post_tag', u'slug': u'kiki', u'description': u''}, {u'term_group': u'0', u'count': u'1', u'name': u'ocean', u'parent': u'0', u'term_id': u'166', u'term_taxonomy_id': u'178', u'taxonomy': u'post_tag', u'slug': u'ocean', u'description': u''}, {u'term_group': u'0', u'count': u'1', u'name': u'sea', u'parent': u'0', u'term_id': u'165', u'term_taxonomy_id': u'177', u'taxonomy': u'post_tag', u'slug': u'sea', u'description': u''}, {u'term_group': u'0', u'count': u'1', u'name': u'witch', u'parent': u'0', u'term_id': u'167', u'term_taxonomy_id': u'179', u'taxonomy': u'post_tag', u'slug': u'witch', u'description': u''}], u'date': u'2013-02-13 01:35:27', u'type': u'post', u'id': u'2615', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'president-of-redditgetsdrawn', u'parent': u'0', u'title': u'President of RedditGetsDrawn', u'url': u'http://artcontrol.me/?p=2606', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"Just a short one today. I think It's better that I keep with these short blog posts rather than large 10+ paintings that just\xa0overwhelm\xa0me when typing and I end up giving", u'modified': u'2013-02-12 11:43:26', u'slug': u'President of RedditGetsDrawn', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'21', u'name': u'color', u'parent': u'0', u'term_id': u'30', u'term_taxonomy_id': u'31', u'taxonomy': u'post_tag', u'slug': u'color', u'description': u''}, {u'term_group': u'0', u'count': u'85', u'name': u'GIMP', u'parent': u'0', u'term_id': u'59', u'term_taxonomy_id': u'60', u'taxonomy': u'post_tag', u'slug': u'gimp', u'description': u''}, {u'term_group': u'0', u'count': u'1', u'name': u'president', u'parent': u'0', u'term_id': u'161', u'term_taxonomy_id': u'170', u'taxonomy': u'post_tag', u'slug': u'president', u'description': u''}, {u'term_group': u'0', u'count': u'11', u'name': u'redditgetsdrawn', u'parent': u'0', u'term_id': u'119', u'term_taxonomy_id': u'125', u'taxonomy': u'post_tag', u'slug': u'redditgetsdrawn', u'description': u''}], u'date': u'2013-02-12 11:43:26', u'type': u'post', u'id': u'2606', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'friday-redditgetsdrawn', u'parent': u'0', u'title': u'Friday RedditGetsDrawn', u'url': u'http://artcontrol.me/?p=2591', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"Currently taking a break from the painting and watching a few videos on youtube. Attempting to write this blog post as well, though it's slow and I'm not that motivated for", u'modified': u'2013-02-11 09:17:34', u'slug': u'Friday RedditGetsDrawn', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'17', u'name': u'figure', u'parent': u'0', u'term_id': u'8', u'term_taxonomy_id': u'8', u'taxonomy': u'post_tag', u'slug': u'figure', u'description': u''}, {u'term_group': u'0', u'count': u'85', u'name': u'GIMP', u'parent': u'0', u'term_id': u'59', u'term_taxonomy_id': u'60', u'taxonomy': u'post_tag', u'slug': u'gimp', u'description': u''}, {u'term_group': u'0', u'count': u'33', u'name': u'portrait', u'parent': u'0', u'term_id': u'20', u'term_taxonomy_id': u'20', u'taxonomy': u'post_tag', u'slug': u'portrait', u'description': u''}, {u'term_group': u'0', u'count': u'11', u'name': u'redditgetsdrawn', u'parent': u'0', u'term_id': u'119', u'term_taxonomy_id': u'125', u'taxonomy': u'post_tag', u'slug': u'redditgetsdrawn', u'description': u''}, {u'term_group': u'0', u'count': u'16', u'name': u'video', u'parent': u'0', u'term_id': u'37', u'term_taxonomy_id': u'38', u'taxonomy': u'post_tag', u'slug': u'video', u'description': u''}], u'date': u'2013-02-11 09:17:34', u'type': u'post', u'id': u'2591', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'more-paintings', u'parent': u'0', u'title': u'Reddit Gets Painted - Levin collection', u'url': u'http://artcontrol.me/?p=2546', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"More paintings from reference on Reddit. It's been a busy few days with these.\r\n\r\nThese girls are having fun on a beach scene. I\xa0partially like the left post, the leg on the", u'modified': u'2013-02-08 12:25:03', u'slug': u'Reddit Gets Painted - Levin collection', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'17', u'name': u'figure', u'parent': u'0', u'term_id': u'8', u'term_taxonomy_id': u'8', u'taxonomy': u'post_tag', u'slug': u'figure', u'description': u''}, {u'term_group': u'0', u'count': u'6', u'name': u'paint', u'parent': u'0', u'term_id': u'15', u'term_taxonomy_id': u'134', u'taxonomy': u'post_tag', u'slug': u'paint', u'description': u''}, {u'term_group': u'0', u'count': u'12', u'name': u'reddit', u'parent': u'0', u'term_id': u'112', u'term_taxonomy_id': u'116', u'taxonomy': u'post_tag', u'slug': u'reddit', u'description': u''}, {u'term_group': u'0', u'count': u'11', u'name': u'redditgetsdrawn', u'parent': u'0', u'term_id': u'119', u'term_taxonomy_id': u'125', u'taxonomy': u'post_tag', u'slug': u'redditgetsdrawn', u'description': u''}, {u'term_group': u'0', u'count': u'16', u'name': u'video', u'parent': u'0', u'term_id': u'37', u'term_taxonomy_id': u'38', u'taxonomy': u'post_tag', u'slug': u'video', u'description': u''}], u'date': u'2013-02-08 12:23:27', u'type': u'post', u'id': u'2546', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'horse', u'parent': u'0', u'title': u'Horse', u'url': u'http://artcontrol.me/?p=2524', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"Ok. So I'm back home now. That means I have my desktop computer and able to record my digital paintings without problems. During my time at my Mothers I didn't bother with", u'modified': u'2013-02-06 11:21:21', u'slug': u'Horse', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'1', u'name': u'horse', u'parent': u'0', u'term_id': u'160', u'term_taxonomy_id': u'169', u'taxonomy': u'post_tag', u'slug': u'horse', u'description': u''}], u'date': u'2013-02-06 11:21:21', u'type': u'post', u'id': u'2524', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'82', u'name': u'draw', u'parent': u'0', u'term_id': u'7', u'cat_ID': u'7', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'draw', u'category_count': u'82', u'term_taxonomy_id': u'7', u'taxonomy': u'category', u'category_nicename': u'draw', u'slug': u'draw', u'description': u''}], u'name': u'far-north-drawing', u'parent': u'0', u'title': u'Far North Drawing', u'url': u'http://artcontrol.me/?p=2520', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"It's been a long time since I've\xa0submitted\xa0traditional\xa0media works. Here are a few works from my sketchbook. I haven't been working in my sketchbook as much as I use to,", u'modified': u'2013-02-07 22:11:41', u'slug': u'Far North Drawing', u'comment_count': u'0', u'tag': [], u'date': u'2013-02-07 22:11:41', u'type': u'post', u'id': u'2520', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'girl-in-front-of-office-building', u'parent': u'0', u'title': u'Girl in front of office building', u'url': u'http://artcontrol.me/?p=2506', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"More redditgetsdrawn works. This time I'll talk about the works more because that last post I did with them was just lazy.\xa0Not fulll body here, but from the chest upwards.", u'modified': u'2013-02-04 10:39:17', u'slug': u'Girl in front of office building', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'85', u'name': u'GIMP', u'parent': u'0', u'term_id': u'59', u'term_taxonomy_id': u'60', u'taxonomy': u'post_tag', u'slug': u'gimp', u'description': u''}, {u'term_group': u'0', u'count': u'6', u'name': u'grayscale', u'parent': u'0', u'term_id': u'82', u'term_taxonomy_id': u'84', u'taxonomy': u'post_tag', u'slug': u'grayscale', u'description': u''}, {u'term_group': u'0', u'count': u'33', u'name': u'portrait', u'parent': u'0', u'term_id': u'20', u'term_taxonomy_id': u'20', u'taxonomy': u'post_tag', u'slug': u'portrait', u'description': u''}, {u'term_group': u'0', u'count': u'11', u'name': u'redditgetsdrawn', u'parent': u'0', u'term_id': u'119', u'term_taxonomy_id': u'125', u'taxonomy': u'post_tag', u'slug': u'redditgetsdrawn', u'description': u''}, {u'term_group': u'0', u'count': u'3', u'name': u'Tone', u'parent': u'0', u'term_id': u'114', u'term_taxonomy_id': u'118', u'taxonomy': u'post_tag', u'slug': u'tone', u'description': u''}], u'date': u'2013-02-04 10:38:30', u'type': u'post', u'id': u'2506', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'2', u'name': u'Game Release', u'parent': u'0', u'term_id': u'154', u'cat_ID': u'154', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'Game Release', u'category_count': u'2', u'term_taxonomy_id': u'162', u'taxonomy': u'category', u'category_nicename': u'game-release', u'slug': u'game-release', u'description': u''}], u'name': u'artcontrol-wmckee-jan2013-windowsweb', u'parent': u'0', u'title': u'Artcontrol-WMCKEE-Jan2013 - WINDOWS/WEB', u'url': u'http://artcontrol.me/?p=2395', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'Download my January 2013 game:\r\nCreated in Unity, exported to EXE, Uploaded for you. Please tell your friends.\r\nArtcontrol-WMCKEE-Jan2013 - WINDOWS\r\nDonations keep me alive,', u'modified': u'2013-01-31 16:14:23', u'slug': u'Artcontrol-WMCKEE-Jan2013 - WINDOWS/WEB', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'1', u'name': u'3d', u'parent': u'0', u'term_id': u'25', u'term_taxonomy_id': u'165', u'taxonomy': u'post_tag', u'slug': u'3d', u'description': u''}, {u'term_group': u'0', u'count': u'1', u'name': u'download', u'parent': u'0', u'term_id': u'155', u'term_taxonomy_id': u'163', u'taxonomy': u'post_tag', u'slug': u'download', u'description': u''}, {u'term_group': u'0', u'count': u'1', u'name': u'first person', u'parent': u'0', u'term_id': u'156', u'term_taxonomy_id': u'164', u'taxonomy': u'post_tag', u'slug': u'first-person', u'description': u''}, {u'term_group': u'0', u'count': u'2', u'name': u'gamedev', u'parent': u'0', u'term_id': u'45', u'term_taxonomy_id': u'46', u'taxonomy': u'post_tag', u'slug': u'gamedev', u'description': u''}, {u'term_group': u'0', u'count': u'2', u'name': u'unity', u'parent': u'0', u'term_id': u'63', u'term_taxonomy_id': u'65', u'taxonomy': u'post_tag', u'slug': u'unity', u'description': u''}], u'date': u'2013-01-31 16:14:23', u'type': u'post', u'id': u'2395', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'redditgetsdrawn-mums-office', u'parent': u'0', u'title': u'RedditGetsDrawn - Mums office', u'url': u'http://artcontrol.me/?p=2387', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"I have left Hamilton and currently at my Mothers home for several days. I haven't done any digital painting since the weekend (nice to have a break for it now and then) - but", u'modified': u'2013-02-03 12:34:08', u'slug': u'RedditGetsDrawn - Mums office', u'comment_count': u'0', u'tag': [], u'date': u'2013-02-03 12:34:08', u'type': u'post', u'id': u'2387', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'19', u'name': u'3d', u'parent': u'0', u'term_id': u'25', u'cat_ID': u'25', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'3d', u'category_count': u'19', u'term_taxonomy_id': u'25', u'taxonomy': u'category', u'category_nicename': u'3d', u'slug': u'3d', u'description': u''}, {u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'ggj-artwork-2d', u'parent': u'0', u'title': u'GGJ artwork - 2d', u'url': u'http://artcontrol.me/?p=2360', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'In the middle of making a game for The Global Game Jam. You can play the game here.\xa0 ', u'modified': u'2013-01-27 12:42:30', u'slug': u'GGJ artwork - 2d', u'comment_count': u'0', u'tag': [], u'date': u'2013-01-27 12:42:30', u'type': u'post', u'id': u'2360', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'mask', u'parent': u'0', u'title': u'mask', u'url': u'http://artcontrol.me/?p=2346', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"So I just did a dump of photos. I would of\xa0written\xa0more but my browser was going extremely slow and I just wanted to get something published.\r\n\r\nAnyway, I'm still at my", u'modified': u'2013-02-04 07:37:12', u'slug': u'mask', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'21', u'name': u'color', u'parent': u'0', u'term_id': u'30', u'term_taxonomy_id': u'31', u'taxonomy': u'post_tag', u'slug': u'color', u'description': u''}, {u'term_group': u'0', u'count': u'85', u'name': u'GIMP', u'parent': u'0', u'term_id': u'59', u'term_taxonomy_id': u'60', u'taxonomy': u'post_tag', u'slug': u'gimp', u'description': u''}, {u'term_group': u'0', u'count': u'6', u'name': u'grayscale', u'parent': u'0', u'term_id': u'82', u'term_taxonomy_id': u'84', u'taxonomy': u'post_tag', u'slug': u'grayscale', u'description': u''}, {u'term_group': u'0', u'count': u'3', u'name': u'line', u'parent': u'0', u'term_id': u'159', u'term_taxonomy_id': u'168', u'taxonomy': u'post_tag', u'slug': u'line', u'description': u''}, {u'term_group': u'0', u'count': u'11', u'name': u'redditgetsdrawn', u'parent': u'0', u'term_id': u'119', u'term_taxonomy_id': u'125', u'taxonomy': u'post_tag', u'slug': u'redditgetsdrawn', u'description': u''}], u'date': u'2013-02-04 07:37:12', u'type': u'post', u'id': u'2346', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'knight-tattoo', u'parent': u'0', u'title': u'Knight Tattoo', u'url': u'http://artcontrol.me/?p=2328', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"I'm currently in Hamilton, at the University. Global Game Jam is happening. I have my laptop setup and am painting.\r\n\r\nHere's a tattoo painting I worked on the other", u'modified': u'2013-01-25 21:57:45', u'slug': u'Knight Tattoo', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'85', u'name': u'GIMP', u'parent': u'0', u'term_id': u'59', u'term_taxonomy_id': u'60', u'taxonomy': u'post_tag', u'slug': u'gimp', u'description': u''}, {u'term_group': u'0', u'count': u'1', u'name': u'tattoo', u'parent': u'0', u'term_id': u'153', u'term_taxonomy_id': u'161', u'taxonomy': u'post_tag', u'slug': u'tattoo', u'description': u''}], u'date': u'2013-01-25 21:57:45', u'type': u'post', u'id': u'2328', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'82', u'name': u'draw', u'parent': u'0', u'term_id': u'7', u'cat_ID': u'7', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'draw', u'category_count': u'82', u'term_taxonomy_id': u'7', u'taxonomy': u'category', u'category_nicename': u'draw', u'slug': u'draw', u'description': u''}], u'name': u'kids', u'parent': u'0', u'title': u'kids', u'url': u'http://artcontrol.me/?p=2312', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'Last week I did a marathon of painting people from RedditGetsDrawn. The majority of the time the photos posted are only portraits, but I find fill figures to be more fun to', u'modified': u'2013-01-29 10:57:03', u'slug': u'kids', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'85', u'name': u'GIMP', u'parent': u'0', u'term_id': u'59', u'term_taxonomy_id': u'60', u'taxonomy': u'post_tag', u'slug': u'gimp', u'description': u''}, {u'term_group': u'0', u'count': u'11', u'name': u'redditgetsdrawn', u'parent': u'0', u'term_id': u'119', u'term_taxonomy_id': u'125', u'taxonomy': u'post_tag', u'slug': u'redditgetsdrawn', u'description': u''}], u'date': u'2013-01-29 10:57:03', u'type': u'post', u'id': u'2312', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'grim-fandango', u'parent': u'0', u'title': u'Grim Fandango', u'url': u'http://artcontrol.me/?p=2306', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'I need to update this blog more often. I have many artworks to get uploaded. Maybe I need someone to write for me? If you are interested in any writing\xa0positions, please', u'modified': u'2013-02-01 23:40:01', u'slug': u'Grim Fandango', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'21', u'name': u'color', u'parent': u'0', u'term_id': u'30', u'term_taxonomy_id': u'31', u'taxonomy': u'post_tag', u'slug': u'color', u'description': u''}, {u'term_group': u'0', u'count': u'3', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'term_taxonomy_id': u'120', u'taxonomy': u'post_tag', u'slug': u'digital', u'description': u''}, {u'term_group': u'0', u'count': u'1', u'name': u'games', u'parent': u'0', u'term_id': u'157', u'term_taxonomy_id': u'166', u'taxonomy': u'post_tag', u'slug': u'games', u'description': u''}, {u'term_group': u'0', u'count': u'85', u'name': u'GIMP', u'parent': u'0', u'term_id': u'59', u'term_taxonomy_id': u'60', u'taxonomy': u'post_tag', u'slug': u'gimp', u'description': u''}, {u'term_group': u'0', u'count': u'6', u'name': u'grayscale', u'parent': u'0', u'term_id': u'82', u'term_taxonomy_id': u'84', u'taxonomy': u'post_tag', u'slug': u'grayscale', u'description': u''}, {u'term_group': u'0', u'count': u'11', u'name': u'male', u'parent': u'0', u'term_id': u'22', u'term_taxonomy_id': u'22', u'taxonomy': u'post_tag', u'slug': u'male', u'description': u''}], u'date': u'2013-02-01 23:40:01', u'type': u'post', u'id': u'2306', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'spyro-the-dragon-breathing-fire', u'parent': u'0', u'title': u'Spyro The Dragon - breathing fire', u'url': u'http://artcontrol.me/?p=2291', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'Spyro was a favorite of mine when I was younger. I decided to carry on with the recent theme of painting in game screenshots. This one was suggested by one of my Twitter', u'modified': u'2013-01-24 17:24:33', u'slug': u'Spyro The Dragon - breathing fire', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'1', u'name': u'dragon', u'parent': u'0', u'term_id': u'152', u'term_taxonomy_id': u'160', u'taxonomy': u'post_tag', u'slug': u'dragon', u'description': u''}, {u'term_group': u'0', u'count': u'1', u'name': u'fire', u'parent': u'0', u'term_id': u'151', u'term_taxonomy_id': u'159', u'taxonomy': u'post_tag', u'slug': u'fire', u'description': u''}, {u'term_group': u'0', u'count': u'3', u'name': u'game', u'parent': u'0', u'term_id': u'46', u'term_taxonomy_id': u'144', u'taxonomy': u'post_tag', u'slug': u'game', u'description': u''}, {u'term_group': u'0', u'count': u'85', u'name': u'GIMP', u'parent': u'0', u'term_id': u'59', u'term_taxonomy_id': u'60', u'taxonomy': u'post_tag', u'slug': u'gimp', u'description': u''}, {u'term_group': u'0', u'count': u'1', u'name': u'screenshot', u'parent': u'0', u'term_id': u'150', u'term_taxonomy_id': u'158', u'taxonomy': u'post_tag', u'slug': u'screenshot', u'description': u''}, {u'term_group': u'0', u'count': u'1', u'name': u'spyro', u'parent': u'0', u'term_id': u'149', u'term_taxonomy_id': u'157', u'taxonomy': u'post_tag', u'slug': u'spyro', u'description': u''}], u'date': u'2013-01-24 17:24:23', u'type': u'post', u'id': u'2291', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'dott', u'parent': u'0', u'title': u'DOTT', u'url': u'http://artcontrol.me/?p=2283', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'Feng Zhu is a talented lad. His blog and Youtube channel are a wealth of\xa0information\xa0 In October last year he posted two paintings of remade video game shots. Classic, but', u'modified': u'2013-01-23 20:15:43', u'slug': u'DOTT', u'comment_count': u'0', u'tag': [], u'date': u'2013-01-23 20:15:34', u'type': u'post', u'id': u'2283', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'anna-new-color-sample', u'parent': u'0', u'title': u'anna new color sample', u'url': u'http://artcontrol.me/?p=2278', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"Now for something completely different. I've been using the same color in GIMP forever. It's been over 6 months with not much change in color. I need to\xa0practice\xa0with a", u'modified': u'2013-01-22 19:14:30', u'slug': u'anna new color sample', u'comment_count': u'1', u'tag': [{u'term_group': u'0', u'count': u'21', u'name': u'color', u'parent': u'0', u'term_id': u'30', u'term_taxonomy_id': u'31', u'taxonomy': u'post_tag', u'slug': u'color', u'description': u''}, {u'term_group': u'0', u'count': u'2', u'name': u'Photo', u'parent': u'0', u'term_id': u'127', u'term_taxonomy_id': u'133', u'taxonomy': u'post_tag', u'slug': u'photo', u'description': u''}, {u'term_group': u'0', u'count': u'1', u'name': u'sample', u'parent': u'0', u'term_id': u'148', u'term_taxonomy_id': u'156', u'taxonomy': u'post_tag', u'slug': u'sample', u'description': u''}], u'date': u'2013-01-22 19:09:17', u'type': u'post', u'id': u'2278', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'dads-hens', u'parent': u'0', u'title': u'Dads Hens', u'url': u'http://artcontrol.me/?p=2262', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"It's been a nice day. Went for a walk and took photographs. Pretty flowers, and food! This afternoon I decided to sit down and do another painting (I really don't produce", u'modified': u'2013-01-21 16:28:06', u'slug': u'Dads Hens', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'1', u'name': u'animal', u'parent': u'0', u'term_id': u'146', u'term_taxonomy_id': u'154', u'taxonomy': u'post_tag', u'slug': u'animal', u'description': u''}, {u'term_group': u'0', u'count': u'85', u'name': u'GIMP', u'parent': u'0', u'term_id': u'59', u'term_taxonomy_id': u'60', u'taxonomy': u'post_tag', u'slug': u'gimp', u'description': u''}, {u'term_group': u'0', u'count': u'1', u'name': u'hen', u'parent': u'0', u'term_id': u'147', u'term_taxonomy_id': u'155', u'taxonomy': u'post_tag', u'slug': u'hen', u'description': u''}, {u'term_group': u'0', u'count': u'2', u'name': u'study', u'parent': u'0', u'term_id': u'137', u'term_taxonomy_id': u'145', u'taxonomy': u'post_tag', u'slug': u'study', u'description': u''}, {u'term_group': u'0', u'count': u'16', u'name': u'video', u'parent': u'0', u'term_id': u'37', u'term_taxonomy_id': u'38', u'taxonomy': u'post_tag', u'slug': u'video', u'description': u''}], u'date': u'2013-01-21 16:27:25', u'type': u'post', u'id': u'2262', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'lvn-rework', u'parent': u'0', u'title': u'Lvn-Rework', u'url': u'http://artcontrol.me/?p=2252', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'Woke up not as early as I wanted to. I think it was 8:30. Freaked out as I went to paint and was unable to find my tablet pen. End of the world. I gave my room a tidy to find', u'modified': u'2013-01-20 12:12:36', u'slug': u'Lvn-Rework', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'21', u'name': u'color', u'parent': u'0', u'term_id': u'30', u'term_taxonomy_id': u'31', u'taxonomy': u'post_tag', u'slug': u'color', u'description': u''}, {u'term_group': u'0', u'count': u'26', u'name': u'levin', u'parent': u'0', u'term_id': u'84', u'term_taxonomy_id': u'86', u'taxonomy': u'post_tag', u'slug': u'levin', u'description': u''}, {u'term_group': u'0', u'count': u'16', u'name': u'video', u'parent': u'0', u'term_id': u'37', u'term_taxonomy_id': u'38', u'taxonomy': u'post_tag', u'slug': u'video', u'description': u''}], u'date': u'2013-01-20 12:12:36', u'type': u'post', u'id': u'2252', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'levin-water', u'parent': u'0', u'title': u'Levin Water', u'url': u'http://artcontrol.me/?p=2242', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"I woke early this morning. 6:30. I switched on a\xa0episode\xa0of The Walking Dead and started painting. I mucked around a little but managed to get a painting finished. I've", u'modified': u'2013-01-19 15:45:14', u'slug': u'Levin Water', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'6', u'name': u'conceptart', u'parent': u'0', u'term_id': u'136', u'term_taxonomy_id': u'143', u'taxonomy': u'post_tag', u'slug': u'conceptart', u'description': u''}, {u'term_group': u'0', u'count': u'85', u'name': u'GIMP', u'parent': u'0', u'term_id': u'59', u'term_taxonomy_id': u'60', u'taxonomy': u'post_tag', u'slug': u'gimp', u'description': u''}, {u'term_group': u'0', u'count': u'26', u'name': u'levin', u'parent': u'0', u'term_id': u'84', u'term_taxonomy_id': u'86', u'taxonomy': u'post_tag', u'slug': u'levin', u'description': u''}, {u'term_group': u'0', u'count': u'3', u'name': u'water', u'parent': u'0', u'term_id': u'141', u'term_taxonomy_id': u'149', u'taxonomy': u'post_tag', u'slug': u'water', u'description': u''}], u'date': u'2013-01-19 15:40:03', u'type': u'post', u'id': u'2242', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'cuban-water', u'parent': u'0', u'title': u'Cuban Water', u'url': u'http://artcontrol.me/?p=2233', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"Woke up early this morning and got straight into painting.\xa0Finished\xa0off one I started last night. I've been happy with the direction that my paintings have taken", u'modified': u'2013-01-17 21:44:05', u'slug': u'Cuban Water', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'6', u'name': u'conceptart', u'parent': u'0', u'term_id': u'136', u'term_taxonomy_id': u'143', u'taxonomy': u'post_tag', u'slug': u'conceptart', u'description': u''}, {u'term_group': u'0', u'count': u'3', u'name': u'enviorment', u'parent': u'0', u'term_id': u'145', u'term_taxonomy_id': u'153', u'taxonomy': u'post_tag', u'slug': u'enviorment', u'description': u''}, {u'term_group': u'0', u'count': u'85', u'name': u'GIMP', u'parent': u'0', u'term_id': u'59', u'term_taxonomy_id': u'60', u'taxonomy': u'post_tag', u'slug': u'gimp', u'description': u''}], u'date': u'2013-01-17 21:44:05', u'type': u'post', u'id': u'2233', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'bell-water', u'parent': u'0', u'title': u'Bell Water', u'url': u'http://artcontrol.me/?p=2227', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"I've been spent the majority of my time in Unity working on a game. It's been fun, but I still believe it's\xa0important\xa0that I paint regularly. So I started this painting", u'modified': u'2013-01-17 01:18:35', u'slug': u'Bell Water', u'comment_count': u'1', u'tag': [{u'term_group': u'0', u'count': u'6', u'name': u'conceptart', u'parent': u'0', u'term_id': u'136', u'term_taxonomy_id': u'143', u'taxonomy': u'post_tag', u'slug': u'conceptart', u'description': u''}, {u'term_group': u'0', u'count': u'8', u'name': u'environment', u'parent': u'0', u'term_id': u'115', u'term_taxonomy_id': u'119', u'taxonomy': u'post_tag', u'slug': u'environment', u'description': u''}, {u'term_group': u'0', u'count': u'85', u'name': u'GIMP', u'parent': u'0', u'term_id': u'59', u'term_taxonomy_id': u'60', u'taxonomy': u'post_tag', u'slug': u'gimp', u'description': u''}, {u'term_group': u'0', u'count': u'3', u'name': u'water', u'parent': u'0', u'term_id': u'141', u'term_taxonomy_id': u'149', u'taxonomy': u'post_tag', u'slug': u'water', u'description': u''}], u'date': u'2013-01-17 01:18:35', u'type': u'post', u'id': u'2227', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'alley-darkness', u'parent': u'0', u'title': u'Alley-Darkness', u'url': u'http://artcontrol.me/?p=2224', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'Awake nice and early this morning. I decided to get a painting out of the wait\xa0straight\xa0away. I spent yesterday working with Unity - taking both my 3d and 2d artwork into', u'modified': u'2013-01-15 21:22:41', u'slug': u'Alley-Darkness', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'85', u'name': u'GIMP', u'parent': u'0', u'term_id': u'59', u'term_taxonomy_id': u'60', u'taxonomy': u'post_tag', u'slug': u'gimp', u'description': u''}, {u'term_group': u'0', u'count': u'26', u'name': u'levin', u'parent': u'0', u'term_id': u'84', u'term_taxonomy_id': u'86', u'taxonomy': u'post_tag', u'slug': u'levin', u'description': u''}, {u'term_group': u'0', u'count': u'3', u'name': u'photo reference', u'parent': u'0', u'term_id': u'139', u'term_taxonomy_id': u'147', u'taxonomy': u'post_tag', u'slug': u'photo-reference', u'description': u''}], u'date': u'2013-01-15 21:22:41', u'type': u'post', u'id': u'2224', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'power-pole-giants', u'parent': u'0', u'title': u'Power Pole Giants', u'url': u'http://artcontrol.me/?p=2202', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"Yet another painting. I've been doing a few. I want to do a painting\xa0marathon\xa0- maybe stay up all night and produce one painting every 20 mins. It might work better to make", u'modified': u'2013-01-14 21:58:27', u'slug': u'Power Pole Giants', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'6', u'name': u'conceptart', u'parent': u'0', u'term_id': u'136', u'term_taxonomy_id': u'143', u'taxonomy': u'post_tag', u'slug': u'conceptart', u'description': u''}, {u'term_group': u'0', u'count': u'3', u'name': u'enviorment', u'parent': u'0', u'term_id': u'145', u'term_taxonomy_id': u'153', u'taxonomy': u'post_tag', u'slug': u'enviorment', u'description': u''}, {u'term_group': u'0', u'count': u'85', u'name': u'GIMP', u'parent': u'0', u'term_id': u'59', u'term_taxonomy_id': u'60', u'taxonomy': u'post_tag', u'slug': u'gimp', u'description': u''}, {u'term_group': u'0', u'count': u'1', u'name': u'waster', u'parent': u'0', u'term_id': u'144', u'term_taxonomy_id': u'152', u'taxonomy': u'post_tag', u'slug': u'waster', u'description': u''}], u'date': u'2013-01-14 21:58:27', u'type': u'post', u'id': u'2202', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'eow-birth-of-a-god-development', u'parent': u'0', u'title': u'EOW: Birth of a God development', u'url': u'http://artcontrol.me/?p=2187', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"I've been following the\xa0Environment\xa0of the Week for years over on Conceptart.org, but rarely brave enough to enter. This morning though I warmed up with that birthday card", u'modified': u'2013-01-14 10:01:16', u'slug': u'EOW: Birth of a God development', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'8', u'name': u'concept art', u'parent': u'0', u'term_id': u'117', u'term_taxonomy_id': u'123', u'taxonomy': u'post_tag', u'slug': u'concept-art', u'description': u''}, {u'term_group': u'0', u'count': u'8', u'name': u'environment', u'parent': u'0', u'term_id': u'115', u'term_taxonomy_id': u'119', u'taxonomy': u'post_tag', u'slug': u'environment', u'description': u''}, {u'term_group': u'0', u'count': u'3', u'name': u'eow', u'parent': u'0', u'term_id': u'54', u'term_taxonomy_id': u'55', u'taxonomy': u'post_tag', u'slug': u'eow', u'description': u''}, {u'term_group': u'0', u'count': u'85', u'name': u'GIMP', u'parent': u'0', u'term_id': u'59', u'term_taxonomy_id': u'60', u'taxonomy': u'post_tag', u'slug': u'gimp', u'description': u''}], u'date': u'2013-01-14 10:01:16', u'type': u'post', u'id': u'2187', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'erik-birthday-card', u'parent': u'0', u'title': u'Erik Birthday Card', u'url': u'http://artcontrol.me/?p=2182', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"During my time in Auckland I met Erik, he's a independent game developer based in Auckland. Go check his website out. I notice it's his birthday today so made this painting", u'modified': u'2013-01-13 22:37:19', u'slug': u'Erik Birthday Card', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'1', u'name': u'birthday', u'parent': u'0', u'term_id': u'142', u'term_taxonomy_id': u'150', u'taxonomy': u'post_tag', u'slug': u'birthday', u'description': u''}, {u'term_group': u'0', u'count': u'85', u'name': u'GIMP', u'parent': u'0', u'term_id': u'59', u'term_taxonomy_id': u'60', u'taxonomy': u'post_tag', u'slug': u'gimp', u'description': u''}, {u'term_group': u'0', u'count': u'33', u'name': u'portrait', u'parent': u'0', u'term_id': u'20', u'term_taxonomy_id': u'20', u'taxonomy': u'post_tag', u'slug': u'portrait', u'description': u''}, {u'term_group': u'0', u'count': u'2', u'name': u'type', u'parent': u'0', u'term_id': u'143', u'term_taxonomy_id': u'151', u'taxonomy': u'post_tag', u'slug': u'type', u'description': u''}], u'date': u'2013-01-13 22:37:19', u'type': u'post', u'id': u'2182', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'auckland-waterfront-concept-paint', u'parent': u'0', u'title': u'Auckland Waterfront Concept Paint', u'url': u'http://artcontrol.me/?p=2177', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"More digital painting. I had a rest this afternoon and felt much better afterwards. Here's another digital painting I've been working on. I especially had fun with the color", u'modified': u'2013-01-13 11:35:07', u'slug': u'Auckland Waterfront Concept Paint', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'8', u'name': u'concept art', u'parent': u'0', u'term_id': u'117', u'term_taxonomy_id': u'123', u'taxonomy': u'post_tag', u'slug': u'concept-art', u'description': u''}, {u'term_group': u'0', u'count': u'85', u'name': u'GIMP', u'parent': u'0', u'term_id': u'59', u'term_taxonomy_id': u'60', u'taxonomy': u'post_tag', u'slug': u'gimp', u'description': u''}, {u'term_group': u'0', u'count': u'3', u'name': u'photo reference', u'parent': u'0', u'term_id': u'139', u'term_taxonomy_id': u'147', u'taxonomy': u'post_tag', u'slug': u'photo-reference', u'description': u''}, {u'term_group': u'0', u'count': u'1', u'name': u'ship', u'parent': u'0', u'term_id': u'140', u'term_taxonomy_id': u'148', u'taxonomy': u'post_tag', u'slug': u'ship', u'description': u''}, {u'term_group': u'0', u'count': u'3', u'name': u'water', u'parent': u'0', u'term_id': u'141', u'term_taxonomy_id': u'149', u'taxonomy': u'post_tag', u'slug': u'water', u'description': u''}], u'date': u'2013-01-13 11:35:07', u'type': u'post', u'id': u'2177', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'wellington-water', u'parent': u'0', u'title': u'Wellington Water ', u'url': u'http://artcontrol.me/?p=2150', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"I've been playing\xa0The Walking Dead. Good news is that it's a game that allows me to paint at the same time. So during the game I painted this following scene, it took me a", u'modified': u'2013-01-13 01:31:15', u'slug': u'Wellington Water ', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'6', u'name': u'conceptart', u'parent': u'0', u'term_id': u'136', u'term_taxonomy_id': u'143', u'taxonomy': u'post_tag', u'slug': u'conceptart', u'description': u''}, {u'term_group': u'0', u'count': u'85', u'name': u'GIMP', u'parent': u'0', u'term_id': u'59', u'term_taxonomy_id': u'60', u'taxonomy': u'post_tag', u'slug': u'gimp', u'description': u''}, {u'term_group': u'0', u'count': u'15', u'name': u'wellington', u'parent': u'0', u'term_id': u'94', u'term_taxonomy_id': u'96', u'taxonomy': u'post_tag', u'slug': u'wellington', u'description': u''}], u'date': u'2013-01-13 01:31:15', u'type': u'post', u'id': u'2150', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'clem-and-city-photo-studies', u'parent': u'0', u'title': u'Clem and City photo studies', u'url': u'http://artcontrol.me/?p=2145', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"During my final hours in Auckland I started playing The Walking Dead. I got the majority of the way through\xa0episode\xa0one. I've just reopened it up on my laptop and playing", u'modified': u'2013-01-12 09:32:57', u'slug': u'Clem and City photo studies', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'10', u'name': u'auckland', u'parent': u'0', u'term_id': u'88', u'term_taxonomy_id': u'90', u'taxonomy': u'post_tag', u'slug': u'auckland', u'description': u''}, {u'term_group': u'0', u'count': u'3', u'name': u'game', u'parent': u'0', u'term_id': u'46', u'term_taxonomy_id': u'144', u'taxonomy': u'post_tag', u'slug': u'game', u'description': u''}, {u'term_group': u'0', u'count': u'85', u'name': u'GIMP', u'parent': u'0', u'term_id': u'59', u'term_taxonomy_id': u'60', u'taxonomy': u'post_tag', u'slug': u'gimp', u'description': u''}, {u'term_group': u'0', u'count': u'26', u'name': u'levin', u'parent': u'0', u'term_id': u'84', u'term_taxonomy_id': u'86', u'taxonomy': u'post_tag', u'slug': u'levin', u'description': u''}, {u'term_group': u'0', u'count': u'33', u'name': u'portrait', u'parent': u'0', u'term_id': u'20', u'term_taxonomy_id': u'20', u'taxonomy': u'post_tag', u'slug': u'portrait', u'description': u''}, {u'term_group': u'0', u'count': u'1', u'name': u'skytower', u'parent': u'0', u'term_id': u'138', u'term_taxonomy_id': u'146', u'taxonomy': u'post_tag', u'slug': u'skytower', u'description': u''}, {u'term_group': u'0', u'count': u'2', u'name': u'study', u'parent': u'0', u'term_id': u'137', u'term_taxonomy_id': u'145', u'taxonomy': u'post_tag', u'slug': u'study', u'description': u''}], u'date': u'2013-01-12 09:32:57', u'type': u'post', u'id': u'2145', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'auxweltak', u'parent': u'0', u'title': u'AuxWelTak', u'url': u'http://artcontrol.me/?p=2137', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'Good morning. Another painting complete. I started this painting last night and finished it this morning. It works out well even if I just get the reference sorted, I can', u'modified': u'2013-01-11 22:44:46', u'slug': u'AuxWelTak', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'6', u'name': u'conceptart', u'parent': u'0', u'term_id': u'136', u'term_taxonomy_id': u'143', u'taxonomy': u'post_tag', u'slug': u'conceptart', u'description': u''}, {u'term_group': u'0', u'count': u'8', u'name': u'environment', u'parent': u'0', u'term_id': u'115', u'term_taxonomy_id': u'119', u'taxonomy': u'post_tag', u'slug': u'environment', u'description': u''}, {u'term_group': u'0', u'count': u'85', u'name': u'GIMP', u'parent': u'0', u'term_id': u'59', u'term_taxonomy_id': u'60', u'taxonomy': u'post_tag', u'slug': u'gimp', u'description': u''}], u'date': u'2013-01-11 22:44:46', u'type': u'post', u'id': u'2137', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'auckland-characters', u'parent': u'0', u'title': u'Auckland Characters', u'url': u'http://artcontrol.me/?p=2130', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"I've been taking photos. The majority of these have been landscape or street scene, but I have taken some photos of people. You can check out my new stock photography website", u'modified': u'2013-01-11 06:28:56', u'slug': u'Auckland Characters', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'10', u'name': u'auckland', u'parent': u'0', u'term_id': u'88', u'term_taxonomy_id': u'90', u'taxonomy': u'post_tag', u'slug': u'auckland', u'description': u''}, {u'term_group': u'0', u'count': u'9', u'name': u'character', u'parent': u'0', u'term_id': u'33', u'term_taxonomy_id': u'34', u'taxonomy': u'post_tag', u'slug': u'character', u'description': u''}, {u'term_group': u'0', u'count': u'85', u'name': u'GIMP', u'parent': u'0', u'term_id': u'59', u'term_taxonomy_id': u'60', u'taxonomy': u'post_tag', u'slug': u'gimp', u'description': u''}, {u'term_group': u'0', u'count': u'16', u'name': u'video', u'parent': u'0', u'term_id': u'37', u'term_taxonomy_id': u'38', u'taxonomy': u'post_tag', u'slug': u'video', u'description': u''}], u'date': u'2013-01-11 06:28:56', u'type': u'post', u'id': u'2130', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'weltak', u'parent': u'0', u'title': u'Weltak ', u'url': u'http://artcontrol.me/?p=2123', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'Good morning. I got back to Levin yesterday - my Fathers place. One of the first things I did was open GIMP on the desktop computer and produce a digital painting - and', u'modified': u'2013-01-10 23:05:01', u'slug': u'Weltak ', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'85', u'name': u'GIMP', u'parent': u'0', u'term_id': u'59', u'term_taxonomy_id': u'60', u'taxonomy': u'post_tag', u'slug': u'gimp', u'description': u''}, {u'term_group': u'0', u'count': u'5', u'name': u'takaka', u'parent': u'0', u'term_id': u'68', u'term_taxonomy_id': u'70', u'taxonomy': u'post_tag', u'slug': u'takaka', u'description': u''}, {u'term_group': u'0', u'count': u'16', u'name': u'video', u'parent': u'0', u'term_id': u'37', u'term_taxonomy_id': u'38', u'taxonomy': u'post_tag', u'slug': u'video', u'description': u''}, {u'term_group': u'0', u'count': u'15', u'name': u'wellington', u'parent': u'0', u'term_id': u'94', u'term_taxonomy_id': u'96', u'taxonomy': u'post_tag', u'slug': u'wellington', u'description': u''}], u'date': u'2013-01-10 23:05:01', u'type': u'post', u'id': u'2123', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'lvn-skate', u'parent': u'0', u'title': u'lvn skate', u'url': u'http://artcontrol.me/?p=2106', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"Busy today taking photos - over 500. Managed to start a painting in the morning and finish it once I got back from this Auckland Game Dev Meet Up. I've also included a", u'modified': u'2013-01-09 12:09:46', u'slug': u'lvn skate', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'85', u'name': u'GIMP', u'parent': u'0', u'term_id': u'59', u'term_taxonomy_id': u'60', u'taxonomy': u'post_tag', u'slug': u'gimp', u'description': u''}, {u'term_group': u'0', u'count': u'26', u'name': u'levin', u'parent': u'0', u'term_id': u'84', u'term_taxonomy_id': u'86', u'taxonomy': u'post_tag', u'slug': u'levin', u'description': u''}, {u'term_group': u'0', u'count': u'1', u'name': u'skate', u'parent': u'0', u'term_id': u'135', u'term_taxonomy_id': u'142', u'taxonomy': u'post_tag', u'slug': u'skate', u'description': u''}], u'date': u'2013-01-09 12:09:46', u'type': u'post', u'id': u'2106', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'model-mask', u'parent': u'0', u'title': u'Model Mask', u'url': u'http://artcontrol.me/?p=2098', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"Continued with more digital painting today. I've been on such a roll it's just worth getting plenty done. Recently I uploaded portrait and figure drawings I had done several", u'modified': u'2013-01-06 22:14:54', u'slug': u'Model Mask', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'22', u'name': u'female', u'parent': u'0', u'term_id': u'19', u'term_taxonomy_id': u'19', u'taxonomy': u'post_tag', u'slug': u'female', u'description': u''}, {u'term_group': u'0', u'count': u'17', u'name': u'figure', u'parent': u'0', u'term_id': u'8', u'term_taxonomy_id': u'8', u'taxonomy': u'post_tag', u'slug': u'figure', u'description': u''}, {u'term_group': u'0', u'count': u'85', u'name': u'GIMP', u'parent': u'0', u'term_id': u'59', u'term_taxonomy_id': u'60', u'taxonomy': u'post_tag', u'slug': u'gimp', u'description': u''}], u'date': u'2013-01-06 22:14:54', u'type': u'post', u'id': u'2098', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'sit-model-look-left', u'parent': u'0', u'title': u'sit model, look left', u'url': u'http://artcontrol.me/?p=2089', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'Long walk today to St Lukes but afterwards I opened up GIMP and imported pencil works to work on.\r\n\r\nI choose to work on two works - the first, a figure drawing I did during', u'modified': u'2013-01-06 12:04:30', u'slug': u'sit model, look left', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'1', u'name': u'church', u'parent': u'0', u'term_id': u'134', u'term_taxonomy_id': u'141', u'taxonomy': u'post_tag', u'slug': u'church', u'description': u''}, {u'term_group': u'0', u'count': u'17', u'name': u'figure', u'parent': u'0', u'term_id': u'8', u'term_taxonomy_id': u'8', u'taxonomy': u'post_tag', u'slug': u'figure', u'description': u''}, {u'term_group': u'0', u'count': u'4', u'name': u'Napier', u'parent': u'0', u'term_id': u'128', u'term_taxonomy_id': u'135', u'taxonomy': u'post_tag', u'slug': u'napier', u'description': u''}, {u'term_group': u'0', u'count': u'1', u'name': u'nude', u'parent': u'0', u'term_id': u'133', u'term_taxonomy_id': u'140', u'taxonomy': u'post_tag', u'slug': u'nude', u'description': u''}], u'date': u'2013-01-06 12:04:30', u'type': u'post', u'id': u'2089', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'napier-horror', u'parent': u'0', u'title': u'Napier Horror', u'url': u'http://artcontrol.me/?p=2080', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"So it's been sometime since I've done digital painting. I did plenty of it last year and felt I\xa0improved\xa0greatly. This year it's my goal to produce even more", u'modified': u'2013-01-05 23:05:20', u'slug': u'Napier Horror', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'1', u'name': u'Annabel', u'parent': u'0', u'term_id': u'132', u'term_taxonomy_id': u'139', u'taxonomy': u'post_tag', u'slug': u'annabel', u'description': u''}, {u'term_group': u'0', u'count': u'22', u'name': u'female', u'parent': u'0', u'term_id': u'19', u'term_taxonomy_id': u'19', u'taxonomy': u'post_tag', u'slug': u'female', u'description': u''}, {u'term_group': u'0', u'count': u'17', u'name': u'figure', u'parent': u'0', u'term_id': u'8', u'term_taxonomy_id': u'8', u'taxonomy': u'post_tag', u'slug': u'figure', u'description': u''}, {u'term_group': u'0', u'count': u'85', u'name': u'GIMP', u'parent': u'0', u'term_id': u'59', u'term_taxonomy_id': u'60', u'taxonomy': u'post_tag', u'slug': u'gimp', u'description': u''}, {u'term_group': u'0', u'count': u'1', u'name': u'Mum', u'parent': u'0', u'term_id': u'131', u'term_taxonomy_id': u'138', u'taxonomy': u'post_tag', u'slug': u'mum', u'description': u''}, {u'term_group': u'0', u'count': u'4', u'name': u'Napier', u'parent': u'0', u'term_id': u'128', u'term_taxonomy_id': u'135', u'taxonomy': u'post_tag', u'slug': u'napier', u'description': u''}], u'date': u'2013-01-05 23:05:20', u'type': u'post', u'id': u'2080', u'comment_status': u'open'}, {u'status': u'publish', u'category': [], u'name': u'contact', u'parent': u'0', u'title': u'Contact', u'url': u'http://artcontrol.me/?page_id=2077', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'Hello, I\u2019m William Mckee.\r\nWelcome to my contact page.\r\n\r\n\r\n\r\n\r\n\r\nEmail: will@artcontrol.me\r\n\r\nCellphone: \xa0\xa00223721475\r\n\r\nSkype:', u'modified': u'2013-04-28 23:34:55', u'slug': u'Contact', u'comment_count': u'0', u'tag': [], u'date': u'2013-01-04 14:06:18', u'type': u'page', u'id': u'2077', u'comment_status': u'closed'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'82', u'name': u'draw', u'parent': u'0', u'term_id': u'7', u'cat_ID': u'7', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'draw', u'category_count': u'82', u'term_taxonomy_id': u'7', u'taxonomy': u'category', u'category_nicename': u'draw', u'slug': u'draw', u'description': u''}], u'name': u'sketchbook-travels', u'parent': u'0', u'title': u'Sketchbook Travels', u'url': u'http://artcontrol.me/?p=1978', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"I'm currently in Auckland. I got a new camera for xmas so able to take\xa0plenty\xa0of photos. So far I've taken over 1500.\r\n\r\nWhen away on holiday like this I don't spend much", u'modified': u'2012-12-30 19:42:44', u'slug': u'Sketchbook Travels', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'10', u'name': u'auckland', u'parent': u'0', u'term_id': u'88', u'term_taxonomy_id': u'90', u'taxonomy': u'post_tag', u'slug': u'auckland', u'description': u''}, {u'term_group': u'0', u'count': u'2', u'name': u'Hamilton', u'parent': u'0', u'term_id': u'130', u'term_taxonomy_id': u'137', u'taxonomy': u'post_tag', u'slug': u'hamilton', u'description': u''}, {u'term_group': u'0', u'count': u'5', u'name': u'sketchbook', u'parent': u'0', u'term_id': u'87', u'term_taxonomy_id': u'89', u'taxonomy': u'post_tag', u'slug': u'sketchbook', u'description': u''}, {u'term_group': u'0', u'count': u'3', u'name': u'travel', u'parent': u'0', u'term_id': u'69', u'term_taxonomy_id': u'71', u'taxonomy': u'post_tag', u'slug': u'travel', u'description': u''}], u'date': u'2012-12-30 19:34:57', u'type': u'post', u'id': u'1978', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'82', u'name': u'draw', u'parent': u'0', u'term_id': u'7', u'cat_ID': u'7', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'draw', u'category_count': u'82', u'term_taxonomy_id': u'7', u'taxonomy': u'category', u'category_nicename': u'draw', u'slug': u'draw', u'description': u''}], u'name': u'portrait-skins', u'parent': u'0', u'title': u'Portrait Skins', u'url': u'http://artcontrol.me/?p=1717', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"Uploading a bunch of photos from my Mothers computer. All of these are very old - drawn in 2008/2009. I've uploaded 160 artworks so will take sometime to work though them,", u'modified': u'2013-01-03 20:31:19', u'slug': u'Portrait Skins', u'comment_count': u'1', u'tag': [], u'date': u'2013-01-03 20:31:19', u'type': u'post', u'id': u'1717', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'13', u'name': u'paint', u'parent': u'0', u'term_id': u'15', u'cat_ID': u'15', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'paint', u'category_count': u'13', u'term_taxonomy_id': u'15', u'taxonomy': u'category', u'category_nicename': u'paint', u'slug': u'paint', u'description': u''}], u'name': u'napier-gouache-paintings', u'parent': u'0', u'title': u'Napier gouache paintings', u'url': u'http://artcontrol.me/?p=1686', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"Blogs been\xa0neglected\xa0somewhat. I've been busy with Python lately - creating stuff with pygame.\r\n\r\nHere are paintings I did from life during my time in Napier.\r\n\r\n\r\nEveryday", u'modified': u'2012-12-24 08:30:13', u'slug': u'Napier gouache paintings', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'1', u'name': u'Granddad', u'parent': u'0', u'term_id': u'129', u'term_taxonomy_id': u'136', u'taxonomy': u'post_tag', u'slug': u'granddad', u'description': u''}, {u'term_group': u'0', u'count': u'14', u'name': u'landscape', u'parent': u'0', u'term_id': u'9', u'term_taxonomy_id': u'9', u'taxonomy': u'post_tag', u'slug': u'landscape', u'description': u''}, {u'term_group': u'0', u'count': u'4', u'name': u'Napier', u'parent': u'0', u'term_id': u'128', u'term_taxonomy_id': u'135', u'taxonomy': u'post_tag', u'slug': u'napier', u'description': u''}, {u'term_group': u'0', u'count': u'14', u'name': u'Street', u'parent': u'0', u'term_id': u'110', u'term_taxonomy_id': u'114', u'taxonomy': u'post_tag', u'slug': u'street', u'description': u''}], u'date': u'2012-12-24 08:29:57', u'type': u'post', u'id': u'1686', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'82', u'name': u'draw', u'parent': u'0', u'term_id': u'7', u'cat_ID': u'7', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'draw', u'category_count': u'82', u'term_taxonomy_id': u'7', u'taxonomy': u'category', u'category_nicename': u'draw', u'slug': u'draw', u'description': u''}], u'name': u'napier', u'parent': u'0', u'title': u'Napier', u'url': u'http://artcontrol.me/?p=1667', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"Back from Napier. Visited my Granddad. I had my laptop with me but no internet - I noticed several shops in the CBD that offered free WIFI. I didn't worry - instead spending", u'modified': u'2012-12-19 09:57:39', u'slug': u'Napier', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'4', u'name': u'Napier', u'parent': u'0', u'term_id': u'128', u'term_taxonomy_id': u'135', u'taxonomy': u'post_tag', u'slug': u'napier', u'description': u''}, {u'term_group': u'0', u'count': u'14', u'name': u'Street', u'parent': u'0', u'term_id': u'110', u'term_taxonomy_id': u'114', u'taxonomy': u'post_tag', u'slug': u'street', u'description': u''}, {u'term_group': u'0', u'count': u'3', u'name': u'travel', u'parent': u'0', u'term_id': u'69', u'term_taxonomy_id': u'71', u'taxonomy': u'post_tag', u'slug': u'travel', u'description': u''}], u'date': u'2012-12-19 09:57:39', u'type': u'post', u'id': u'1667', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'red-lake', u'parent': u'0', u'title': u'Red Lake', u'url': u'http://artcontrol.me/?p=1652', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"Currently sitting in Levin library. Thought I'd better make a post since it's been a few days. I've been more focused on Python code recently than painting. I feel I'm making", u'modified': u'2012-12-09 02:04:34', u'slug': u'Red Lake', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'21', u'name': u'color', u'parent': u'0', u'term_id': u'30', u'term_taxonomy_id': u'31', u'taxonomy': u'post_tag', u'slug': u'color', u'description': u''}, {u'term_group': u'0', u'count': u'85', u'name': u'GIMP', u'parent': u'0', u'term_id': u'59', u'term_taxonomy_id': u'60', u'taxonomy': u'post_tag', u'slug': u'gimp', u'description': u''}, {u'term_group': u'0', u'count': u'6', u'name': u'paint', u'parent': u'0', u'term_id': u'15', u'term_taxonomy_id': u'134', u'taxonomy': u'post_tag', u'slug': u'paint', u'description': u''}], u'date': u'2012-12-09 02:04:34', u'type': u'post', u'id': u'1652', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'wel-true', u'parent': u'0', u'title': u'wel true', u'url': u'http://artcontrol.me/?p=1648', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'Several days since my last update. Had a birthday... though I never enjoy birthdays. For the painting today I took a older line work I had done in GIMP and added tone and', u'modified': u'2012-12-05 20:25:06', u'slug': u'wel true', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'85', u'name': u'GIMP', u'parent': u'0', u'term_id': u'59', u'term_taxonomy_id': u'60', u'taxonomy': u'post_tag', u'slug': u'gimp', u'description': u''}], u'date': u'2012-12-05 20:25:06', u'type': u'post', u'id': u'1648', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'nude-wellington', u'parent': u'0', u'title': u'Nude Wellington', u'url': u'http://artcontrol.me/?p=1638', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'I used GIMP on my laptop last night to mash together reference for the painting this morning. Preparing it last night meant I was able to get straight into the painting this', u'modified': u'2012-12-02 23:50:14', u'slug': u'Nude Wellington', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'85', u'name': u'GIMP', u'parent': u'0', u'term_id': u'59', u'term_taxonomy_id': u'60', u'taxonomy': u'post_tag', u'slug': u'gimp', u'description': u''}, {u'term_group': u'0', u'count': u'26', u'name': u'levin', u'parent': u'0', u'term_id': u'84', u'term_taxonomy_id': u'86', u'taxonomy': u'post_tag', u'slug': u'levin', u'description': u''}, {u'term_group': u'0', u'count': u'6', u'name': u'paint', u'parent': u'0', u'term_id': u'15', u'term_taxonomy_id': u'134', u'taxonomy': u'post_tag', u'slug': u'paint', u'description': u''}, {u'term_group': u'0', u'count': u'2', u'name': u'Photo', u'parent': u'0', u'term_id': u'127', u'term_taxonomy_id': u'133', u'taxonomy': u'post_tag', u'slug': u'photo', u'description': u''}, {u'term_group': u'0', u'count': u'15', u'name': u'wellington', u'parent': u'0', u'term_id': u'94', u'term_taxonomy_id': u'96', u'taxonomy': u'post_tag', u'slug': u'wellington', u'description': u''}], u'date': u'2012-12-02 23:50:14', u'type': u'post', u'id': u'1638', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'redditdrawn-doubles', u'parent': u'0', u'title': u'RedditDrawn Doubles', u'url': u'http://artcontrol.me/?p=1619', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"Good morning. The art creation has been slow as of recently. I even tried to draw last night. I sat on a table and had my\xa0sketchbook\xa0and clutch pencil. I just couldn't do", u'modified': u'2012-12-11 00:10:06', u'slug': u'RedditDrawn Doubles', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'85', u'name': u'GIMP', u'parent': u'0', u'term_id': u'59', u'term_taxonomy_id': u'60', u'taxonomy': u'post_tag', u'slug': u'gimp', u'description': u''}, {u'term_group': u'0', u'count': u'33', u'name': u'portrait', u'parent': u'0', u'term_id': u'20', u'term_taxonomy_id': u'20', u'taxonomy': u'post_tag', u'slug': u'portrait', u'description': u''}, {u'term_group': u'0', u'count': u'12', u'name': u'reddit', u'parent': u'0', u'term_id': u'112', u'term_taxonomy_id': u'116', u'taxonomy': u'post_tag', u'slug': u'reddit', u'description': u''}], u'date': u'2012-12-11 00:10:06', u'type': u'post', u'id': u'1619', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'13', u'name': u'paint', u'parent': u'0', u'term_id': u'15', u'cat_ID': u'15', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'paint', u'category_count': u'13', u'term_taxonomy_id': u'15', u'taxonomy': u'category', u'category_nicename': u'paint', u'slug': u'paint', u'description': u''}], u'name': u'milv-paint', u'parent': u'0', u'title': u'milv paint', u'url': u'http://artcontrol.me/?p=1609', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"This is the paintings I \xa0did with children on Thursday. The paint I was using was cheap poster paint - it was cheap but did the job. It's the surface that totally makes a", u'modified': u'2012-12-12 11:56:41', u'slug': u'milv paint', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'4', u'name': u'Collaborative', u'parent': u'0', u'term_id': u'67', u'term_taxonomy_id': u'69', u'taxonomy': u'post_tag', u'slug': u'collaborative', u'description': u''}], u'date': u'2012-12-12 11:56:41', u'type': u'post', u'id': u'1609', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'82', u'name': u'draw', u'parent': u'0', u'term_id': u'7', u'cat_ID': u'7', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'draw', u'category_count': u'82', u'term_taxonomy_id': u'7', u'taxonomy': u'category', u'category_nicename': u'draw', u'slug': u'draw', u'description': u''}], u'name': u'yeah-town', u'parent': u'0', u'title': u'Yeah Town', u'url': u'http://artcontrol.me/?p=1607', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"It's been a busy few days - I've been going into my Mothers work and doing painting with the kids - 4 year olds. When I made it home I got stuck into a digital paintings in", u'modified': u'2012-11-30 21:30:13', u'slug': u'Yeah Town', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'2', u'name': u'alchemy', u'parent': u'0', u'term_id': u'122', u'term_taxonomy_id': u'128', u'taxonomy': u'post_tag', u'slug': u'alchemy', u'description': u''}, {u'term_group': u'0', u'count': u'85', u'name': u'GIMP', u'parent': u'0', u'term_id': u'59', u'term_taxonomy_id': u'60', u'taxonomy': u'post_tag', u'slug': u'gimp', u'description': u''}, {u'term_group': u'0', u'count': u'26', u'name': u'levin', u'parent': u'0', u'term_id': u'84', u'term_taxonomy_id': u'86', u'taxonomy': u'post_tag', u'slug': u'levin', u'description': u''}, {u'term_group': u'0', u'count': u'1', u'name': u'Yeah Yeah Yeahs', u'parent': u'0', u'term_id': u'126', u'term_taxonomy_id': u'132', u'taxonomy': u'post_tag', u'slug': u'yeah-yeah-yeahs', u'description': u''}], u'date': u'2012-11-30 21:30:13', u'type': u'post', u'id': u'1607', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'reddit-gets-drawn-group', u'parent': u'0', u'title': u'Reddit Gets Drawn: Group', u'url': u'http://artcontrol.me/?p=1592', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u" \r\n\r\nInstead of drawing just a single portrait I decided to fill my page with a range of different portraits - all from RedditGetsDrawn.\r\n\r\n \r\n\r\nI've been playing", u'modified': u'2012-11-26 12:55:11', u'slug': u'Reddit Gets Drawn: Group', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'22', u'name': u'female', u'parent': u'0', u'term_id': u'19', u'term_taxonomy_id': u'19', u'taxonomy': u'post_tag', u'slug': u'female', u'description': u''}, {u'term_group': u'0', u'count': u'85', u'name': u'GIMP', u'parent': u'0', u'term_id': u'59', u'term_taxonomy_id': u'60', u'taxonomy': u'post_tag', u'slug': u'gimp', u'description': u''}, {u'term_group': u'0', u'count': u'11', u'name': u'male', u'parent': u'0', u'term_id': u'22', u'term_taxonomy_id': u'22', u'taxonomy': u'post_tag', u'slug': u'male', u'description': u''}, {u'term_group': u'0', u'count': u'33', u'name': u'portrait', u'parent': u'0', u'term_id': u'20', u'term_taxonomy_id': u'20', u'taxonomy': u'post_tag', u'slug': u'portrait', u'description': u''}, {u'term_group': u'0', u'count': u'12', u'name': u'reddit', u'parent': u'0', u'term_id': u'112', u'term_taxonomy_id': u'116', u'taxonomy': u'post_tag', u'slug': u'reddit', u'description': u''}], u'date': u'2012-11-26 12:55:11', u'type': u'post', u'id': u'1592', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'redditgetsdrawn-wild-thing', u'parent': u'0', u'title': u'RedditGetsDrawn: Wild Thing', u'url': u'http://artcontrol.me/?p=1586', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'As a child where the Wild Things Was a favorite book. For this request on RedditGetsDrawn I was asked too draw this child\xa0with Wild Things. I did a quick google search for', u'modified': u'2012-11-29 17:39:36', u'slug': u'RedditGetsDrawn: Wild Thing', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'2', u'name': u'book', u'parent': u'0', u'term_id': u'124', u'term_taxonomy_id': u'130', u'taxonomy': u'post_tag', u'slug': u'book', u'description': u''}, {u'term_group': u'0', u'count': u'17', u'name': u'figure', u'parent': u'0', u'term_id': u'8', u'term_taxonomy_id': u'8', u'taxonomy': u'post_tag', u'slug': u'figure', u'description': u''}, {u'term_group': u'0', u'count': u'1', u'name': u'forest', u'parent': u'0', u'term_id': u'123', u'term_taxonomy_id': u'129', u'taxonomy': u'post_tag', u'slug': u'forest', u'description': u''}, {u'term_group': u'0', u'count': u'12', u'name': u'reddit', u'parent': u'0', u'term_id': u'112', u'term_taxonomy_id': u'116', u'taxonomy': u'post_tag', u'slug': u'reddit', u'description': u''}, {u'term_group': u'0', u'count': u'1', u'name': u'where the wild things are', u'parent': u'0', u'term_id': u'125', u'term_taxonomy_id': u'131', u'taxonomy': u'post_tag', u'slug': u'where-the-wild-things-are', u'description': u''}], u'date': u'2012-11-29 17:39:34', u'type': u'post', u'id': u'1586', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'alcemy-landscape', u'parent': u'0', u'title': u'Alcemy Landscape', u'url': u'http://artcontrol.me/?p=1566', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'Now for something completely different.\r\n\r\nI was inspired by PixelTuners video that I watched earlier this week \xa0decided to open Alchemy (was happily\xa0surprised\xa0to find it', u'modified': u'2012-11-23 22:57:23', u'slug': u'Alcemy Landscape', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'2', u'name': u'alchemy', u'parent': u'0', u'term_id': u'122', u'term_taxonomy_id': u'128', u'taxonomy': u'post_tag', u'slug': u'alchemy', u'description': u''}, {u'term_group': u'0', u'count': u'14', u'name': u'landscape', u'parent': u'0', u'term_id': u'9', u'term_taxonomy_id': u'9', u'taxonomy': u'post_tag', u'slug': u'landscape', u'description': u''}], u'date': u'2012-11-23 22:57:23', u'type': u'post', u'id': u'1566', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'court-garden', u'parent': u'0', u'title': u'Court Garden', u'url': u'http://artcontrol.me/?p=1554', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"I've decided to change my video settings to 1080 up from 720. The quality is worth it. I'm not partically happy with this painting but happy that I'm trying new things in", u'modified': u'2012-11-22 05:09:46', u'slug': u'Court Garden', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'8', u'name': u'concept art', u'parent': u'0', u'term_id': u'117', u'term_taxonomy_id': u'123', u'taxonomy': u'post_tag', u'slug': u'concept-art', u'description': u''}, {u'term_group': u'0', u'count': u'85', u'name': u'GIMP', u'parent': u'0', u'term_id': u'59', u'term_taxonomy_id': u'60', u'taxonomy': u'post_tag', u'slug': u'gimp', u'description': u''}, {u'term_group': u'0', u'count': u'26', u'name': u'levin', u'parent': u'0', u'term_id': u'84', u'term_taxonomy_id': u'86', u'taxonomy': u'post_tag', u'slug': u'levin', u'description': u''}, {u'term_group': u'0', u'count': u'15', u'name': u'wellington', u'parent': u'0', u'term_id': u'94', u'term_taxonomy_id': u'96', u'taxonomy': u'post_tag', u'slug': u'wellington', u'description': u''}], u'date': u'2012-11-22 05:06:07', u'type': u'post', u'id': u'1554', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'palmy-skate', u'parent': u'0', u'title': u'Palmy Skate', u'url': u'http://artcontrol.me/?p=1548', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"I have been changing a few brush settings in GIMP to get different effects. Most\xa0notable\xa0I enabled\xa0opacity\xa0pressure sensitive. In the past\xa0I've\xa0always had this pressure", u'modified': u'2012-11-21 00:35:58', u'slug': u'Palmy Skate', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'8', u'name': u'environment', u'parent': u'0', u'term_id': u'115', u'term_taxonomy_id': u'119', u'taxonomy': u'post_tag', u'slug': u'environment', u'description': u''}, {u'term_group': u'0', u'count': u'85', u'name': u'GIMP', u'parent': u'0', u'term_id': u'59', u'term_taxonomy_id': u'60', u'taxonomy': u'post_tag', u'slug': u'gimp', u'description': u''}, {u'term_group': u'0', u'count': u'26', u'name': u'levin', u'parent': u'0', u'term_id': u'84', u'term_taxonomy_id': u'86', u'taxonomy': u'post_tag', u'slug': u'levin', u'description': u''}, {u'term_group': u'0', u'count': u'1', u'name': u'Palmerston North', u'parent': u'0', u'term_id': u'121', u'term_taxonomy_id': u'127', u'taxonomy': u'post_tag', u'slug': u'palmerston-north', u'description': u''}], u'date': u'2012-11-21 00:35:58', u'type': u'post', u'id': u'1548', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'ca-skl', u'parent': u'0', u'title': u'ca skl', u'url': u'http://artcontrol.me/?p=1539', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'Reference used. In total this is three drawings. The top left is a view from Levin North School, below is the same image rotated 180 degrees. This is scaled down as well. I', u'modified': u'2012-11-19 23:35:14', u'slug': u'ca skl', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'8', u'name': u'concept art', u'parent': u'0', u'term_id': u'117', u'term_taxonomy_id': u'123', u'taxonomy': u'post_tag', u'slug': u'concept-art', u'description': u''}, {u'term_group': u'0', u'count': u'85', u'name': u'GIMP', u'parent': u'0', u'term_id': u'59', u'term_taxonomy_id': u'60', u'taxonomy': u'post_tag', u'slug': u'gimp', u'description': u''}, {u'term_group': u'0', u'count': u'26', u'name': u'levin', u'parent': u'0', u'term_id': u'84', u'term_taxonomy_id': u'86', u'taxonomy': u'post_tag', u'slug': u'levin', u'description': u''}], u'date': u'2012-11-19 23:35:14', u'type': u'post', u'id': u'1539', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'levin-rose', u'parent': u'0', u'title': u'Levin Rose', u'url': u'http://artcontrol.me/?p=1532', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"Digital painting fom the sketchbook reference. This was done a few weeks ago - I'm just catching up on the digital paintings I've missed uploading.\r\n\r\nSo here we go - taking", u'modified': u'2012-11-18 20:05:38', u'slug': u'Levin Rose', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'2', u'name': u'enviroment', u'parent': u'0', u'term_id': u'97', u'term_taxonomy_id': u'121', u'taxonomy': u'post_tag', u'slug': u'enviroment', u'description': u''}, {u'term_group': u'0', u'count': u'85', u'name': u'GIMP', u'parent': u'0', u'term_id': u'59', u'term_taxonomy_id': u'60', u'taxonomy': u'post_tag', u'slug': u'gimp', u'description': u''}, {u'term_group': u'0', u'count': u'26', u'name': u'levin', u'parent': u'0', u'term_id': u'84', u'term_taxonomy_id': u'86', u'taxonomy': u'post_tag', u'slug': u'levin', u'description': u''}], u'date': u'2012-11-18 20:05:38', u'type': u'post', u'id': u'1532', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'lily-allen', u'parent': u'0', u'title': u'Lily Allen', u'url': u'http://artcontrol.me/?p=1514', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"Spent the morning\xa0organizing\xa0files and posts. Working on getting a large Borderlands 2 painting post together - it's been a fun side project.\r\n\r\nFor now though - here's a", u'modified': u'2012-11-16 22:24:37', u'slug': u'Lily Allen', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'22', u'name': u'female', u'parent': u'0', u'term_id': u'19', u'term_taxonomy_id': u'19', u'taxonomy': u'post_tag', u'slug': u'female', u'description': u''}, {u'term_group': u'0', u'count': u'85', u'name': u'GIMP', u'parent': u'0', u'term_id': u'59', u'term_taxonomy_id': u'60', u'taxonomy': u'post_tag', u'slug': u'gimp', u'description': u''}, {u'term_group': u'0', u'count': u'4', u'name': u'music', u'parent': u'0', u'term_id': u'35', u'term_taxonomy_id': u'36', u'taxonomy': u'post_tag', u'slug': u'music', u'description': u''}], u'date': u'2012-11-16 22:24:37', u'type': u'post', u'id': u'1514', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'levin-tower-seq', u'parent': u'0', u'title': u'Levin Tower Seq', u'url': u'http://artcontrol.me/?p=1495', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"I haven't been happy with the latest digital paintings I've been doing. It's been a struggle. Oh well. I got Dads scanner working on my laptop so I can go back to scanning my", u'modified': u'2012-11-14 10:40:31', u'slug': u'Levin Tower Seq', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'85', u'name': u'GIMP', u'parent': u'0', u'term_id': u'59', u'term_taxonomy_id': u'60', u'taxonomy': u'post_tag', u'slug': u'gimp', u'description': u''}, {u'term_group': u'0', u'count': u'26', u'name': u'levin', u'parent': u'0', u'term_id': u'84', u'term_taxonomy_id': u'86', u'taxonomy': u'post_tag', u'slug': u'levin', u'description': u''}, {u'term_group': u'0', u'count': u'14', u'name': u'Street', u'parent': u'0', u'term_id': u'110', u'term_taxonomy_id': u'114', u'taxonomy': u'post_tag', u'slug': u'street', u'description': u''}], u'date': u'2012-11-14 10:39:38', u'type': u'post', u'id': u'1495', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'levin-church', u'parent': u'0', u'title': u'Levin Church', u'url': u'http://artcontrol.me/?p=1479', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"I didn't do a concept art\xa0environmental\xa0work yesterday so wanted to make sure I did one today. I haven't been getting out and drawing on the street. I have been drawing", u'modified': u'2012-11-12 02:58:56', u'slug': u'Levin Church', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'8', u'name': u'environment', u'parent': u'0', u'term_id': u'115', u'term_taxonomy_id': u'119', u'taxonomy': u'post_tag', u'slug': u'environment', u'description': u''}, {u'term_group': u'0', u'count': u'85', u'name': u'GIMP', u'parent': u'0', u'term_id': u'59', u'term_taxonomy_id': u'60', u'taxonomy': u'post_tag', u'slug': u'gimp', u'description': u''}, {u'term_group': u'0', u'count': u'26', u'name': u'levin', u'parent': u'0', u'term_id': u'84', u'term_taxonomy_id': u'86', u'taxonomy': u'post_tag', u'slug': u'levin', u'description': u''}], u'date': u'2012-11-12 02:58:56', u'type': u'post', u'id': u'1479', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'levin-tower', u'parent': u'0', u'title': u'Levin Tower', u'url': u'http://artcontrol.me/?p=1472', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'Awake early this\xa0morning\xa0- 5am. Wanted to get straight into the digital painting. I first checked Reddit SketchDaily - Free Draw Friday. Fantastic - can just do a street', u'modified': u'2012-11-09 19:14:34', u'slug': u'Levin Tower', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'8', u'name': u'concept art', u'parent': u'0', u'term_id': u'117', u'term_taxonomy_id': u'123', u'taxonomy': u'post_tag', u'slug': u'concept-art', u'description': u''}, {u'term_group': u'0', u'count': u'85', u'name': u'GIMP', u'parent': u'0', u'term_id': u'59', u'term_taxonomy_id': u'60', u'taxonomy': u'post_tag', u'slug': u'gimp', u'description': u''}, {u'term_group': u'0', u'count': u'26', u'name': u'levin', u'parent': u'0', u'term_id': u'84', u'term_taxonomy_id': u'86', u'taxonomy': u'post_tag', u'slug': u'levin', u'description': u''}, {u'term_group': u'0', u'count': u'14', u'name': u'Street', u'parent': u'0', u'term_id': u'110', u'term_taxonomy_id': u'114', u'taxonomy': u'post_tag', u'slug': u'street', u'description': u''}], u'date': u'2012-11-09 19:14:34', u'type': u'post', u'id': u'1472', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'redditgets-drawn-part-two', u'parent': u'0', u'title': u'Redditgets drawn - part two', u'url': u'http://artcontrol.me/?p=1463', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'Here are a bunch of portrait paintings I did at the end of October. I kept with similar colors though the pieces - like the scape works - certainly helps the harmony of the', u'modified': u'2012-11-09 01:05:58', u'slug': u'Redditgets drawn - part two', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'85', u'name': u'GIMP', u'parent': u'0', u'term_id': u'59', u'term_taxonomy_id': u'60', u'taxonomy': u'post_tag', u'slug': u'gimp', u'description': u''}, {u'term_group': u'0', u'count': u'33', u'name': u'portrait', u'parent': u'0', u'term_id': u'20', u'term_taxonomy_id': u'20', u'taxonomy': u'post_tag', u'slug': u'portrait', u'description': u''}, {u'term_group': u'0', u'count': u'11', u'name': u'redditgetsdrawn', u'parent': u'0', u'term_id': u'119', u'term_taxonomy_id': u'125', u'taxonomy': u'post_tag', u'slug': u'redditgetsdrawn', u'description': u''}], u'date': u'2012-11-09 07:34:33', u'type': u'post', u'id': u'1463', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'wellington-habor', u'parent': u'0', u'title': u'Wellington Harbor', u'url': u'http://artcontrol.me/?p=1455', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'Continued\xa0taking the drawings from Wellington into GIMP and turn them into Concept Artwork.\r\n\r\nThis was one of my favorite drawings I did well in Wellington - Waterfront on', u'modified': u'2012-11-08 23:32:11', u'slug': u'Wellington Harbor', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'8', u'name': u'concept art', u'parent': u'0', u'term_id': u'117', u'term_taxonomy_id': u'123', u'taxonomy': u'post_tag', u'slug': u'concept-art', u'description': u''}, {u'term_group': u'0', u'count': u'85', u'name': u'GIMP', u'parent': u'0', u'term_id': u'59', u'term_taxonomy_id': u'60', u'taxonomy': u'post_tag', u'slug': u'gimp', u'description': u''}, {u'term_group': u'0', u'count': u'16', u'name': u'video', u'parent': u'0', u'term_id': u'37', u'term_taxonomy_id': u'38', u'taxonomy': u'post_tag', u'slug': u'video', u'description': u''}, {u'term_group': u'0', u'count': u'15', u'name': u'wellington', u'parent': u'0', u'term_id': u'94', u'term_taxonomy_id': u'96', u'taxonomy': u'post_tag', u'slug': u'wellington', u'description': u''}], u'date': u'2012-11-08 23:30:57', u'type': u'post', u'id': u'1455', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'concept-art-railway', u'parent': u'0', u'title': u'Concept Art: Railway', u'url': u'http://artcontrol.me/?p=1423', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"I've started taking the drawings from Wellington into GIMP to produce digital paintings. I tend to do far more drawings than digital paintings. It's my goal this month to", u'modified': u'2012-11-06 15:02:37', u'slug': u'Concept Art: Railway', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'8', u'name': u'concept art', u'parent': u'0', u'term_id': u'117', u'term_taxonomy_id': u'123', u'taxonomy': u'post_tag', u'slug': u'concept-art', u'description': u''}, {u'term_group': u'0', u'count': u'8', u'name': u'environment', u'parent': u'0', u'term_id': u'115', u'term_taxonomy_id': u'119', u'taxonomy': u'post_tag', u'slug': u'environment', u'description': u''}, {u'term_group': u'0', u'count': u'85', u'name': u'GIMP', u'parent': u'0', u'term_id': u'59', u'term_taxonomy_id': u'60', u'taxonomy': u'post_tag', u'slug': u'gimp', u'description': u''}, {u'term_group': u'0', u'count': u'15', u'name': u'wellington', u'parent': u'0', u'term_id': u'94', u'term_taxonomy_id': u'96', u'taxonomy': u'post_tag', u'slug': u'wellington', u'description': u''}], u'date': u'2012-11-06 15:02:37', u'type': u'post', u'id': u'1423', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'82', u'name': u'draw', u'parent': u'0', u'term_id': u'7', u'cat_ID': u'7', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'draw', u'category_count': u'82', u'term_taxonomy_id': u'7', u'taxonomy': u'category', u'category_nicename': u'draw', u'slug': u'draw', u'description': u''}], u'name': u'wellington-street-draw-halloween', u'parent': u'0', u'title': u'Wellington Street Draw - Halloween', u'url': u'http://artcontrol.me/?p=1395', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'I recently got back from a weeks holiday in Wellington. During that time I spent hours on the street of Wellington sketching. For months I have been doing these daily', u'modified': u'2012-11-05 23:03:25', u'slug': u'Wellington Street Draw - Halloween', u'comment_count': u'0', u'tag': [], u'date': u'2012-11-06 11:30:05', u'type': u'post', u'id': u'1395', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'19', u'name': u'model', u'parent': u'0', u'term_id': u'18', u'cat_ID': u'18', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'model', u'category_count': u'19', u'term_taxonomy_id': u'18', u'taxonomy': u'category', u'category_nicename': u'model', u'slug': u'model', u'description': u''}, {u'term_group': u'0', u'count': u'13', u'name': u'paint', u'parent': u'0', u'term_id': u'15', u'cat_ID': u'15', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'paint', u'category_count': u'13', u'term_taxonomy_id': u'15', u'taxonomy': u'category', u'category_nicename': u'paint', u'slug': u'paint', u'description': u''}], u'name': u'life-paint-gouache-brendon', u'parent': u'0', u'title': u'life paint gouache - brendon', u'url': u'http://artcontrol.me/?p=1380', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"I've photographed both of my current journals I'm working on currently. The first - a A5 shaped,\xa0rip able, thick. It's perfect for watercolor/gouache.\r\n\r\nHere's two", u'modified': u'2012-11-05 18:59:58', u'slug': u'life paint gouache - brendon', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'3', u'name': u'gouache', u'parent': u'0', u'term_id': u'53', u'term_taxonomy_id': u'54', u'taxonomy': u'post_tag', u'slug': u'gouache', u'description': u''}, {u'term_group': u'0', u'count': u'11', u'name': u'male', u'parent': u'0', u'term_id': u'22', u'term_taxonomy_id': u'22', u'taxonomy': u'post_tag', u'slug': u'male', u'description': u''}, {u'term_group': u'0', u'count': u'19', u'name': u'tlc', u'parent': u'0', u'term_id': u'11', u'term_taxonomy_id': u'11', u'taxonomy': u'post_tag', u'slug': u'tlc', u'description': u''}, {u'term_group': u'0', u'count': u'1', u'name': u'watercolor', u'parent': u'0', u'term_id': u'116', u'term_taxonomy_id': u'122', u'taxonomy': u'post_tag', u'slug': u'watercolor', u'description': u''}], u'date': u'2012-11-05 18:59:58', u'type': u'post', u'id': u'1380', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}, {u'term_group': u'0', u'count': u'19', u'name': u'model', u'parent': u'0', u'term_id': u'18', u'cat_ID': u'18', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'model', u'category_count': u'19', u'term_taxonomy_id': u'18', u'taxonomy': u'category', u'category_nicename': u'model', u'slug': u'model', u'description': u''}], u'name': u'life-drawing-octnov-tlc', u'parent': u'0', u'title': u'Life Drawing OctNov TLC', u'url': u'http://artcontrol.me/?p=1368', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'Busy week of life drawing. Last time I did it was over two months ago. Refreshing to get back into it. It will likely be sometime before I do it again. I should try to make', u'modified': u'2012-11-02 09:09:33', u'slug': u'Life Drawing OctNov TLC', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'22', u'name': u'female', u'parent': u'0', u'term_id': u'19', u'term_taxonomy_id': u'19', u'taxonomy': u'post_tag', u'slug': u'female', u'description': u''}, {u'term_group': u'0', u'count': u'85', u'name': u'GIMP', u'parent': u'0', u'term_id': u'59', u'term_taxonomy_id': u'60', u'taxonomy': u'post_tag', u'slug': u'gimp', u'description': u''}, {u'term_group': u'0', u'count': u'11', u'name': u'male', u'parent': u'0', u'term_id': u'22', u'term_taxonomy_id': u'22', u'taxonomy': u'post_tag', u'slug': u'male', u'description': u''}, {u'term_group': u'0', u'count': u'19', u'name': u'tlc', u'parent': u'0', u'term_id': u'11', u'term_taxonomy_id': u'11', u'taxonomy': u'post_tag', u'slug': u'tlc', u'description': u''}], u'date': u'2012-11-02 09:09:33', u'type': u'post', u'id': u'1368', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'redditdrawnportraits', u'parent': u'0', u'title': u'redditdrawnportraits', u'url': u'http://artcontrol.me/?p=1352', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"I haven't been drawing people recently. It's all been streetscape works. A combo of nature and manmade structures. I think that's the best way to suggest it.\r\n\r\nHere are", u'modified': u'2012-10-27 04:57:46', u'slug': u'redditdrawnportraits', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'3', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'term_taxonomy_id': u'120', u'taxonomy': u'post_tag', u'slug': u'digital', u'description': u''}, {u'term_group': u'0', u'count': u'85', u'name': u'GIMP', u'parent': u'0', u'term_id': u'59', u'term_taxonomy_id': u'60', u'taxonomy': u'post_tag', u'slug': u'gimp', u'description': u''}, {u'term_group': u'0', u'count': u'33', u'name': u'portrait', u'parent': u'0', u'term_id': u'20', u'term_taxonomy_id': u'20', u'taxonomy': u'post_tag', u'slug': u'portrait', u'description': u''}, {u'term_group': u'0', u'count': u'12', u'name': u'reddit', u'parent': u'0', u'term_id': u'112', u'term_taxonomy_id': u'116', u'taxonomy': u'post_tag', u'slug': u'reddit', u'description': u''}], u'date': u'2012-10-27 04:57:46', u'type': u'post', u'id': u'1352', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'sd-enviormen', u'parent': u'0', u'title': u'sd enviormen', u'url': u'http://artcontrol.me/?p=1349', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"I'm currently in Wellington. So my usual SketchDaily hasn't been happening. I've done life drawing though, which has been a nice change.\r\n\r\nHere are some Reddit", u'modified': u'2012-10-31 05:29:48', u'slug': u'sd enviormen', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'2', u'name': u'enviroment', u'parent': u'0', u'term_id': u'97', u'term_taxonomy_id': u'121', u'taxonomy': u'post_tag', u'slug': u'enviroment', u'description': u''}, {u'term_group': u'0', u'count': u'12', u'name': u'reddit', u'parent': u'0', u'term_id': u'112', u'term_taxonomy_id': u'116', u'taxonomy': u'post_tag', u'slug': u'reddit', u'description': u''}, {u'term_group': u'0', u'count': u'9', u'name': u'sketchdaily', u'parent': u'0', u'term_id': u'13', u'term_taxonomy_id': u'13', u'taxonomy': u'post_tag', u'slug': u'sketchdaily', u'description': u''}], u'date': u'2012-10-31 05:29:48', u'type': u'post', u'id': u'1349', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'82', u'name': u'draw', u'parent': u'0', u'term_id': u'7', u'cat_ID': u'7', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'draw', u'category_count': u'82', u'term_taxonomy_id': u'7', u'taxonomy': u'category', u'category_nicename': u'draw', u'slug': u'draw', u'description': u''}], u'name': u'levin-sketched-finals', u'parent': u'0', u'title': u'Levin sketched finals', u'url': u'http://artcontrol.me/?p=1328', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"Final works of this sketchbook. I've got a new book the same which I have started. This old sketchbook is falling to pieces so it's great to finish it and start a new", u'modified': u'2012-10-20 12:58:18', u'slug': u'Levin sketched finals', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'26', u'name': u'levin', u'parent': u'0', u'term_id': u'84', u'term_taxonomy_id': u'86', u'taxonomy': u'post_tag', u'slug': u'levin', u'description': u''}, {u'term_group': u'0', u'count': u'34', u'name': u'pencil', u'parent': u'0', u'term_id': u'10', u'term_taxonomy_id': u'10', u'taxonomy': u'post_tag', u'slug': u'pencil', u'description': u''}, {u'term_group': u'0', u'count': u'3', u'name': u'Tone', u'parent': u'0', u'term_id': u'114', u'term_taxonomy_id': u'118', u'taxonomy': u'post_tag', u'slug': u'tone', u'description': u''}], u'date': u'2012-10-20 12:58:18', u'type': u'post', u'id': u'1328', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'sketchdaily-enviroments', u'parent': u'0', u'title': u'SketchDaily Enviroments', u'url': u'http://artcontrol.me/?p=1325', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"Instead of character focused SketchDaily works I've been focusing on\xa0environments\xa0... done mostly with taking my sketches - inking and adding tone. I want to digitize", u'modified': u'2012-10-23 07:25:46', u'slug': u'SketchDaily Enviroments', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'8', u'name': u'environment', u'parent': u'0', u'term_id': u'115', u'term_taxonomy_id': u'119', u'taxonomy': u'post_tag', u'slug': u'environment', u'description': u''}, {u'term_group': u'0', u'count': u'85', u'name': u'GIMP', u'parent': u'0', u'term_id': u'59', u'term_taxonomy_id': u'60', u'taxonomy': u'post_tag', u'slug': u'gimp', u'description': u''}, {u'term_group': u'0', u'count': u'26', u'name': u'levin', u'parent': u'0', u'term_id': u'84', u'term_taxonomy_id': u'86', u'taxonomy': u'post_tag', u'slug': u'levin', u'description': u''}, {u'term_group': u'0', u'count': u'9', u'name': u'sketchdaily', u'parent': u'0', u'term_id': u'13', u'term_taxonomy_id': u'13', u'taxonomy': u'post_tag', u'slug': u'sketchdaily', u'description': u''}], u'date': u'2012-10-23 07:25:46', u'type': u'post', u'id': u'1325', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'sketchdaily-monsters-and-digital-street-dev', u'parent': u'0', u'title': u'Sketchdaily Monsters and Digital Street Dev', u'url': u'http://artcontrol.me/?p=1320', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"Nibs for my Wacom tablet arrived on Tuesday so I've had a couple of days praticing... oh boy it's nice to use over my old one. So much control. I've been focusing on taking", u'modified': u'2012-10-17 13:05:46', u'slug': u'Sketchdaily Monsters and Digital Street Dev', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'26', u'name': u'levin', u'parent': u'0', u'term_id': u'84', u'term_taxonomy_id': u'86', u'taxonomy': u'post_tag', u'slug': u'levin', u'description': u''}, {u'term_group': u'0', u'count': u'1', u'name': u'multipy', u'parent': u'0', u'term_id': u'113', u'term_taxonomy_id': u'117', u'taxonomy': u'post_tag', u'slug': u'multipy', u'description': u''}, {u'term_group': u'0', u'count': u'12', u'name': u'reddit', u'parent': u'0', u'term_id': u'112', u'term_taxonomy_id': u'116', u'taxonomy': u'post_tag', u'slug': u'reddit', u'description': u''}, {u'term_group': u'0', u'count': u'9', u'name': u'sketchdaily', u'parent': u'0', u'term_id': u'13', u'term_taxonomy_id': u'13', u'taxonomy': u'post_tag', u'slug': u'sketchdaily', u'description': u''}, {u'term_group': u'0', u'count': u'14', u'name': u'Street', u'parent': u'0', u'term_id': u'110', u'term_taxonomy_id': u'114', u'taxonomy': u'post_tag', u'slug': u'street', u'description': u''}], u'date': u'2012-10-17 13:05:46', u'type': u'post', u'id': u'1320', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'82', u'name': u'draw', u'parent': u'0', u'term_id': u'7', u'cat_ID': u'7', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'draw', u'category_count': u'82', u'term_taxonomy_id': u'7', u'taxonomy': u'category', u'category_nicename': u'draw', u'slug': u'draw', u'description': u''}], u'name': u'levin-plants-and-cars', u'parent': u'0', u'title': u'Levin Plants and Cars', u'url': u'http://artcontrol.me/?p=1302', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"I've taken a break from the digital painting till my new nibs arrive later in the week. Instead I've been working with Python - Pygame and Autopy. Something", u'modified': u'2012-10-15 11:17:27', u'slug': u'Levin Plants and Cars', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'26', u'name': u'levin', u'parent': u'0', u'term_id': u'84', u'term_taxonomy_id': u'86', u'taxonomy': u'post_tag', u'slug': u'levin', u'description': u''}, {u'term_group': u'0', u'count': u'14', u'name': u'Street', u'parent': u'0', u'term_id': u'110', u'term_taxonomy_id': u'114', u'taxonomy': u'post_tag', u'slug': u'street', u'description': u''}], u'date': u'2012-10-15 11:17:27', u'type': u'post', u'id': u'1302', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'82', u'name': u'draw', u'parent': u'0', u'term_id': u'7', u'cat_ID': u'7', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'draw', u'category_count': u'82', u'term_taxonomy_id': u'7', u'taxonomy': u'category', u'category_nicename': u'draw', u'slug': u'draw', u'description': u''}], u'name': u'levin-street-school', u'parent': u'0', u'title': u'Levin Street School', u'url': u'http://artcontrol.me/?p=1266', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"After uploading so much digital works lately I thought I'd better scan in sketchbook works. It's important to me that I can out of the house everyday with this sketchbook and", u'modified': u'2012-10-11 08:35:43', u'slug': u'Levin Street School', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'26', u'name': u'levin', u'parent': u'0', u'term_id': u'84', u'term_taxonomy_id': u'86', u'taxonomy': u'post_tag', u'slug': u'levin', u'description': u''}, {u'term_group': u'0', u'count': u'34', u'name': u'pencil', u'parent': u'0', u'term_id': u'10', u'term_taxonomy_id': u'10', u'taxonomy': u'post_tag', u'slug': u'pencil', u'description': u''}, {u'term_group': u'0', u'count': u'14', u'name': u'Street', u'parent': u'0', u'term_id': u'110', u'term_taxonomy_id': u'114', u'taxonomy': u'post_tag', u'slug': u'street', u'description': u''}], u'date': u'2012-10-11 08:35:43', u'type': u'post', u'id': u'1266', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'space-hangar-and-levin-street-dev', u'parent': u'0', u'title': u'Space Hangar and Levin street dev', u'url': u'http://artcontrol.me/?p=1259', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"Here's a couple of images I've been working with. Trying to get something done for the EOW. I'm not\xa0partially\xa0happy with them. So I moved onto working with more of a", u'modified': u'2012-10-09 23:14:40', u'slug': u'Space Hangar and Levin street dev', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'3', u'name': u'eow', u'parent': u'0', u'term_id': u'54', u'term_taxonomy_id': u'55', u'taxonomy': u'post_tag', u'slug': u'eow', u'description': u''}, {u'term_group': u'0', u'count': u'85', u'name': u'GIMP', u'parent': u'0', u'term_id': u'59', u'term_taxonomy_id': u'60', u'taxonomy': u'post_tag', u'slug': u'gimp', u'description': u''}, {u'term_group': u'0', u'count': u'26', u'name': u'levin', u'parent': u'0', u'term_id': u'84', u'term_taxonomy_id': u'86', u'taxonomy': u'post_tag', u'slug': u'levin', u'description': u''}], u'date': u'2012-10-09 23:14:40', u'type': u'post', u'id': u'1259', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'sketchdaily-works-4th-to-6th-oct-redditgetsdrawn', u'parent': u'0', u'title': u'SketchDaily Works 4th to 6th Oct + RedditGetsDrawn', u'url': u'http://artcontrol.me/?p=1251', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"More digital paintings in GIMP. I've gotten good at recording all my painting I've been doing, editing and uploaded to Youtube, No sound on it because I'm not a sound person", u'modified': u'2012-10-07 07:58:19', u'slug': u'SketchDaily Works 4th to 6th Oct + RedditGetsDrawn', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'85', u'name': u'GIMP', u'parent': u'0', u'term_id': u'59', u'term_taxonomy_id': u'60', u'taxonomy': u'post_tag', u'slug': u'gimp', u'description': u''}, {u'term_group': u'0', u'count': u'12', u'name': u'reddit', u'parent': u'0', u'term_id': u'112', u'term_taxonomy_id': u'116', u'taxonomy': u'post_tag', u'slug': u'reddit', u'description': u''}, {u'term_group': u'0', u'count': u'9', u'name': u'sketchdaily', u'parent': u'0', u'term_id': u'13', u'term_taxonomy_id': u'13', u'taxonomy': u'post_tag', u'slug': u'sketchdaily', u'description': u''}], u'date': u'2012-10-07 07:56:20', u'type': u'post', u'id': u'1251', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'reddit-sketchdaily-bonus-da', u'parent': u'0', u'title': u'Reddit SketchDaily bonus DA', u'url': u'http://artcontrol.me/?p=1232', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"I've really gotten back into SketchDaily on Reddit. They are having a month long Monster Girl theme happening... really motivates me to work on something everyday.\r\n\r\nHere's", u'modified': u'2012-10-04 23:12:58', u'slug': u'Reddit SketchDaily bonus DA', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'9', u'name': u'character', u'parent': u'0', u'term_id': u'33', u'term_taxonomy_id': u'34', u'taxonomy': u'post_tag', u'slug': u'character', u'description': u''}, {u'term_group': u'0', u'count': u'85', u'name': u'GIMP', u'parent': u'0', u'term_id': u'59', u'term_taxonomy_id': u'60', u'taxonomy': u'post_tag', u'slug': u'gimp', u'description': u''}, {u'term_group': u'0', u'count': u'9', u'name': u'sketchdaily', u'parent': u'0', u'term_id': u'13', u'term_taxonomy_id': u'13', u'taxonomy': u'post_tag', u'slug': u'sketchdaily', u'description': u''}], u'date': u'2012-10-04 23:12:58', u'type': u'post', u'id': u'1232', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'82', u'name': u'draw', u'parent': u'0', u'term_id': u'7', u'cat_ID': u'7', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'draw', u'category_count': u'82', u'term_taxonomy_id': u'7', u'taxonomy': u'category', u'category_nicename': u'draw', u'slug': u'draw', u'description': u''}], u'name': u'church-levin-mall-sketch', u'parent': u'0', u'title': u'Church Levin Mall Sketch', u'url': u'http://artcontrol.me/?p=1213', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"Pencil Sketches from various locations in Levin. This sketchbook is taking me sometime to get though. I'm only using reference in it - majority are these pencil street", u'modified': u'2012-10-02 22:45:02', u'slug': u'Church Levin Mall Sketch', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'26', u'name': u'levin', u'parent': u'0', u'term_id': u'84', u'term_taxonomy_id': u'86', u'taxonomy': u'post_tag', u'slug': u'levin', u'description': u''}, {u'term_group': u'0', u'count': u'14', u'name': u'Street', u'parent': u'0', u'term_id': u'110', u'term_taxonomy_id': u'114', u'taxonomy': u'post_tag', u'slug': u'street', u'description': u''}], u'date': u'2012-10-02 22:45:02', u'type': u'post', u'id': u'1213', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'cuba-street-painting-october', u'parent': u'0', u'title': u'Cuba Street Painting October', u'url': u'http://artcontrol.me/?p=1207', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"It's been several days since my last post. I've been on a trip to visit my Grandma. I got a bit of drawing done there - still need to scan the works in though. I was spose to", u'modified': u'2012-10-01 06:18:32', u'slug': u'Cuba Street Painting October', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'4', u'name': u'Cuba Street', u'parent': u'0', u'term_id': u'107', u'term_taxonomy_id': u'109', u'taxonomy': u'post_tag', u'slug': u'cuba-street', u'description': u''}, {u'term_group': u'0', u'count': u'16', u'name': u'video', u'parent': u'0', u'term_id': u'37', u'term_taxonomy_id': u'38', u'taxonomy': u'post_tag', u'slug': u'video', u'description': u''}, {u'term_group': u'0', u'count': u'15', u'name': u'wellington', u'parent': u'0', u'term_id': u'94', u'term_taxonomy_id': u'96', u'taxonomy': u'post_tag', u'slug': u'wellington', u'description': u''}], u'date': u'2012-10-01 06:18:32', u'type': u'post', u'id': u'1207', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'reddit-sketchdaily-end-sept', u'parent': u'0', u'title': u'Reddit Sketchdaily - End Sept', u'url': u'http://artcontrol.me/?p=1200', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"Hello. It's been sometime since I have done the Reddit SketchDaily challanges. End of last year I was doing them regularly. But I got sick it. Lately I've tried to get back", u'modified': u'2012-09-28 01:26:16', u'slug': u'Reddit Sketchdaily - End Sept', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'85', u'name': u'GIMP', u'parent': u'0', u'term_id': u'59', u'term_taxonomy_id': u'60', u'taxonomy': u'post_tag', u'slug': u'gimp', u'description': u''}, {u'term_group': u'0', u'count': u'9', u'name': u'sketchdaily', u'parent': u'0', u'term_id': u'13', u'term_taxonomy_id': u'13', u'taxonomy': u'post_tag', u'slug': u'sketchdaily', u'description': u''}], u'date': u'2012-09-28 01:26:16', u'type': u'post', u'id': u'1200', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'82', u'name': u'draw', u'parent': u'0', u'term_id': u'7', u'cat_ID': u'7', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'draw', u'category_count': u'82', u'term_taxonomy_id': u'7', u'taxonomy': u'category', u'category_nicename': u'draw', u'slug': u'draw', u'description': u''}], u'name': u'levin-cinema-painting', u'parent': u'0', u'title': u'Levin Cinema Painting ', u'url': u'http://artcontrol.me/?p=1190', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"Took a recent sketch from my sketchbook into GIMP and did a digital paint over. I recorded the painting and uploaded it to Youtube- with a voice narration over it. I'll make", u'modified': u'2012-09-25 12:24:48', u'slug': u'Levin Cinema Painting ', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'85', u'name': u'GIMP', u'parent': u'0', u'term_id': u'59', u'term_taxonomy_id': u'60', u'taxonomy': u'post_tag', u'slug': u'gimp', u'description': u''}, {u'term_group': u'0', u'count': u'26', u'name': u'levin', u'parent': u'0', u'term_id': u'84', u'term_taxonomy_id': u'86', u'taxonomy': u'post_tag', u'slug': u'levin', u'description': u''}, {u'term_group': u'0', u'count': u'14', u'name': u'Street', u'parent': u'0', u'term_id': u'110', u'term_taxonomy_id': u'114', u'taxonomy': u'post_tag', u'slug': u'street', u'description': u''}, {u'term_group': u'0', u'count': u'16', u'name': u'video', u'parent': u'0', u'term_id': u'37', u'term_taxonomy_id': u'38', u'taxonomy': u'post_tag', u'slug': u'video', u'description': u''}], u'date': u'2012-09-25 12:24:48', u'type': u'post', u'id': u'1190', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'82', u'name': u'draw', u'parent': u'0', u'term_id': u'7', u'cat_ID': u'7', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'draw', u'category_count': u'82', u'term_taxonomy_id': u'7', u'taxonomy': u'category', u'category_nicename': u'draw', u'slug': u'draw', u'description': u''}], u'name': u'pencil-levin-mall', u'parent': u'0', u'title': u'Pencil Levin Mall', u'url': u'http://artcontrol.me/?p=1172', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"Spent most of my time this\xa0weekend\xa0at my Mums place - gave me a chance to scan in drawings that I've done recent around Levin.\r\n\r\nThese are all drawn in my Landscape", u'modified': u'2012-09-23 05:06:47', u'slug': u'Pencil Levin Mall', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'26', u'name': u'levin', u'parent': u'0', u'term_id': u'84', u'term_taxonomy_id': u'86', u'taxonomy': u'post_tag', u'slug': u'levin', u'description': u''}, {u'term_group': u'0', u'count': u'34', u'name': u'pencil', u'parent': u'0', u'term_id': u'10', u'term_taxonomy_id': u'10', u'taxonomy': u'post_tag', u'slug': u'pencil', u'description': u''}, {u'term_group': u'0', u'count': u'14', u'name': u'Street', u'parent': u'0', u'term_id': u'110', u'term_taxonomy_id': u'114', u'taxonomy': u'post_tag', u'slug': u'street', u'description': u''}], u'date': u'2012-09-23 05:06:47', u'type': u'post', u'id': u'1172', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'painting-cuba-st-videos', u'parent': u'0', u'title': u'Painting Cuba St Videos', u'url': u'http://artcontrol.me/?p=1164', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"Here's a quick digital painting I worked on tonight. I've finally got CamStudio working correctly - I want to record games and art. I own a decent microphone, it just needs a", u'modified': u'2012-09-19 11:35:11', u'slug': u'Painting Cuba St Videos', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'4', u'name': u'concept', u'parent': u'0', u'term_id': u'108', u'term_taxonomy_id': u'110', u'taxonomy': u'post_tag', u'slug': u'concept', u'description': u''}, {u'term_group': u'0', u'count': u'85', u'name': u'GIMP', u'parent': u'0', u'term_id': u'59', u'term_taxonomy_id': u'60', u'taxonomy': u'post_tag', u'slug': u'gimp', u'description': u''}, {u'term_group': u'0', u'count': u'16', u'name': u'video', u'parent': u'0', u'term_id': u'37', u'term_taxonomy_id': u'38', u'taxonomy': u'post_tag', u'slug': u'video', u'description': u''}], u'date': u'2012-09-20 10:32:30', u'type': u'post', u'id': u'1164', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'82', u'name': u'draw', u'parent': u'0', u'term_id': u'7', u'cat_ID': u'7', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'draw', u'category_count': u'82', u'term_taxonomy_id': u'7', u'taxonomy': u'category', u'category_nicename': u'draw', u'slug': u'draw', u'description': u''}], u'name': u'lynn-mall-to-blender-model', u'parent': u'0', u'title': u'Lynn Mall to Blender Model', u'url': u'http://artcontrol.me/?p=1155', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"I've been super busy in Blender. It's been a blast. PolyCount has been a big inspration. I feel things are starting to move forward. This post shows a scene I worked on", u'modified': u'2012-09-17 03:36:52', u'slug': u'Lynn Mall to Blender Model', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'13', u'name': u'animation', u'parent': u'0', u'term_id': u'28', u'term_taxonomy_id': u'29', u'taxonomy': u'post_tag', u'slug': u'animation', u'description': u''}, {u'term_group': u'0', u'count': u'17', u'name': u'blender', u'parent': u'0', u'term_id': u'27', u'term_taxonomy_id': u'28', u'taxonomy': u'post_tag', u'slug': u'blender', u'description': u''}, {u'term_group': u'0', u'count': u'5', u'name': u'building', u'parent': u'0', u'term_id': u'70', u'term_taxonomy_id': u'72', u'taxonomy': u'post_tag', u'slug': u'building', u'description': u''}], u'date': u'2012-09-17 03:36:52', u'type': u'post', u'id': u'1155', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'19', u'name': u'3d', u'parent': u'0', u'term_id': u'25', u'cat_ID': u'25', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'3d', u'category_count': u'19', u'term_taxonomy_id': u'25', u'taxonomy': u'category', u'category_nicename': u'3d', u'slug': u'3d', u'description': u''}], u'name': u'street-sign', u'parent': u'0', u'title': u'Street Sign', u'url': u'http://artcontrol.me/?p=1144', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"Update on Blender works. I've started taking ideas from my sketches and modeling them in Blender. Since I so often draw street scenes it's about time I work on creating them", u'modified': u'2012-09-15 15:01:47', u'slug': u'Street Sign', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'13', u'name': u'animation', u'parent': u'0', u'term_id': u'28', u'term_taxonomy_id': u'29', u'taxonomy': u'post_tag', u'slug': u'animation', u'description': u''}, {u'term_group': u'0', u'count': u'17', u'name': u'blender', u'parent': u'0', u'term_id': u'27', u'term_taxonomy_id': u'28', u'taxonomy': u'post_tag', u'slug': u'blender', u'description': u''}, {u'term_group': u'0', u'count': u'1', u'name': u'film', u'parent': u'0', u'term_id': u'111', u'term_taxonomy_id': u'115', u'taxonomy': u'post_tag', u'slug': u'film', u'description': u''}, {u'term_group': u'0', u'count': u'14', u'name': u'Street', u'parent': u'0', u'term_id': u'110', u'term_taxonomy_id': u'114', u'taxonomy': u'post_tag', u'slug': u'street', u'description': u''}], u'date': u'2012-09-15 15:01:47', u'type': u'post', u'id': u'1144', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'cuba-painting-uv', u'parent': u'0', u'title': u'Cuba Painting UV', u'url': u'http://artcontrol.me/?p=1134', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'Just an update on how the digital painting is going. I got my old tablet off my Sister so been using this in GIMP and Inkscape. I still have my new one, but nice to have a go', u'modified': u'2012-09-14 06:21:34', u'slug': u'Cuba Painting UV', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'85', u'name': u'GIMP', u'parent': u'0', u'term_id': u'59', u'term_taxonomy_id': u'60', u'taxonomy': u'post_tag', u'slug': u'gimp', u'description': u''}, {u'term_group': u'0', u'count': u'14', u'name': u'Street', u'parent': u'0', u'term_id': u'110', u'term_taxonomy_id': u'114', u'taxonomy': u'post_tag', u'slug': u'street', u'description': u''}, {u'term_group': u'0', u'count': u'1', u'name': u'UV map', u'parent': u'0', u'term_id': u'109', u'term_taxonomy_id': u'113', u'taxonomy': u'post_tag', u'slug': u'uv-map', u'description': u''}], u'date': u'2012-09-14 06:21:34', u'type': u'post', u'id': u'1134', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'82', u'name': u'draw', u'parent': u'0', u'term_id': u'7', u'cat_ID': u'7', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'draw', u'category_count': u'82', u'term_taxonomy_id': u'7', u'taxonomy': u'category', u'category_nicename': u'draw', u'slug': u'draw', u'description': u''}], u'name': u'concept-pencil-cuba', u'parent': u'0', u'title': u'Concept Pencil Cuba', u'url': u'http://artcontrol.me/?p=1107', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'This is my pencil drawings from Wellington. I had only one sketchbook with me - the hardcover landscape shape. The first half is covered with pencil works of city street', u'modified': u'2012-09-11 10:23:13', u'slug': u'Concept Pencil Cuba', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'4', u'name': u'concept', u'parent': u'0', u'term_id': u'108', u'term_taxonomy_id': u'110', u'taxonomy': u'post_tag', u'slug': u'concept', u'description': u''}, {u'term_group': u'0', u'count': u'4', u'name': u'Cuba Street', u'parent': u'0', u'term_id': u'107', u'term_taxonomy_id': u'109', u'taxonomy': u'post_tag', u'slug': u'cuba-street', u'description': u''}, {u'term_group': u'0', u'count': u'34', u'name': u'pencil', u'parent': u'0', u'term_id': u'10', u'term_taxonomy_id': u'10', u'taxonomy': u'post_tag', u'slug': u'pencil', u'description': u''}, {u'term_group': u'0', u'count': u'15', u'name': u'wellington', u'parent': u'0', u'term_id': u'94', u'term_taxonomy_id': u'96', u'taxonomy': u'post_tag', u'slug': u'wellington', u'description': u''}], u'date': u'2012-09-11 10:23:13', u'type': u'post', u'id': u'1107', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'82', u'name': u'draw', u'parent': u'0', u'term_id': u'7', u'cat_ID': u'7', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'draw', u'category_count': u'82', u'term_taxonomy_id': u'7', u'taxonomy': u'category', u'category_nicename': u'draw', u'slug': u'draw', u'description': u''}], u'name': u'concept-pencil-cuba-2', u'parent': u'0', u'title': u'Concept Pencil Cuba 2', u'url': u'http://artcontrol.me/?p=1085', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'Part two of my Wellington drawing. These have just been sitting on the server so about time to post and show.\r\n\r\nAll in pencil, drawn early September around', u'modified': u'2012-09-19 02:59:59', u'slug': u'Concept Pencil Cuba 2', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'5', u'name': u'colored pencil', u'parent': u'0', u'term_id': u'40', u'term_taxonomy_id': u'41', u'taxonomy': u'post_tag', u'slug': u'colored-pencil', u'description': u''}, {u'term_group': u'0', u'count': u'4', u'name': u'concept', u'parent': u'0', u'term_id': u'108', u'term_taxonomy_id': u'110', u'taxonomy': u'post_tag', u'slug': u'concept', u'description': u''}, {u'term_group': u'0', u'count': u'4', u'name': u'Cuba Street', u'parent': u'0', u'term_id': u'107', u'term_taxonomy_id': u'109', u'taxonomy': u'post_tag', u'slug': u'cuba-street', u'description': u''}, {u'term_group': u'0', u'count': u'34', u'name': u'pencil', u'parent': u'0', u'term_id': u'10', u'term_taxonomy_id': u'10', u'taxonomy': u'post_tag', u'slug': u'pencil', u'description': u''}, {u'term_group': u'0', u'count': u'15', u'name': u'wellington', u'parent': u'0', u'term_id': u'94', u'term_taxonomy_id': u'96', u'taxonomy': u'post_tag', u'slug': u'wellington', u'description': u''}], u'date': u'2012-09-19 02:59:59', u'type': u'post', u'id': u'1085', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'19', u'name': u'3d', u'parent': u'0', u'term_id': u'25', u'cat_ID': u'25', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'3d', u'category_count': u'19', u'term_taxonomy_id': u'25', u'taxonomy': u'category', u'category_nicename': u'3d', u'slug': u'3d', u'description': u''}], u'name': u'welly-blend', u'parent': u'0', u'title': u'Welly Blend', u'url': u'http://artcontrol.me/?p=1075', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"The place I was staying in Wellington didn't have any internet. I spent my last night there working for several hours in GIMP - I modeled a new scene and worked with an older", u'modified': u'2012-09-10 13:45:00', u'slug': u'Welly Blend', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'13', u'name': u'animation', u'parent': u'0', u'term_id': u'28', u'term_taxonomy_id': u'29', u'taxonomy': u'post_tag', u'slug': u'animation', u'description': u''}, {u'term_group': u'0', u'count': u'17', u'name': u'blender', u'parent': u'0', u'term_id': u'27', u'term_taxonomy_id': u'28', u'taxonomy': u'post_tag', u'slug': u'blender', u'description': u''}, {u'term_group': u'0', u'count': u'4', u'name': u'model', u'parent': u'0', u'term_id': u'18', u'term_taxonomy_id': u'27', u'taxonomy': u'post_tag', u'slug': u'model', u'description': u''}, {u'term_group': u'0', u'count': u'16', u'name': u'video', u'parent': u'0', u'term_id': u'37', u'term_taxonomy_id': u'38', u'taxonomy': u'post_tag', u'slug': u'video', u'description': u''}], u'date': u'2012-09-10 13:45:00', u'type': u'post', u'id': u'1075', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'82', u'name': u'draw', u'parent': u'0', u'term_id': u'7', u'cat_ID': u'7', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'draw', u'category_count': u'82', u'term_taxonomy_id': u'7', u'taxonomy': u'category', u'category_nicename': u'draw', u'slug': u'draw', u'description': u''}], u'name': u'chch-sketches-sketchbook', u'parent': u'0', u'title': u'ChCh Sketches Sketchbook', u'url': u'http://artcontrol.me/?p=1072', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"This is a selection of work from my Christchurch Sketchbook. I uploaded these works sometime ago but never posted all of them. It's helpful to have the images just sit in my", u'modified': u'2012-09-09 03:11:29', u'slug': u'ChCh Sketches Sketchbook', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'5', u'name': u'colored pencil', u'parent': u'0', u'term_id': u'40', u'term_taxonomy_id': u'41', u'taxonomy': u'post_tag', u'slug': u'colored-pencil', u'description': u''}, {u'term_group': u'0', u'count': u'3', u'name': u'doodle', u'parent': u'0', u'term_id': u'55', u'term_taxonomy_id': u'56', u'taxonomy': u'post_tag', u'slug': u'doodle', u'description': u''}, {u'term_group': u'0', u'count': u'34', u'name': u'pencil', u'parent': u'0', u'term_id': u'10', u'term_taxonomy_id': u'10', u'taxonomy': u'post_tag', u'slug': u'pencil', u'description': u''}], u'date': u'2012-09-09 03:11:29', u'type': u'post', u'id': u'1072', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'82', u'name': u'draw', u'parent': u'0', u'term_id': u'7', u'cat_ID': u'7', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'draw', u'category_count': u'82', u'term_taxonomy_id': u'7', u'taxonomy': u'category', u'category_nicename': u'draw', u'slug': u'draw', u'description': u''}, {u'term_group': u'0', u'count': u'19', u'name': u'model', u'parent': u'0', u'term_id': u'18', u'cat_ID': u'18', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'model', u'category_count': u'19', u'term_taxonomy_id': u'18', u'taxonomy': u'category', u'category_nicename': u'model', u'slug': u'model', u'description': u''}], u'name': u'september-vincents-life-drawing', u'parent': u'0', u'title': u'September Vincents Life Drawing', u'url': u'http://artcontrol.me/?p=1061', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"I'm currently sitting at a desk in Wellington library. There is drips of water on the glass in front of me. It was raining, but it's calmed now.\r\n\r\nThe internet at the place", u'modified': u'2012-09-08 01:41:30', u'slug': u'September Vincents Life Drawing', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'5', u'name': u'color pencil', u'parent': u'0', u'term_id': u'36', u'term_taxonomy_id': u'37', u'taxonomy': u'post_tag', u'slug': u'color-pencil', u'description': u''}, {u'term_group': u'0', u'count': u'34', u'name': u'pencil', u'parent': u'0', u'term_id': u'10', u'term_taxonomy_id': u'10', u'taxonomy': u'post_tag', u'slug': u'pencil', u'description': u''}, {u'term_group': u'0', u'count': u'6', u'name': u'vincents', u'parent': u'0', u'term_id': u'16', u'term_taxonomy_id': u'16', u'taxonomy': u'post_tag', u'slug': u'vincents', u'description': u''}], u'date': u'2012-09-08 01:41:28', u'type': u'post', u'id': u'1061', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'82', u'name': u'draw', u'parent': u'0', u'term_id': u'7', u'cat_ID': u'7', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'draw', u'category_count': u'82', u'term_taxonomy_id': u'7', u'taxonomy': u'category', u'category_nicename': u'draw', u'slug': u'draw', u'description': u''}], u'name': u'random-ch-sketchbook', u'parent': u'0', u'title': u'Random Ch Sketchbook', u'url': u'http://artcontrol.me/?p=1058', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"I'm currently in Wellington for the weekend. My plan is to get lots of drawing done, and once I'm back in Levin scan and paint over. So far I have drawon on Cuba St and", u'modified': u'2012-09-06 12:09:52', u'slug': u'Random Ch Sketchbook', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'3', u'name': u'doodle', u'parent': u'0', u'term_id': u'55', u'term_taxonomy_id': u'56', u'taxonomy': u'post_tag', u'slug': u'doodle', u'description': u''}, {u'term_group': u'0', u'count': u'34', u'name': u'pencil', u'parent': u'0', u'term_id': u'10', u'term_taxonomy_id': u'10', u'taxonomy': u'post_tag', u'slug': u'pencil', u'description': u''}], u'date': u'2012-09-06 12:09:52', u'type': u'post', u'id': u'1058', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'19', u'name': u'3d', u'parent': u'0', u'term_id': u'25', u'cat_ID': u'25', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'3d', u'category_count': u'19', u'term_taxonomy_id': u'25', u'taxonomy': u'category', u'category_nicename': u'3d', u'slug': u'3d', u'description': u''}], u'name': u'character-swipe-blend', u'parent': u'0', u'title': u'Character Swipe Blend', u'url': u'http://artcontrol.me/?p=936', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"Another Blender update. It's addicting, what can I say. I worked with a model I had previously made - I just reanimated and textured. I added two walking stick objects - they", u'modified': u'2012-09-01 23:03:28', u'slug': u'Character Swipe Blend', u'comment_count': u'1', u'tag': [{u'term_group': u'0', u'count': u'13', u'name': u'animation', u'parent': u'0', u'term_id': u'28', u'term_taxonomy_id': u'29', u'taxonomy': u'post_tag', u'slug': u'animation', u'description': u''}, {u'term_group': u'0', u'count': u'17', u'name': u'blender', u'parent': u'0', u'term_id': u'27', u'term_taxonomy_id': u'28', u'taxonomy': u'post_tag', u'slug': u'blender', u'description': u''}, {u'term_group': u'0', u'count': u'9', u'name': u'character', u'parent': u'0', u'term_id': u'33', u'term_taxonomy_id': u'34', u'taxonomy': u'post_tag', u'slug': u'character', u'description': u''}, {u'term_group': u'0', u'count': u'3', u'name': u'walk cycle', u'parent': u'0', u'term_id': u'60', u'term_taxonomy_id': u'62', u'taxonomy': u'post_tag', u'slug': u'walk-cycle', u'description': u''}], u'date': u'2012-09-01 04:55:55', u'type': u'post', u'id': u'936', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'19', u'name': u'3d', u'parent': u'0', u'term_id': u'25', u'cat_ID': u'25', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'3d', u'category_count': u'19', u'term_taxonomy_id': u'25', u'taxonomy': u'category', u'category_nicename': u'3d', u'slug': u'3d', u'description': u''}], u'name': u'lights-camera-3rd-person', u'parent': u'0', u'title': u'Lights, Camera, 3rd Person', u'url': u'http://artcontrol.me/?p=930', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"Over the past several days I havn't drawn or painting. I needed a break from it. Instead I've been working with Source FIlmmaker (and a bit of blender) and playing Guild Wars", u'modified': u'2012-09-01 23:03:28', u'slug': u'Lights, Camera, 3rd Person', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'1', u'name': u'lfd2', u'parent': u'0', u'term_id': u'106', u'term_taxonomy_id': u'108', u'taxonomy': u'post_tag', u'slug': u'lfd2', u'description': u''}, {u'term_group': u'0', u'count': u'1', u'name': u'tf2', u'parent': u'0', u'term_id': u'105', u'term_taxonomy_id': u'107', u'taxonomy': u'post_tag', u'slug': u'tf2', u'description': u''}], u'date': u'2012-08-31 12:39:26', u'type': u'post', u'id': u'930', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'19', u'name': u'3d', u'parent': u'0', u'term_id': u'25', u'cat_ID': u'25', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'3d', u'category_count': u'19', u'term_taxonomy_id': u'25', u'taxonomy': u'category', u'category_nicename': u'3d', u'slug': u'3d', u'description': u''}], u'name': u'blender-testing-action', u'parent': u'0', u'title': u'Blender Testing Action', u'url': u'http://artcontrol.me/?p=924', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"I decided to get back into some 3d - taking a break from the digital painting for now. It's been a couple of days since I've painted. I've wanted for awhile to get back into", u'modified': u'2012-09-01 23:03:28', u'slug': u'Blender Testing Action', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'13', u'name': u'animation', u'parent': u'0', u'term_id': u'28', u'term_taxonomy_id': u'29', u'taxonomy': u'post_tag', u'slug': u'animation', u'description': u''}, {u'term_group': u'0', u'count': u'17', u'name': u'blender', u'parent': u'0', u'term_id': u'27', u'term_taxonomy_id': u'28', u'taxonomy': u'post_tag', u'slug': u'blender', u'description': u''}], u'date': u'2012-08-28 03:57:44', u'type': u'post', u'id': u'924', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'vector-logo-mall', u'parent': u'0', u'title': u'Vector Logo Mall', u'url': u'http://artcontrol.me/?p=911', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"I spend the majority of my digital painting time in GIMP. I love it, I always will. I've tried other Raster programs out there - and will continue to use - DeviantArt Muro,", u'modified': u'2012-09-01 23:03:28', u'slug': u'Vector Logo Mall', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'10', u'name': u'auckland', u'parent': u'0', u'term_id': u'88', u'term_taxonomy_id': u'90', u'taxonomy': u'post_tag', u'slug': u'auckland', u'description': u''}, {u'term_group': u'0', u'count': u'1', u'name': u'logot', u'parent': u'0', u'term_id': u'102', u'term_taxonomy_id': u'104', u'taxonomy': u'post_tag', u'slug': u'logot', u'description': u''}, {u'term_group': u'0', u'count': u'1', u'name': u'lynn mall', u'parent': u'0', u'term_id': u'103', u'term_taxonomy_id': u'105', u'taxonomy': u'post_tag', u'slug': u'lynn-mall', u'description': u''}, {u'term_group': u'0', u'count': u'1', u'name': u'vector', u'parent': u'0', u'term_id': u'101', u'term_taxonomy_id': u'103', u'taxonomy': u'post_tag', u'slug': u'vector', u'description': u''}], u'date': u'2012-08-27 12:56:36', u'type': u'post', u'id': u'911', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'sunday-morning', u'parent': u'0', u'title': u'Sunday Morning', u'url': u'http://artcontrol.me/?p=904', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"It is Sunday morning. I havn't done anything today. But here's a blog post to get started. The place is tidy. It needs to be tidier though.\r\n\r\nYesterday I tidied. Though I", u'modified': u'2012-09-01 23:03:29', u'slug': u'Sunday Morning', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'1', u'name': u'america', u'parent': u'0', u'term_id': u'100', u'term_taxonomy_id': u'102', u'taxonomy': u'post_tag', u'slug': u'america', u'description': u''}, {u'term_group': u'0', u'count': u'17', u'name': u'figure', u'parent': u'0', u'term_id': u'8', u'term_taxonomy_id': u'8', u'taxonomy': u'post_tag', u'slug': u'figure', u'description': u''}], u'date': u'2012-08-25 21:06:54', u'type': u'post', u'id': u'904', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'saturday-morning', u'parent': u'0', u'title': u'Saturday Morning', u'url': u'http://artcontrol.me/?p=895', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'Several digital paintings. Pencil sketch to GIMP paintings.\xa0Airport sketch thanks to Netscrolling. Exploring areas of color further - what shapes can I make?\xa0Do the', u'modified': u'2012-09-01 23:03:29', u'slug': u'Saturday Morning', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'10', u'name': u'auckland', u'parent': u'0', u'term_id': u'88', u'term_taxonomy_id': u'90', u'taxonomy': u'post_tag', u'slug': u'auckland', u'description': u''}, {u'term_group': u'0', u'count': u'3', u'name': u'gif', u'parent': u'0', u'term_id': u'93', u'term_taxonomy_id': u'95', u'taxonomy': u'post_tag', u'slug': u'gif', u'description': u''}, {u'term_group': u'0', u'count': u'85', u'name': u'GIMP', u'parent': u'0', u'term_id': u'59', u'term_taxonomy_id': u'60', u'taxonomy': u'post_tag', u'slug': u'gimp', u'description': u''}], u'date': u'2012-08-24 23:08:00', u'type': u'post', u'id': u'895', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'icons-web', u'parent': u'0', u'title': u'icons Web', u'url': u'http://artcontrol.me/?p=885', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'I think the site needs a paint. Heres some icons to get started.\r\n\r\n\r\n\r\nRSS Gif image. I had planned to use these for for the sidebar, but thinking about it', u'modified': u'2012-09-01 23:03:28', u'slug': u'icons Web', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'3', u'name': u'gif', u'parent': u'0', u'term_id': u'93', u'term_taxonomy_id': u'95', u'taxonomy': u'post_tag', u'slug': u'gif', u'description': u''}, {u'term_group': u'0', u'count': u'1', u'name': u'lcon', u'parent': u'0', u'term_id': u'99', u'term_taxonomy_id': u'101', u'taxonomy': u'post_tag', u'slug': u'lcon', u'description': u''}], u'date': u'2012-08-26 08:55:10', u'type': u'post', u'id': u'885', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'82', u'name': u'draw', u'parent': u'0', u'term_id': u'7', u'cat_ID': u'7', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'draw', u'category_count': u'82', u'term_taxonomy_id': u'7', u'taxonomy': u'category', u'category_nicename': u'draw', u'slug': u'draw', u'description': u''}], u'name': u'westfield-auckland-sketch', u'parent': u'0', u'title': u'Westfield Auckland Sketch', u'url': u'http://artcontrol.me/?p=878', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'Some more drawings of Auckland during my visit. Most of these are around Westfield New Lynn Mall.\r\n\r\nTop half. HB Pencil on white paper. This is mostly the\xa0ceiling.\xa0Working', u'modified': u'2012-09-01 23:03:29', u'slug': u'Westfield Auckland Sketch', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'10', u'name': u'auckland', u'parent': u'0', u'term_id': u'88', u'term_taxonomy_id': u'90', u'taxonomy': u'post_tag', u'slug': u'auckland', u'description': u''}, {u'term_group': u'0', u'count': u'1', u'name': u'mall', u'parent': u'0', u'term_id': u'98', u'term_taxonomy_id': u'100', u'taxonomy': u'post_tag', u'slug': u'mall', u'description': u''}, {u'term_group': u'0', u'count': u'34', u'name': u'pencil', u'parent': u'0', u'term_id': u'10', u'term_taxonomy_id': u'10', u'taxonomy': u'post_tag', u'slug': u'pencil', u'description': u''}], u'date': u'2012-08-24 07:06:07', u'type': u'post', u'id': u'878', u'comment_status': u'open'}, {u'status': u'publish', u'category': [], u'name': u'875', u'parent': u'0', u'title': u'', u'url': u'http://artcontrol.me/?p=875', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'', u'modified': u'2012-08-24 00:43:15', u'slug': u'', u'comment_count': u'0', u'tag': [], u'date': u'2012-08-24 00:43:15', u'type': u'nav_menu_item', u'id': u'875', u'comment_status': u'closed'}, {u'status': u'publish', u'category': [], u'name': u'874', u'parent': u'0', u'title': u'', u'url': u'http://artcontrol.me/?p=874', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'', u'modified': u'2012-08-24 00:43:15', u'slug': u'', u'comment_count': u'0', u'tag': [], u'date': u'2012-08-24 00:43:15', u'type': u'nav_menu_item', u'id': u'874', u'comment_status': u'closed'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'print-digital-strd', u'parent': u'0', u'title': u'Print Digital Strd', u'url': u'http://artcontrol.me/?p=863', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"Digital works that I worked on last night. I have the flu so havn't been drawing (or even leaving the house). I'll keep warm and recovery should be fine.\r\n\r\nHere are some", u'modified': u'2012-09-01 23:03:29', u'slug': u'Print Digital Strd', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'85', u'name': u'GIMP', u'parent': u'0', u'term_id': u'59', u'term_taxonomy_id': u'60', u'taxonomy': u'post_tag', u'slug': u'gimp', u'description': u''}, {u'term_group': u'0', u'count': u'15', u'name': u'wellington', u'parent': u'0', u'term_id': u'94', u'term_taxonomy_id': u'96', u'taxonomy': u'post_tag', u'slug': u'wellington', u'description': u''}], u'date': u'2012-08-24 00:35:34', u'type': u'post', u'id': u'863', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'digital-mall-time', u'parent': u'0', u'title': u'Digital Mall Time', u'url': u'http://artcontrol.me/?p=853', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'Taken several of my sketches from Auckland and produced a paint over. There was only one new idea here - using the eraser in areas to help\xa0tonal\xa0value\r\n\r\nNew Lynn mall. I', u'modified': u'2012-09-01 23:03:29', u'slug': u'Digital Mall Time', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'10', u'name': u'auckland', u'parent': u'0', u'term_id': u'88', u'term_taxonomy_id': u'90', u'taxonomy': u'post_tag', u'slug': u'auckland', u'description': u''}, {u'term_group': u'0', u'count': u'3', u'name': u'gif', u'parent': u'0', u'term_id': u'93', u'term_taxonomy_id': u'95', u'taxonomy': u'post_tag', u'slug': u'gif', u'description': u''}, {u'term_group': u'0', u'count': u'85', u'name': u'GIMP', u'parent': u'0', u'term_id': u'59', u'term_taxonomy_id': u'60', u'taxonomy': u'post_tag', u'slug': u'gimp', u'description': u''}], u'date': u'2012-08-22 07:30:23', u'type': u'post', u'id': u'853', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'82', u'name': u'draw', u'parent': u'0', u'term_id': u'7', u'cat_ID': u'7', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'draw', u'category_count': u'82', u'term_taxonomy_id': u'7', u'taxonomy': u'category', u'category_nicename': u'draw', u'slug': u'draw', u'description': u''}], u'name': u'auckland-waterfont-plus-train-wait', u'parent': u'0', u'title': u'Auckland Waterfont plus train wait', u'url': u'http://artcontrol.me/?p=843', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'A selection of drawings from my trip to Auckland. I picked the Sketchbook up from Ponsonby and began to fill it with views from around Auckland. Although I picked up two new', u'modified': u'2012-09-01 23:03:29', u'slug': u'Auckland Waterfont plus train wait', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'10', u'name': u'auckland', u'parent': u'0', u'term_id': u'88', u'term_taxonomy_id': u'90', u'taxonomy': u'post_tag', u'slug': u'auckland', u'description': u''}, {u'term_group': u'0', u'count': u'14', u'name': u'landscape', u'parent': u'0', u'term_id': u'9', u'term_taxonomy_id': u'9', u'taxonomy': u'post_tag', u'slug': u'landscape', u'description': u''}, {u'term_group': u'0', u'count': u'34', u'name': u'pencil', u'parent': u'0', u'term_id': u'10', u'term_taxonomy_id': u'10', u'taxonomy': u'post_tag', u'slug': u'pencil', u'description': u''}, {u'term_group': u'0', u'count': u'1', u'name': u'train', u'parent': u'0', u'term_id': u'92', u'term_taxonomy_id': u'94', u'taxonomy': u'post_tag', u'slug': u'train', u'description': u''}], u'date': u'2012-08-20 21:08:16', u'type': u'post', u'id': u'843', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'waihi-digital-face', u'parent': u'0', u'title': u'Waihi Digital Face', u'url': u'http://artcontrol.me/?p=832', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"More digital paintovers of sketchbook pages. Also included are gif images to show the layers I've been working with.\r\n\r\nBeach in Levin. Again I focused on the blue for the", u'modified': u'2012-09-01 23:03:29', u'slug': u'Waihi Digital Face', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'4', u'name': u'Collaborative', u'parent': u'0', u'term_id': u'67', u'term_taxonomy_id': u'69', u'taxonomy': u'post_tag', u'slug': u'collaborative', u'description': u''}, {u'term_group': u'0', u'count': u'1', u'name': u'court', u'parent': u'0', u'term_id': u'91', u'term_taxonomy_id': u'93', u'taxonomy': u'post_tag', u'slug': u'court', u'description': u''}], u'date': u'2012-08-18 20:23:42', u'type': u'post', u'id': u'832', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'82', u'name': u'draw', u'parent': u'0', u'term_id': u'7', u'cat_ID': u'7', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'draw', u'category_count': u'82', u'term_taxonomy_id': u'7', u'taxonomy': u'category', u'category_nicename': u'draw', u'slug': u'draw', u'description': u''}], u'name': u'826', u'parent': u'0', u'title': u'Sketchbook auckland', u'url': u'http://artcontrol.me/?p=826', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'Here are drawings from a protest in Waihi and Aucland.\r\nI love my new landscape sketchbook - the pages are long! These drawings are all in my A4 visual', u'modified': u'2012-09-01 23:03:29', u'slug': u'Sketchbook auckland', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'10', u'name': u'auckland', u'parent': u'0', u'term_id': u'88', u'term_taxonomy_id': u'90', u'taxonomy': u'post_tag', u'slug': u'auckland', u'description': u''}, {u'term_group': u'0', u'count': u'4', u'name': u'Collaborative', u'parent': u'0', u'term_id': u'67', u'term_taxonomy_id': u'69', u'taxonomy': u'post_tag', u'slug': u'collaborative', u'description': u''}, {u'term_group': u'0', u'count': u'2', u'name': u'Draw', u'parent': u'0', u'term_id': u'86', u'term_taxonomy_id': u'88', u'taxonomy': u'post_tag', u'slug': u'draw-2', u'description': u''}, {u'term_group': u'0', u'count': u'33', u'name': u'portrait', u'parent': u'0', u'term_id': u'20', u'term_taxonomy_id': u'20', u'taxonomy': u'post_tag', u'slug': u'portrait', u'description': u''}, {u'term_group': u'0', u'count': u'5', u'name': u'sketchbook', u'parent': u'0', u'term_id': u'87', u'term_taxonomy_id': u'89', u'taxonomy': u'post_tag', u'slug': u'sketchbook', u'description': u''}, {u'term_group': u'0', u'count': u'1', u'name': u'waihi', u'parent': u'0', u'term_id': u'90', u'term_taxonomy_id': u'92', u'taxonomy': u'post_tag', u'slug': u'waihi', u'description': u''}], u'date': u'2012-08-18 00:44:21', u'type': u'post', u'id': u'826', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'eye-glow-digital', u'parent': u'0', u'title': u'Eye Glow Digital', u'url': u'http://artcontrol.me/?p=803', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'I am currently in Auckland, weather has been decent - allowed me to get outside and sketch lots. Here are some digital works I did when in Waihi - reference is recent', u'modified': u'2012-09-01 23:03:29', u'slug': u'Eye Glow Digital', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'2', u'name': u'cafrin', u'parent': u'0', u'term_id': u'72', u'term_taxonomy_id': u'74', u'taxonomy': u'post_tag', u'slug': u'cafrin', u'description': u''}, {u'term_group': u'0', u'count': u'26', u'name': u'levin', u'parent': u'0', u'term_id': u'84', u'term_taxonomy_id': u'86', u'taxonomy': u'post_tag', u'slug': u'levin', u'description': u''}], u'date': u'2012-08-16 07:14:17', u'type': u'post', u'id': u'803', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'82', u'name': u'draw', u'parent': u'0', u'term_id': u'7', u'cat_ID': u'7', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'draw', u'category_count': u'82', u'term_taxonomy_id': u'7', u'taxonomy': u'category', u'category_nicename': u'draw', u'slug': u'draw', u'description': u''}, {u'term_group': u'0', u'count': u'13', u'name': u'paint', u'parent': u'0', u'term_id': u'15', u'cat_ID': u'15', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'paint', u'category_count': u'13', u'term_taxonomy_id': u'15', u'taxonomy': u'category', u'category_nicename': u'paint', u'slug': u'paint', u'description': u''}], u'name': u'sketchy-sketchy-levin', u'parent': u'0', u'title': u'Sketchy Sketchy Levin', u'url': u'http://artcontrol.me/?p=791', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'Some recent pencil works in Visual Diary. These works were done well in Levin, mostly from watching television (yay Breaking Bad) and a select few from outings in', u'modified': u'2012-09-01 23:03:29', u'slug': u'Sketchy Sketchy Levin', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'1', u'name': u'breaking bad', u'parent': u'0', u'term_id': u'85', u'term_taxonomy_id': u'87', u'taxonomy': u'post_tag', u'slug': u'breaking-bad', u'description': u''}, {u'term_group': u'0', u'count': u'5', u'name': u'building', u'parent': u'0', u'term_id': u'70', u'term_taxonomy_id': u'72', u'taxonomy': u'post_tag', u'slug': u'building', u'description': u''}, {u'term_group': u'0', u'count': u'26', u'name': u'levin', u'parent': u'0', u'term_id': u'84', u'term_taxonomy_id': u'86', u'taxonomy': u'post_tag', u'slug': u'levin', u'description': u''}, {u'term_group': u'0', u'count': u'34', u'name': u'pencil', u'parent': u'0', u'term_id': u'10', u'term_taxonomy_id': u'10', u'taxonomy': u'post_tag', u'slug': u'pencil', u'description': u''}, {u'term_group': u'0', u'count': u'33', u'name': u'portrait', u'parent': u'0', u'term_id': u'20', u'term_taxonomy_id': u'20', u'taxonomy': u'post_tag', u'slug': u'portrait', u'description': u''}, {u'term_group': u'0', u'count': u'1', u'name': u'spiderman', u'parent': u'0', u'term_id': u'83', u'term_taxonomy_id': u'85', u'taxonomy': u'post_tag', u'slug': u'spiderman', u'description': u''}], u'date': u'2012-08-14 06:59:27', u'type': u'post', u'id': u'791', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'13', u'name': u'paint', u'parent': u'0', u'term_id': u'15', u'cat_ID': u'15', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'paint', u'category_count': u'13', u'term_taxonomy_id': u'15', u'taxonomy': u'category', u'category_nicename': u'paint', u'slug': u'paint', u'description': u''}], u'name': u'board-acrylic-takaka', u'parent': u'0', u'title': u'Board Acrylic Takaka', u'url': u'http://artcontrol.me/?p=786', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"I've been saying in the last few posts about posting my recent acrylic board paintings. Landscapes from when I returned from ChCh. I borrowed Joys camera and finally took", u'modified': u'2012-09-01 23:03:29', u'slug': u'Board Acrylic Takaka', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'4', u'name': u'acrylic', u'parent': u'0', u'term_id': u'61', u'term_taxonomy_id': u'63', u'taxonomy': u'post_tag', u'slug': u'acrylic', u'description': u''}, {u'term_group': u'0', u'count': u'1', u'name': u'cardboard', u'parent': u'0', u'term_id': u'81', u'term_taxonomy_id': u'83', u'taxonomy': u'post_tag', u'slug': u'cardboard', u'description': u''}, {u'term_group': u'0', u'count': u'6', u'name': u'grayscale', u'parent': u'0', u'term_id': u'82', u'term_taxonomy_id': u'84', u'taxonomy': u'post_tag', u'slug': u'grayscale', u'description': u''}], u'date': u'2012-08-13 01:57:05', u'type': u'post', u'id': u'786', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'13', u'name': u'paint', u'parent': u'0', u'term_id': u'15', u'cat_ID': u'15', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'paint', u'category_count': u'13', u'term_taxonomy_id': u'15', u'taxonomy': u'category', u'category_nicename': u'paint', u'slug': u'paint', u'description': u''}], u'name': u'wall-paint-levin', u'parent': u'0', u'title': u'Wall Paint Levin', u'url': u'http://artcontrol.me/?p=775', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"I've been cooking (curries, and a cake), and giving the place a tidy, and slight move! Moved all my gear from the lounge to my bedroom - which is now taking a more computer", u'modified': u'2012-09-01 23:03:29', u'slug': u'Wall Paint Levin', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'4', u'name': u'acrylic', u'parent': u'0', u'term_id': u'61', u'term_taxonomy_id': u'63', u'taxonomy': u'post_tag', u'slug': u'acrylic', u'description': u''}, {u'term_group': u'0', u'count': u'1', u'name': u'mural', u'parent': u'0', u'term_id': u'80', u'term_taxonomy_id': u'82', u'taxonomy': u'post_tag', u'slug': u'mural', u'description': u''}, {u'term_group': u'0', u'count': u'1', u'name': u'wall', u'parent': u'0', u'term_id': u'79', u'term_taxonomy_id': u'81', u'taxonomy': u'post_tag', u'slug': u'wall', u'description': u''}], u'date': u'2012-08-12 12:14:16', u'type': u'post', u'id': u'775', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'da-drawplz-august', u'parent': u'0', u'title': u'DA DrawPlz - August', u'url': u'http://artcontrol.me/?p=768', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'I jumped on DeviantArt tonight and worked though a few of the posts on DrawPlz with drawing requests. It was relaxing, and certainly captured me into the zone. These are', u'modified': u'2012-09-01 23:03:30', u'slug': u'DA DrawPlz - August', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'2', u'name': u'DA', u'parent': u'0', u'term_id': u'66', u'term_taxonomy_id': u'68', u'taxonomy': u'post_tag', u'slug': u'da', u'description': u''}, {u'term_group': u'0', u'count': u'1', u'name': u'op', u'parent': u'0', u'term_id': u'78', u'term_taxonomy_id': u'80', u'taxonomy': u'post_tag', u'slug': u'op', u'description': u''}], u'date': u'2012-08-09 13:46:41', u'type': u'post', u'id': u'768', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'portrait-batman-chch', u'parent': u'0', u'title': u'Portrait Batman ChCh', u'url': u'http://artcontrol.me/?p=760', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"More digital works. It's what I've been focusing on since I've been back in Levin. I like to try to put in at least a couple of hours a day into these - usually in the", u'modified': u'2012-09-01 23:03:30', u'slug': u'Portrait Batman ChCh', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'1', u'name': u'batman', u'parent': u'0', u'term_id': u'76', u'term_taxonomy_id': u'78', u'taxonomy': u'post_tag', u'slug': u'batman', u'description': u''}, {u'term_group': u'0', u'count': u'5', u'name': u'building', u'parent': u'0', u'term_id': u'70', u'term_taxonomy_id': u'72', u'taxonomy': u'post_tag', u'slug': u'building', u'description': u''}, {u'term_group': u'0', u'count': u'1', u'name': u'christchurch', u'parent': u'0', u'term_id': u'77', u'term_taxonomy_id': u'79', u'taxonomy': u'post_tag', u'slug': u'christchurch', u'description': u''}, {u'term_group': u'0', u'count': u'85', u'name': u'GIMP', u'parent': u'0', u'term_id': u'59', u'term_taxonomy_id': u'60', u'taxonomy': u'post_tag', u'slug': u'gimp', u'description': u''}, {u'term_group': u'0', u'count': u'33', u'name': u'portrait', u'parent': u'0', u'term_id': u'20', u'term_taxonomy_id': u'20', u'taxonomy': u'post_tag', u'slug': u'portrait', u'description': u''}], u'date': u'2012-08-08 12:02:47', u'type': u'post', u'id': u'760', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}, {u'term_group': u'0', u'count': u'19', u'name': u'model', u'parent': u'0', u'term_id': u'18', u'cat_ID': u'18', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'model', u'category_count': u'19', u'term_taxonomy_id': u'18', u'taxonomy': u'category', u'category_nicename': u'model', u'slug': u'model', u'description': u''}], u'name': u'digital-takaka-nudes', u'parent': u'0', u'title': u'Digital Takaka Nudes', u'url': u'http://artcontrol.me/?p=748', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'So I scanned in over 50 pages of\xa0sketchbook\xa0and uploaded it to my blogs server - and only done one post out of it yet. The easiest way to work though these posts will be on', u'modified': u'2012-09-01 23:03:50', u'slug': u'Digital Takaka Nudes', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'9', u'name': u'character', u'parent': u'0', u'term_id': u'33', u'term_taxonomy_id': u'34', u'taxonomy': u'post_tag', u'slug': u'character', u'description': u''}, {u'term_group': u'0', u'count': u'85', u'name': u'GIMP', u'parent': u'0', u'term_id': u'59', u'term_taxonomy_id': u'60', u'taxonomy': u'post_tag', u'slug': u'gimp', u'description': u''}, {u'term_group': u'0', u'count': u'5', u'name': u'takaka', u'parent': u'0', u'term_id': u'68', u'term_taxonomy_id': u'70', u'taxonomy': u'post_tag', u'slug': u'takaka', u'description': u''}], u'date': u'2012-08-05 18:23:50', u'type': u'post', u'id': u'748', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'82', u'name': u'draw', u'parent': u'0', u'term_id': u'7', u'cat_ID': u'7', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'draw', u'category_count': u'82', u'term_taxonomy_id': u'7', u'taxonomy': u'category', u'category_nicename': u'draw', u'slug': u'draw', u'description': u''}], u'name': u'chch-cbd-park-drawings', u'parent': u'0', u'title': u'Chch CBD Park drawings', u'url': u'http://artcontrol.me/?p=747', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"Here's some work from Christchurch. I spent just over a week there recently, staying at my friend Brookes place. She had a large flat with over 8 flatmates. It was a vegan", u'modified': u'2012-09-01 23:03:30', u'slug': u'Chch CBD Park drawings', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'1', u'name': u'cbd', u'parent': u'0', u'term_id': u'75', u'term_taxonomy_id': u'77', u'taxonomy': u'post_tag', u'slug': u'cbd', u'description': u''}, {u'term_group': u'0', u'count': u'1', u'name': u'chch', u'parent': u'0', u'term_id': u'74', u'term_taxonomy_id': u'76', u'taxonomy': u'post_tag', u'slug': u'chch', u'description': u''}, {u'term_group': u'0', u'count': u'34', u'name': u'pencil', u'parent': u'0', u'term_id': u'10', u'term_taxonomy_id': u'10', u'taxonomy': u'post_tag', u'slug': u'pencil', u'description': u''}], u'date': u'2012-08-07 11:16:03', u'type': u'post', u'id': u'747', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'82', u'name': u'draw', u'parent': u'0', u'term_id': u'7', u'cat_ID': u'7', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'draw', u'category_count': u'82', u'term_taxonomy_id': u'7', u'taxonomy': u'category', u'category_nicename': u'draw', u'slug': u'draw', u'description': u''}], u'name': u'takaka-life-drawing-murry', u'parent': u'0', u'title': u'Takaka Life Drawing - Murry', u'url': u'http://artcontrol.me/?p=743', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"Ok. So I'm back in Levin after my trip down to the South Island. Now it's time to upload all the artwork I did well away. Two sketchbooks are full of drawings. I kept to just", u'modified': u'2012-09-01 23:03:50', u'slug': u'Takaka Life Drawing - Murry', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'1', u'name': u'life drawing', u'parent': u'0', u'term_id': u'73', u'term_taxonomy_id': u'75', u'taxonomy': u'post_tag', u'slug': u'life-drawing', u'description': u''}, {u'term_group': u'0', u'count': u'11', u'name': u'male', u'parent': u'0', u'term_id': u'22', u'term_taxonomy_id': u'22', u'taxonomy': u'post_tag', u'slug': u'male', u'description': u''}, {u'term_group': u'0', u'count': u'34', u'name': u'pencil', u'parent': u'0', u'term_id': u'10', u'term_taxonomy_id': u'10', u'taxonomy': u'post_tag', u'slug': u'pencil', u'description': u''}, {u'term_group': u'0', u'count': u'5', u'name': u'takaka', u'parent': u'0', u'term_id': u'68', u'term_taxonomy_id': u'70', u'taxonomy': u'post_tag', u'slug': u'takaka', u'description': u''}], u'date': u'2012-08-03 15:22:31', u'type': u'post', u'id': u'743', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'cafrins-mask-collaborative-2', u'parent': u'0', u'title': u'Cafrins Mask Collaborative 2', u'url': u'http://artcontrol.me/?p=690', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"So I'm back in Levin after a trip down south. I have plenty of artwork that I need to upload - this should be happening over the next few days as I scan it in. I'll take this", u'modified': u'2012-09-01 23:03:50', u'slug': u'Cafrins Mask Collaborative 2', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'2', u'name': u'cafrin', u'parent': u'0', u'term_id': u'72', u'term_taxonomy_id': u'74', u'taxonomy': u'post_tag', u'slug': u'cafrin', u'description': u''}, {u'term_group': u'0', u'count': u'85', u'name': u'GIMP', u'parent': u'0', u'term_id': u'59', u'term_taxonomy_id': u'60', u'taxonomy': u'post_tag', u'slug': u'gimp', u'description': u''}], u'date': u'2012-08-02 10:13:36', u'type': u'post', u'id': u'690', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'13', u'name': u'paint', u'parent': u'0', u'term_id': u'15', u'cat_ID': u'15', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'paint', u'category_count': u'13', u'term_taxonomy_id': u'15', u'taxonomy': u'category', u'category_nicename': u'paint', u'slug': u'paint', u'description': u''}], u'name': u'old-paintings-part-two', u'parent': u'0', u'title': u'Old Paintings: Part two', u'url': u'http://artcontrol.me/?p=677', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'Part two of reflecting back at some older paintings. These paintings were done around the same time as the previous post. Last year I watched 5 seasons of the television show', u'modified': u'2012-09-01 23:03:50', u'slug': u'Old Paintings: Part two', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'4', u'name': u'acrylic', u'parent': u'0', u'term_id': u'61', u'term_taxonomy_id': u'63', u'taxonomy': u'post_tag', u'slug': u'acrylic', u'description': u''}, {u'term_group': u'0', u'count': u'1', u'name': u'life painting', u'parent': u'0', u'term_id': u'71', u'term_taxonomy_id': u'73', u'taxonomy': u'post_tag', u'slug': u'life-painting', u'description': u''}, {u'term_group': u'0', u'count': u'3', u'name': u'oil', u'parent': u'0', u'term_id': u'39', u'term_taxonomy_id': u'40', u'taxonomy': u'post_tag', u'slug': u'oil', u'description': u''}, {u'term_group': u'0', u'count': u'33', u'name': u'portrait', u'parent': u'0', u'term_id': u'20', u'term_taxonomy_id': u'20', u'taxonomy': u'post_tag', u'slug': u'portrait', u'description': u''}], u'date': u'2012-07-27 03:36:19', u'type': u'post', u'id': u'677', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'13', u'name': u'paint', u'parent': u'0', u'term_id': u'15', u'cat_ID': u'15', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'paint', u'category_count': u'13', u'term_taxonomy_id': u'15', u'taxonomy': u'category', u'category_nicename': u'paint', u'slug': u'paint', u'description': u''}], u'name': u'old-paintings', u'parent': u'0', u'title': u'Old Paintings', u'url': u'http://artcontrol.me/?p=669', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"I'm currently filling up a sketchbook but won't post images from it till I'm back in Levin where I can scan in the works.\r\n\r\nFor now I'll like to post some older paintings", u'modified': u'2012-09-01 23:03:50', u'slug': u'Old Paintings', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'14', u'name': u'landscape', u'parent': u'0', u'term_id': u'9', u'term_taxonomy_id': u'9', u'taxonomy': u'post_tag', u'slug': u'landscape', u'description': u''}, {u'term_group': u'0', u'count': u'3', u'name': u'oil', u'parent': u'0', u'term_id': u'39', u'term_taxonomy_id': u'40', u'taxonomy': u'post_tag', u'slug': u'oil', u'description': u''}, {u'term_group': u'0', u'count': u'33', u'name': u'portrait', u'parent': u'0', u'term_id': u'20', u'term_taxonomy_id': u'20', u'taxonomy': u'post_tag', u'slug': u'portrait', u'description': u''}], u'date': u'2012-07-24 03:36:10', u'type': u'post', u'id': u'669', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'82', u'name': u'draw', u'parent': u'0', u'term_id': u'7', u'cat_ID': u'7', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'draw', u'category_count': u'82', u'term_taxonomy_id': u'7', u'taxonomy': u'category', u'category_nicename': u'draw', u'slug': u'draw', u'description': u''}], u'name': u'explore-takaka-drawings', u'parent': u'0', u'title': u'Explore Takaka Drawings', u'url': u'http://artcontrol.me/?p=654', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"So I've been in Takaka for several days now, and drawing every one of these. It's been nice taking a break from Levin and being in a different setting.\r\n\r\nHere's some of the", u'modified': u'2012-09-01 23:03:50', u'slug': u'Explore Takaka Drawings', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'5', u'name': u'building', u'parent': u'0', u'term_id': u'70', u'term_taxonomy_id': u'72', u'taxonomy': u'post_tag', u'slug': u'building', u'description': u''}, {u'term_group': u'0', u'count': u'5', u'name': u'colored pencil', u'parent': u'0', u'term_id': u'40', u'term_taxonomy_id': u'41', u'taxonomy': u'post_tag', u'slug': u'colored-pencil', u'description': u''}, {u'term_group': u'0', u'count': u'14', u'name': u'landscape', u'parent': u'0', u'term_id': u'9', u'term_taxonomy_id': u'9', u'taxonomy': u'post_tag', u'slug': u'landscape', u'description': u''}, {u'term_group': u'0', u'count': u'34', u'name': u'pencil', u'parent': u'0', u'term_id': u'10', u'term_taxonomy_id': u'10', u'taxonomy': u'post_tag', u'slug': u'pencil', u'description': u''}, {u'term_group': u'0', u'count': u'5', u'name': u'takaka', u'parent': u'0', u'term_id': u'68', u'term_taxonomy_id': u'70', u'taxonomy': u'post_tag', u'slug': u'takaka', u'description': u''}, {u'term_group': u'0', u'count': u'3', u'name': u'travel', u'parent': u'0', u'term_id': u'69', u'term_taxonomy_id': u'71', u'taxonomy': u'post_tag', u'slug': u'travel', u'description': u''}], u'date': u'2012-07-18 03:02:43', u'type': u'post', u'id': u'654', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'cafrins-mask-collaborative', u'parent': u'0', u'title': u'Cafrins Mask Collaborative', u'url': u'http://artcontrol.me/?p=650', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"I sent some of my artworks to Catherine to work on as a\xa0collaborative\xa0project. She recently made the blog post - William Mckee\xa0to show the work.\r\n\r\nHere's the result of", u'modified': u'2012-09-01 23:03:51', u'slug': u'Cafrins Mask Collaborative', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'4', u'name': u'Collaborative', u'parent': u'0', u'term_id': u'67', u'term_taxonomy_id': u'69', u'taxonomy': u'post_tag', u'slug': u'collaborative', u'description': u''}], u'date': u'2012-07-15 12:34:18', u'type': u'post', u'id': u'650', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'82', u'name': u'draw', u'parent': u'0', u'term_id': u'7', u'cat_ID': u'7', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'draw', u'category_count': u'82', u'term_taxonomy_id': u'7', u'taxonomy': u'category', u'category_nicename': u'draw', u'slug': u'draw', u'description': u''}], u'name': u'takaka-drawing-class', u'parent': u'0', u'title': u'Takaka drawing class', u'url': u'http://artcontrol.me/?p=648', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"I'm currently in the South Island. I left my laptop and Wacom tablet behind - I needed a break from them. Too long I spent working on the laptop, not getting much done. When", u'modified': u'2012-09-01 23:03:50', u'slug': u'Takaka drawing class', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'33', u'name': u'portrait', u'parent': u'0', u'term_id': u'20', u'term_taxonomy_id': u'20', u'taxonomy': u'post_tag', u'slug': u'portrait', u'description': u''}, {u'term_group': u'0', u'count': u'5', u'name': u'takaka', u'parent': u'0', u'term_id': u'68', u'term_taxonomy_id': u'70', u'taxonomy': u'post_tag', u'slug': u'takaka', u'description': u''}], u'date': u'2012-07-22 23:17:56', u'type': u'post', u'id': u'648', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'vert-landscape', u'parent': u'0', u'title': u'vert landscape', u'url': u'http://artcontrol.me/?p=645', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"Hello. This week I've felt very lazy in terms of artwork. Still no Blender works, but at least I got into some GIMP work. I want to go back to reference images and develop my", u'modified': u'2012-09-01 23:03:51', u'slug': u'vert landscape', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'85', u'name': u'GIMP', u'parent': u'0', u'term_id': u'59', u'term_taxonomy_id': u'60', u'taxonomy': u'post_tag', u'slug': u'gimp', u'description': u''}, {u'term_group': u'0', u'count': u'14', u'name': u'landscape', u'parent': u'0', u'term_id': u'9', u'term_taxonomy_id': u'9', u'taxonomy': u'post_tag', u'slug': u'landscape', u'description': u''}], u'date': u'2012-07-10 17:43:49', u'type': u'post', u'id': u'645', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'da-draw-plz-june', u'parent': u'0', u'title': u'DA Draw Plz June', u'url': u'http://artcontrol.me/?p=631', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"When I was in Wellington I visited DeviantArt.com and went on the DrawPlz forums. It has been months since I've worked from them... it was fun.. something different and", u'modified': u'2012-09-01 23:03:51', u'slug': u'DA Draw Plz June', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'2', u'name': u'DA', u'parent': u'0', u'term_id': u'66', u'term_taxonomy_id': u'68', u'taxonomy': u'post_tag', u'slug': u'da', u'description': u''}, {u'term_group': u'0', u'count': u'33', u'name': u'portrait', u'parent': u'0', u'term_id': u'20', u'term_taxonomy_id': u'20', u'taxonomy': u'post_tag', u'slug': u'portrait', u'description': u''}], u'date': u'2012-07-08 08:11:06', u'type': u'post', u'id': u'631', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'levin-updates', u'parent': u'0', u'title': u'Levin Updates', u'url': u'http://artcontrol.me/?p=625', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"So back in Levin after the Wellington trip. I havn't gotten alot done since I've gotten back. Mostly rested and cooked a little. I've started getting into a\xa0route\xa0with", u'modified': u'2012-09-01 23:03:51', u'slug': u'Levin Updates', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'1', u'name': u'bridgman', u'parent': u'0', u'term_id': u'65', u'term_taxonomy_id': u'67', u'taxonomy': u'post_tag', u'slug': u'bridgman', u'description': u''}, {u'term_group': u'0', u'count': u'33', u'name': u'portrait', u'parent': u'0', u'term_id': u'20', u'term_taxonomy_id': u'20', u'taxonomy': u'post_tag', u'slug': u'portrait', u'description': u''}], u'date': u'2012-07-07 09:06:18', u'type': u'post', u'id': u'625', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'hutt-envro-paint', u'parent': u'0', u'title': u'Hutt Envro Paint', u'url': u'http://artcontrol.me/?p=608', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'Took a break from Unity today and worked on just digital painting. I also left the house and went for a trip to Upper Hutt. The view overlooking the Hutt was quite stunning.', u'modified': u'2012-09-01 23:03:51', u'slug': u'Hutt Envro Paint', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'85', u'name': u'GIMP', u'parent': u'0', u'term_id': u'59', u'term_taxonomy_id': u'60', u'taxonomy': u'post_tag', u'slug': u'gimp', u'description': u''}, {u'term_group': u'0', u'count': u'16', u'name': u'video', u'parent': u'0', u'term_id': u'37', u'term_taxonomy_id': u'38', u'taxonomy': u'post_tag', u'slug': u'video', u'description': u''}], u'date': u'2012-07-02 14:33:14', u'type': u'post', u'id': u'608', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'2', u'name': u'Game Release', u'parent': u'0', u'term_id': u'154', u'cat_ID': u'154', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'Game Release', u'category_count': u'2', u'term_taxonomy_id': u'162', u'taxonomy': u'category', u'category_nicename': u'game-release', u'slug': u'game-release', u'description': u''}], u'name': u'unity-1st-and-3rd-cam-experiments', u'parent': u'0', u'title': u'Unity - 1st and 3rd cam experiments', u'url': u'http://artcontrol.me/?p=602', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"I'm currently in Wellington for several days but have had time to work on projects. I've decided to give Unity3d a go - and move on from Blender. I still enjoy Blender but", u'modified': u'2013-06-07 01:23:38', u'slug': u'Unity - 1st and 3rd cam experiments', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'1', u'name': u'galf', u'parent': u'0', u'term_id': u'64', u'term_taxonomy_id': u'66', u'taxonomy': u'post_tag', u'slug': u'galf', u'description': u''}, {u'term_group': u'0', u'count': u'2', u'name': u'unity', u'parent': u'0', u'term_id': u'63', u'term_taxonomy_id': u'65', u'taxonomy': u'post_tag', u'slug': u'unity', u'description': u''}], u'date': u'2012-07-01 06:25:41', u'type': u'post', u'id': u'602', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'mia-portrait', u'parent': u'0', u'title': u'MIA Portrait', u'url': u'http://artcontrol.me/?p=595', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'Before I started at TLC I was really into drawing portraits of famous people. Especially music and television.\r\n\r\nIn 2010 I did a drawing of MIA - pencil. I then took it into', u'modified': u'2012-09-01 23:03:51', u'slug': u'MIA Portrait', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'85', u'name': u'GIMP', u'parent': u'0', u'term_id': u'59', u'term_taxonomy_id': u'60', u'taxonomy': u'post_tag', u'slug': u'gimp', u'description': u''}, {u'term_group': u'0', u'count': u'33', u'name': u'portrait', u'parent': u'0', u'term_id': u'20', u'term_taxonomy_id': u'20', u'taxonomy': u'post_tag', u'slug': u'portrait', u'description': u''}], u'date': u'2012-06-26 16:49:10', u'type': u'post', u'id': u'595', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'figure-weekend', u'parent': u'0', u'title': u'Figure Weekend', u'url': u'http://artcontrol.me/?p=584', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"Sunday was spent working from\xa0PixelLovely\xa0and on Joy's Massage\xa0business\xa0cards. Business cards - completely different to what I usually do. I had hoped to bring some of my", u'modified': u'2012-09-01 23:03:51', u'slug': u'Figure Weekend', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'17', u'name': u'figure', u'parent': u'0', u'term_id': u'8', u'term_taxonomy_id': u'8', u'taxonomy': u'post_tag', u'slug': u'figure', u'description': u''}, {u'term_group': u'0', u'count': u'85', u'name': u'GIMP', u'parent': u'0', u'term_id': u'59', u'term_taxonomy_id': u'60', u'taxonomy': u'post_tag', u'slug': u'gimp', u'description': u''}], u'date': u'2012-06-25 00:23:06', u'type': u'post', u'id': u'584', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'19', u'name': u'3d', u'parent': u'0', u'term_id': u'25', u'cat_ID': u'25', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'3d', u'category_count': u'19', u'term_taxonomy_id': u'25', u'taxonomy': u'category', u'category_nicename': u'3d', u'slug': u'3d', u'description': u''}], u'name': u'thursday-blender-renders', u'parent': u'0', u'title': u'Thursday Blender Renders', u'url': u'http://artcontrol.me/?p=576', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"I've been aiming to render off more content with Blender - I have a goal of 2 mins a day when I use Blender. These last two days I've taken a break but on Wednesday and", u'modified': u'2012-09-01 23:03:51', u'slug': u'Thursday Blender Renders', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'17', u'name': u'blender', u'parent': u'0', u'term_id': u'27', u'term_taxonomy_id': u'28', u'taxonomy': u'post_tag', u'slug': u'blender', u'description': u''}, {u'term_group': u'0', u'count': u'3', u'name': u'walk cycle', u'parent': u'0', u'term_id': u'60', u'term_taxonomy_id': u'62', u'taxonomy': u'post_tag', u'slug': u'walk-cycle', u'description': u''}], u'date': u'2012-06-23 13:02:13', u'type': u'post', u'id': u'576', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}, {u'term_group': u'0', u'count': u'19', u'name': u'model', u'parent': u'0', u'term_id': u'18', u'cat_ID': u'18', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'model', u'category_count': u'19', u'term_taxonomy_id': u'18', u'taxonomy': u'category', u'category_nicename': u'model', u'slug': u'model', u'description': u''}], u'name': u'new-tablet-dynamic-setup', u'parent': u'0', u'title': u'New tablet dynamic setup', u'url': u'http://artcontrol.me/?p=566', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'Today my new tablet arrived. I had given my old one to my sister last weekend so had taken a break from digital painting for a few days (though I filled in time with Blender', u'modified': u'2012-09-01 23:03:51', u'slug': u'New tablet dynamic setup', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'85', u'name': u'GIMP', u'parent': u'0', u'term_id': u'59', u'term_taxonomy_id': u'60', u'taxonomy': u'post_tag', u'slug': u'gimp', u'description': u''}, {u'term_group': u'0', u'count': u'1', u'name': u'greyscale', u'parent': u'0', u'term_id': u'62', u'term_taxonomy_id': u'64', u'taxonomy': u'post_tag', u'slug': u'greyscale', u'description': u''}, {u'term_group': u'0', u'count': u'2', u'name': u'pixellovely', u'parent': u'0', u'term_id': u'57', u'term_taxonomy_id': u'58', u'taxonomy': u'post_tag', u'slug': u'pixellovely', u'description': u''}], u'date': u'2012-06-22 12:35:02', u'type': u'post', u'id': u'566', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'13', u'name': u'paint', u'parent': u'0', u'term_id': u'15', u'cat_ID': u'15', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'paint', u'category_count': u'13', u'term_taxonomy_id': u'15', u'taxonomy': u'category', u'category_nicename': u'paint', u'slug': u'paint', u'description': u''}], u'name': u'basement-landscape', u'parent': u'0', u'title': u'Basement Landscape', u'url': u'http://artcontrol.me/?p=555', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"Since my move I've had room to paint. I never painted in my last flat, except for a little in my\xa0journal. I don't really consider this painting though - painting is working", u'modified': u'2012-09-01 23:03:51', u'slug': u'Basement Landscape', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'4', u'name': u'acrylic', u'parent': u'0', u'term_id': u'61', u'term_taxonomy_id': u'63', u'taxonomy': u'post_tag', u'slug': u'acrylic', u'description': u''}, {u'term_group': u'0', u'count': u'3', u'name': u'gouache', u'parent': u'0', u'term_id': u'53', u'term_taxonomy_id': u'54', u'taxonomy': u'post_tag', u'slug': u'gouache', u'description': u''}, {u'term_group': u'0', u'count': u'16', u'name': u'video', u'parent': u'0', u'term_id': u'37', u'term_taxonomy_id': u'38', u'taxonomy': u'post_tag', u'slug': u'video', u'description': u''}], u'date': u'2012-06-20 14:03:24', u'type': u'post', u'id': u'555', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'19', u'name': u'3d', u'parent': u'0', u'term_id': u'25', u'cat_ID': u'25', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'3d', u'category_count': u'19', u'term_taxonomy_id': u'25', u'taxonomy': u'category', u'category_nicename': u'3d', u'slug': u'3d', u'description': u''}], u'name': u'dark-places', u'parent': u'0', u'title': u'Dark Places', u'url': u'http://artcontrol.me/?p=544', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"I'm getting a new drawing tablet soon, I thought I would get it this week but when Mightyape tried to charge my credit card it declined as I realised they had an outdated", u'modified': u'2012-09-01 23:03:51', u'slug': u'Dark Places', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'17', u'name': u'blender', u'parent': u'0', u'term_id': u'27', u'term_taxonomy_id': u'28', u'taxonomy': u'post_tag', u'slug': u'blender', u'description': u''}, {u'term_group': u'0', u'count': u'3', u'name': u'walk cycle', u'parent': u'0', u'term_id': u'60', u'term_taxonomy_id': u'62', u'taxonomy': u'post_tag', u'slug': u'walk-cycle', u'description': u''}], u'date': u'2012-06-18 16:54:51', u'type': u'post', u'id': u'544', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'landscape-of-the-day', u'parent': u'0', u'title': u'Landscape of the day', u'url': u'http://artcontrol.me/?p=535', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"Yesterday I spend the day looking for my wallet that I've lost, working in Blender (video and screenshots coming soon), and digital painting.\r\n\r\nHeres the digital", u'modified': u'2012-09-01 23:03:51', u'slug': u'Landscape of the day', u'comment_count': u'0', u'tag': [], u'date': u'2012-06-16 00:50:07', u'type': u'post', u'id': u'535', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'landscape-binge-braid', u'parent': u'0', u'title': u'Landscape Binge Braid', u'url': u'http://artcontrol.me/?p=523', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"Spent the day working with on more landscape paintings... all from imagination but trying to extend and develop them each time. These are turning into a series. I've been", u'modified': u'2012-09-01 23:04:06', u'slug': u'Landscape Binge Braid', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'21', u'name': u'color', u'parent': u'0', u'term_id': u'30', u'term_taxonomy_id': u'31', u'taxonomy': u'post_tag', u'slug': u'color', u'description': u''}, {u'term_group': u'0', u'count': u'85', u'name': u'GIMP', u'parent': u'0', u'term_id': u'59', u'term_taxonomy_id': u'60', u'taxonomy': u'post_tag', u'slug': u'gimp', u'description': u''}, {u'term_group': u'0', u'count': u'14', u'name': u'landscape', u'parent': u'0', u'term_id': u'9', u'term_taxonomy_id': u'9', u'taxonomy': u'post_tag', u'slug': u'landscape', u'description': u''}], u'date': u'2012-06-13 14:54:11', u'type': u'post', u'id': u'523', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'immigration-landscape', u'parent': u'0', u'title': u'Immigration Landscape', u'url': u'http://artcontrol.me/?p=514', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'No digital painting today but yesterday I worked on two landscapes. I really enjoy doing these landscape works in GIMP, something different to the figure works.\r\n\r\n\r\n\r\nI', u'modified': u'2012-09-01 23:04:06', u'slug': u'Immigration Landscape', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'85', u'name': u'GIMP', u'parent': u'0', u'term_id': u'59', u'term_taxonomy_id': u'60', u'taxonomy': u'post_tag', u'slug': u'gimp', u'description': u''}, {u'term_group': u'0', u'count': u'14', u'name': u'landscape', u'parent': u'0', u'term_id': u'9', u'term_taxonomy_id': u'9', u'taxonomy': u'post_tag', u'slug': u'landscape', u'description': u''}], u'date': u'2012-06-12 10:08:06', u'type': u'post', u'id': u'514', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'digital-portraits-4chan', u'parent': u'0', u'title': u'Digital Portraits 4chan', u'url': u'http://artcontrol.me/?p=502', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"Plenty of digital painting lately. I'm happy with my progress. The break I had was helpful, I feel very fresh and loose going back to it now. On 4chan\xa0the other day I", u'modified': u'2012-09-01 23:04:06', u'slug': u'Digital Portraits 4chan', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'85', u'name': u'GIMP', u'parent': u'0', u'term_id': u'59', u'term_taxonomy_id': u'60', u'taxonomy': u'post_tag', u'slug': u'gimp', u'description': u''}, {u'term_group': u'0', u'count': u'33', u'name': u'portrait', u'parent': u'0', u'term_id': u'20', u'term_taxonomy_id': u'20', u'taxonomy': u'post_tag', u'slug': u'portrait', u'description': u''}], u'date': u'2012-06-10 23:15:58', u'type': u'post', u'id': u'502', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'19', u'name': u'3d', u'parent': u'0', u'term_id': u'25', u'cat_ID': u'25', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'3d', u'category_count': u'19', u'term_taxonomy_id': u'25', u'taxonomy': u'category', u'category_nicename': u'3d', u'slug': u'3d', u'description': u''}], u'name': u'ra1n-particle', u'parent': u'0', u'title': u'Ra1n Particle', u'url': u'http://artcontrol.me/?p=495', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u" \r\n\r\n\r\n\r\nIt's been\xa0awhile\xa0since I've uploaded any Blender work. Last night and this morning I worked on a new scene with new models and textures. The ideas are much of", u'modified': u'2012-09-01 23:04:06', u'slug': u'Ra1n Particle', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'17', u'name': u'blender', u'parent': u'0', u'term_id': u'27', u'term_taxonomy_id': u'28', u'taxonomy': u'post_tag', u'slug': u'blender', u'description': u''}, {u'term_group': u'0', u'count': u'1', u'name': u'lights', u'parent': u'0', u'term_id': u'58', u'term_taxonomy_id': u'59', u'taxonomy': u'post_tag', u'slug': u'lights', u'description': u''}, {u'term_group': u'0', u'count': u'2', u'name': u'particle', u'parent': u'0', u'term_id': u'48', u'term_taxonomy_id': u'49', u'taxonomy': u'post_tag', u'slug': u'particle', u'description': u''}], u'date': u'2012-06-08 23:36:05', u'type': u'post', u'id': u'495', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'doodle-pixellovely-perspective', u'parent': u'0', u'title': u'Doodle Pixellovely Perspective', u'url': u'http://artcontrol.me/?p=490', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"I've spent the majority of my time working on GIMP - digital painting. Mostly just doodles but \xa0last night I did work from pixellovely. I've decided I like GIMP much more", u'modified': u'2012-09-01 23:04:06', u'slug': u'Doodle Pixellovely Perspective', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'1', u'name': u'perspective', u'parent': u'0', u'term_id': u'56', u'term_taxonomy_id': u'57', u'taxonomy': u'post_tag', u'slug': u'perspective', u'description': u''}, {u'term_group': u'0', u'count': u'2', u'name': u'pixellovely', u'parent': u'0', u'term_id': u'57', u'term_taxonomy_id': u'58', u'taxonomy': u'post_tag', u'slug': u'pixellovely', u'description': u''}], u'date': u'2012-06-05 09:19:07', u'type': u'post', u'id': u'490', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'digital-levin-start-eow-doodle', u'parent': u'0', u'title': u'Digital Levin Start EOW Doodle', u'url': u'http://artcontrol.me/?p=478', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"So no updates for over a week. I've been playing Diablo 3 during the the week. I finished it on normal as a Wizard and partway though Nightmare. I'm not hugely motivated to", u'modified': u'2012-09-01 23:04:06', u'slug': u'Digital Levin Start EOW Doodle', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'3', u'name': u'doodle', u'parent': u'0', u'term_id': u'55', u'term_taxonomy_id': u'56', u'taxonomy': u'post_tag', u'slug': u'doodle', u'description': u''}, {u'term_group': u'0', u'count': u'3', u'name': u'eow', u'parent': u'0', u'term_id': u'54', u'term_taxonomy_id': u'55', u'taxonomy': u'post_tag', u'slug': u'eow', u'description': u''}, {u'term_group': u'0', u'count': u'4', u'name': u'photoshop', u'parent': u'0', u'term_id': u'23', u'term_taxonomy_id': u'23', u'taxonomy': u'post_tag', u'slug': u'photoshop', u'description': u''}], u'date': u'2012-06-03 20:40:23', u'type': u'post', u'id': u'478', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'82', u'name': u'draw', u'parent': u'0', u'term_id': u'7', u'cat_ID': u'7', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'draw', u'category_count': u'82', u'term_taxonomy_id': u'7', u'taxonomy': u'category', u'category_nicename': u'draw', u'slug': u'draw', u'description': u''}], u'name': u'art-journal-flip-may-2012', u'parent': u'0', u'title': u'Art Journal Flip May 2012', u'url': u'http://artcontrol.me/?p=476', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"Last weekend at Matchbox Studios I caught up with\xa0Catherine. I hadn't seen Catherine since early 2011 so it was great to see her. She mentioned it would be good to", u'modified': u'2012-09-01 23:04:06', u'slug': u'Art Journal Flip May 2012', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'5', u'name': u'colored pencil', u'parent': u'0', u'term_id': u'40', u'term_taxonomy_id': u'41', u'taxonomy': u'post_tag', u'slug': u'colored-pencil', u'description': u''}, {u'term_group': u'0', u'count': u'3', u'name': u'gouache', u'parent': u'0', u'term_id': u'53', u'term_taxonomy_id': u'54', u'taxonomy': u'post_tag', u'slug': u'gouache', u'description': u''}, {u'term_group': u'0', u'count': u'1', u'name': u'journal flip', u'parent': u'0', u'term_id': u'52', u'term_taxonomy_id': u'53', u'taxonomy': u'post_tag', u'slug': u'journal-flip', u'description': u''}, {u'term_group': u'0', u'count': u'16', u'name': u'video', u'parent': u'0', u'term_id': u'37', u'term_taxonomy_id': u'38', u'taxonomy': u'post_tag', u'slug': u'video', u'description': u''}], u'date': u'2012-05-27 12:21:13', u'type': u'post', u'id': u'476', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'update-iograph', u'parent': u'0', u'title': u'Update IOGraph', u'url': u'http://artcontrol.me/?p=465', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"So. I just remembered, It's been a long time since I've updated the blog with some IOGraph works. Recently I havn't been running the program (forget it open it). But I've got", u'modified': u'2012-09-01 23:04:06', u'slug': u'Update IOGraph', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'3', u'name': u'iograph', u'parent': u'0', u'term_id': u'43', u'term_taxonomy_id': u'44', u'taxonomy': u'post_tag', u'slug': u'iograph', u'description': u''}], u'date': u'2012-05-26 13:38:53', u'type': u'post', u'id': u'465', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'82', u'name': u'draw', u'parent': u'0', u'term_id': u'7', u'cat_ID': u'7', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'draw', u'category_count': u'82', u'term_taxonomy_id': u'7', u'taxonomy': u'category', u'category_nicename': u'draw', u'slug': u'draw', u'description': u''}], u'name': u'path-of-exile', u'parent': u'0', u'title': u'Path of Exile', u'url': u'http://artcontrol.me/?p=459', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"So Diablo 3 came out the other week. In the past I've rushed to buy Blizzard games. Except for Starcraft 2 I've basically got them on release date. Blizzard use to be my", u'modified': u'2012-09-01 23:04:06', u'slug': u'Path of Exile', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'1', u'name': u'path of exile', u'parent': u'0', u'term_id': u'51', u'term_taxonomy_id': u'52', u'taxonomy': u'post_tag', u'slug': u'path-of-exile', u'description': u''}, {u'term_group': u'0', u'count': u'1', u'name': u'review', u'parent': u'0', u'term_id': u'50', u'term_taxonomy_id': u'51', u'taxonomy': u'post_tag', u'slug': u'review', u'description': u''}], u'date': u'2012-05-25 03:35:59', u'type': u'post', u'id': u'459', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'82', u'name': u'draw', u'parent': u'0', u'term_id': u'7', u'cat_ID': u'7', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'draw', u'category_count': u'82', u'term_taxonomy_id': u'7', u'taxonomy': u'category', u'category_nicename': u'draw', u'slug': u'draw', u'description': u''}, {u'term_group': u'0', u'count': u'19', u'name': u'model', u'parent': u'0', u'term_id': u'18', u'cat_ID': u'18', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'model', u'category_count': u'19', u'term_taxonomy_id': u'18', u'taxonomy': u'category', u'category_nicename': u'model', u'slug': u'model', u'description': u''}], u'name': u'georgette-monday-cloth', u'parent': u'0', u'title': u'Georgette Monday Cloth ', u'url': u'http://artcontrol.me/?p=450', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'Georgette was the model on Monday. I found my 8b chunk of graphite so used that - especially helpful for warming up. Oil pastel was also used throughout the day,', u'modified': u'2012-09-01 23:04:06', u'slug': u'Georgette Monday Cloth ', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'22', u'name': u'female', u'parent': u'0', u'term_id': u'19', u'term_taxonomy_id': u'19', u'taxonomy': u'post_tag', u'slug': u'female', u'description': u''}, {u'term_group': u'0', u'count': u'5', u'name': u'oil pastel', u'parent': u'0', u'term_id': u'24', u'term_taxonomy_id': u'24', u'taxonomy': u'post_tag', u'slug': u'oil-pastel', u'description': u''}, {u'term_group': u'0', u'count': u'19', u'name': u'tlc', u'parent': u'0', u'term_id': u'11', u'term_taxonomy_id': u'11', u'taxonomy': u'post_tag', u'slug': u'tlc', u'description': u''}], u'date': u'2012-05-22 02:30:22', u'type': u'post', u'id': u'450', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}, {u'term_group': u'0', u'count': u'19', u'name': u'model', u'parent': u'0', u'term_id': u'18', u'cat_ID': u'18', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'model', u'category_count': u'19', u'term_taxonomy_id': u'18', u'taxonomy': u'category', u'category_nicename': u'model', u'slug': u'model', u'description': u''}], u'name': u'charcoal-colorzz-friday-model', u'parent': u'0', u'title': u'Charcoal Colorzz - Friday model', u'url': u'http://artcontrol.me/?p=436', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u" \r\n\r\nLife drawing.\xa0Lorraine was the model. I had her for a model last weekend so it was great to have her again on Friday.\r\n\r\nI didn't use any graphite today, instead a", u'modified': u'2012-09-01 23:04:06', u'slug': u'Charcoal Colorzz - Friday model', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'1', u'name': u'charcoal', u'parent': u'0', u'term_id': u'49', u'term_taxonomy_id': u'50', u'taxonomy': u'post_tag', u'slug': u'charcoal', u'description': u''}, {u'term_group': u'0', u'count': u'22', u'name': u'female', u'parent': u'0', u'term_id': u'19', u'term_taxonomy_id': u'19', u'taxonomy': u'post_tag', u'slug': u'female', u'description': u''}, {u'term_group': u'0', u'count': u'5', u'name': u'oil pastel', u'parent': u'0', u'term_id': u'24', u'term_taxonomy_id': u'24', u'taxonomy': u'post_tag', u'slug': u'oil-pastel', u'description': u''}, {u'term_group': u'0', u'count': u'19', u'name': u'tlc', u'parent': u'0', u'term_id': u'11', u'term_taxonomy_id': u'11', u'taxonomy': u'post_tag', u'slug': u'tlc', u'description': u''}], u'date': u'2012-05-20 05:55:28', u'type': u'post', u'id': u'436', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'19', u'name': u'3d', u'parent': u'0', u'term_id': u'25', u'cat_ID': u'25', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'3d', u'category_count': u'19', u'term_taxonomy_id': u'25', u'taxonomy': u'category', u'category_nicename': u'3d', u'slug': u'3d', u'description': u''}], u'name': u'lighting-particle-testz', u'parent': u'0', u'title': u'Lighting Particle Testz', u'url': u'http://artcontrol.me/?p=433', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"I think I better make am update on how my Blender work is going, I\xa0haven't\xa0done much\xa0recently\xa0so hope this serves as an wakeup call to work on Blender more. Need that", u'modified': u'2012-09-01 23:04:06', u'slug': u'Lighting Particle Testz', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'17', u'name': u'blender', u'parent': u'0', u'term_id': u'27', u'term_taxonomy_id': u'28', u'taxonomy': u'post_tag', u'slug': u'blender', u'description': u''}, {u'term_group': u'0', u'count': u'2', u'name': u'light', u'parent': u'0', u'term_id': u'44', u'term_taxonomy_id': u'45', u'taxonomy': u'post_tag', u'slug': u'light', u'description': u''}, {u'term_group': u'0', u'count': u'2', u'name': u'particle', u'parent': u'0', u'term_id': u'48', u'term_taxonomy_id': u'49', u'taxonomy': u'post_tag', u'slug': u'particle', u'description': u''}], u'date': u'2012-05-16 09:39:07', u'type': u'post', u'id': u'433', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'82', u'name': u'draw', u'parent': u'0', u'term_id': u'7', u'cat_ID': u'7', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'draw', u'category_count': u'82', u'term_taxonomy_id': u'7', u'taxonomy': u'category', u'category_nicename': u'draw', u'slug': u'draw', u'description': u''}, {u'term_group': u'0', u'count': u'19', u'name': u'model', u'parent': u'0', u'term_id': u'18', u'cat_ID': u'18', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'model', u'category_count': u'19', u'term_taxonomy_id': u'18', u'taxonomy': u'category', u'category_nicename': u'model', u'slug': u'model', u'description': u''}], u'name': u'ra1nz-weekend-life-drawinz', u'parent': u'0', u'title': u'ra1nz weekend life drawinz', u'url': u'http://artcontrol.me/?p=421', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'Dan had a weekend class - Figurative Expressions. He mentioned he liked it call it this rather then drawing as people are free to explore other medians - like paint and', u'modified': u'2012-09-01 23:04:07', u'slug': u'ra1nz weekend life drawinz', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'5', u'name': u'color pencil', u'parent': u'0', u'term_id': u'36', u'term_taxonomy_id': u'37', u'taxonomy': u'post_tag', u'slug': u'color-pencil', u'description': u''}, {u'term_group': u'0', u'count': u'22', u'name': u'female', u'parent': u'0', u'term_id': u'19', u'term_taxonomy_id': u'19', u'taxonomy': u'post_tag', u'slug': u'female', u'description': u''}, {u'term_group': u'0', u'count': u'11', u'name': u'male', u'parent': u'0', u'term_id': u'22', u'term_taxonomy_id': u'22', u'taxonomy': u'post_tag', u'slug': u'male', u'description': u''}, {u'term_group': u'0', u'count': u'34', u'name': u'pencil', u'parent': u'0', u'term_id': u'10', u'term_taxonomy_id': u'10', u'taxonomy': u'post_tag', u'slug': u'pencil', u'description': u''}, {u'term_group': u'0', u'count': u'19', u'name': u'tlc', u'parent': u'0', u'term_id': u'11', u'term_taxonomy_id': u'11', u'taxonomy': u'post_tag', u'slug': u'tlc', u'description': u''}], u'date': u'2012-05-14 11:05:25', u'type': u'post', u'id': u'421', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'82', u'name': u'draw', u'parent': u'0', u'term_id': u'7', u'cat_ID': u'7', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'draw', u'category_count': u'82', u'term_taxonomy_id': u'7', u'taxonomy': u'category', u'category_nicename': u'draw', u'slug': u'draw', u'description': u''}], u'name': u'roguelike-python', u'parent': u'0', u'title': u'Roguelike Python ', u'url': u'http://artcontrol.me/?p=418', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"So this week has flown by. I didn't get half the stuff I wanted to get done. I'm happy with my blender work. and the small level I made in the Hammer editor - lighting has", u'modified': u'2012-09-01 23:04:07', u'slug': u'Roguelike Python ', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'21', u'name': u'color', u'parent': u'0', u'term_id': u'30', u'term_taxonomy_id': u'31', u'taxonomy': u'post_tag', u'slug': u'color', u'description': u''}, {u'term_group': u'0', u'count': u'1', u'name': u'python', u'parent': u'0', u'term_id': u'47', u'term_taxonomy_id': u'48', u'taxonomy': u'post_tag', u'slug': u'python', u'description': u''}], u'date': u'2012-05-11 01:12:10', u'type': u'post', u'id': u'418', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'82', u'name': u'draw', u'parent': u'0', u'term_id': u'7', u'cat_ID': u'7', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'draw', u'category_count': u'82', u'term_taxonomy_id': u'7', u'taxonomy': u'category', u'category_nicename': u'draw', u'slug': u'draw', u'description': u''}], u'name': u'may-monday-life-drawing', u'parent': u'0', u'title': u'May Monday Life Drawing', u'url': u'http://artcontrol.me/?p=411', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"Life drawing from earlier this week - Monday. Since then I have spent most of my time working in Blender and Hammer. I've been experimenting with lighting - using blue to", u'modified': u'2012-09-01 23:04:07', u'slug': u'May Monday Life Drawing', u'comment_count': u'0', u'tag': [], u'date': u'2012-05-10 02:17:51', u'type': u'post', u'id': u'411', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'19', u'name': u'3d', u'parent': u'0', u'term_id': u'25', u'cat_ID': u'25', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'3d', u'category_count': u'19', u'term_taxonomy_id': u'25', u'taxonomy': u'category', u'category_nicename': u'3d', u'slug': u'3d', u'description': u''}], u'name': u'whatcha', u'parent': u'0', u'title': u"What'cha", u'url': u'http://artcontrol.me/?p=402', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"\r\n\r\nTribute. Planning to model this suit in blender. It seems easy enough and can use it as a costume for a character. I have a basic few characters that I'm happy with", u'modified': u'2012-09-01 23:04:07', u'slug': u"What'cha", u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'17', u'name': u'blender', u'parent': u'0', u'term_id': u'27', u'term_taxonomy_id': u'28', u'taxonomy': u'post_tag', u'slug': u'blender', u'description': u''}, {u'term_group': u'0', u'count': u'2', u'name': u'gamedev', u'parent': u'0', u'term_id': u'45', u'term_taxonomy_id': u'46', u'taxonomy': u'post_tag', u'slug': u'gamedev', u'description': u''}, {u'term_group': u'0', u'count': u'16', u'name': u'video', u'parent': u'0', u'term_id': u'37', u'term_taxonomy_id': u'38', u'taxonomy': u'post_tag', u'slug': u'video', u'description': u''}], u'date': u'2012-05-07 22:38:13', u'type': u'post', u'id': u'402', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'82', u'name': u'draw', u'parent': u'0', u'term_id': u'7', u'cat_ID': u'7', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'draw', u'category_count': u'82', u'term_taxonomy_id': u'7', u'taxonomy': u'category', u'category_nicename': u'draw', u'slug': u'draw', u'description': u''}, {u'term_group': u'0', u'count': u'19', u'name': u'model', u'parent': u'0', u'term_id': u'18', u'cat_ID': u'18', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'model', u'category_count': u'19', u'term_taxonomy_id': u'18', u'taxonomy': u'category', u'category_nicename': u'model', u'slug': u'model', u'description': u''}], u'name': u'russel-friday-life-drawings', u'parent': u'0', u'title': u'Russel Friday Life Drawings', u'url': u'http://artcontrol.me/?p=370', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"Friday went well. Russel was the model again. I wasn't happy with the works I drew on Monday - just wasn't in a good space. Friday was much better!\r\n\r\nMy surface to work on", u'modified': u'2012-09-01 23:04:07', u'slug': u'Russel Friday Life Drawings', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'11', u'name': u'male', u'parent': u'0', u'term_id': u'22', u'term_taxonomy_id': u'22', u'taxonomy': u'post_tag', u'slug': u'male', u'description': u''}, {u'term_group': u'0', u'count': u'4', u'name': u'model', u'parent': u'0', u'term_id': u'18', u'term_taxonomy_id': u'27', u'taxonomy': u'post_tag', u'slug': u'model', u'description': u''}, {u'term_group': u'0', u'count': u'19', u'name': u'tlc', u'parent': u'0', u'term_id': u'11', u'term_taxonomy_id': u'11', u'taxonomy': u'post_tag', u'slug': u'tlc', u'description': u''}], u'date': u'2012-05-06 06:10:51', u'type': u'post', u'id': u'370', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'iograph-days-of-dots', u'parent': u'0', u'title': u'IOGraph - Days of Dots', u'url': u'http://artcontrol.me/?p=360', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'Just\xa0leaving\xa0IOGraph to do its thing. Some impressive and interesting works. Need to experiment with it in GIMP - colors... layers... would like to take these further into', u'modified': u'2012-09-01 23:04:07', u'slug': u'IOGraph - Days of Dots', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'3', u'name': u'iograph', u'parent': u'0', u'term_id': u'43', u'term_taxonomy_id': u'44', u'taxonomy': u'post_tag', u'slug': u'iograph', u'description': u''}], u'date': u'2012-05-05 18:02:01', u'type': u'post', u'id': u'360', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'19', u'name': u'3d', u'parent': u'0', u'term_id': u'25', u'cat_ID': u'25', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'3d', u'category_count': u'19', u'term_taxonomy_id': u'25', u'taxonomy': u'category', u'category_nicename': u'3d', u'slug': u'3d', u'description': u''}], u'name': u'light-throw-tests', u'parent': u'0', u'title': u'Light Throw Tests', u'url': u'http://artcontrol.me/?p=355', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"This week I've spent learning Java. It's been fun and I feel I've made real progress with it. Aimed for at least 6 hours of it every day. I got to a point where I needed a", u'modified': u'2012-09-01 23:04:07', u'slug': u'Light Throw Tests', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'17', u'name': u'blender', u'parent': u'0', u'term_id': u'27', u'term_taxonomy_id': u'28', u'taxonomy': u'post_tag', u'slug': u'blender', u'description': u''}, {u'term_group': u'0', u'count': u'2', u'name': u'light', u'parent': u'0', u'term_id': u'44', u'term_taxonomy_id': u'45', u'taxonomy': u'post_tag', u'slug': u'light', u'description': u''}], u'date': u'2012-05-03 01:43:58', u'type': u'post', u'id': u'355', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'82', u'name': u'draw', u'parent': u'0', u'term_id': u'7', u'cat_ID': u'7', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'draw', u'category_count': u'82', u'term_taxonomy_id': u'7', u'taxonomy': u'category', u'category_nicename': u'draw', u'slug': u'draw', u'description': u''}, {u'term_group': u'0', u'count': u'19', u'name': u'model', u'parent': u'0', u'term_id': u'18', u'cat_ID': u'18', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'model', u'category_count': u'19', u'term_taxonomy_id': u'18', u'taxonomy': u'category', u'category_nicename': u'model', u'slug': u'model', u'description': u''}], u'name': u'figurative-expressions-russel', u'parent': u'0', u'title': u'Figurative Expressions Russel', u'url': u'http://artcontrol.me/?p=342', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"It had been a week since I'd been into TLC. Today was Dans life drawing class. The model was Russel. The class wasn't partially full, a decent amount of people but still", u'modified': u'2012-09-01 23:04:07', u'slug': u'Figurative Expressions Russel', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'5', u'name': u'color pencil', u'parent': u'0', u'term_id': u'36', u'term_taxonomy_id': u'37', u'taxonomy': u'post_tag', u'slug': u'color-pencil', u'description': u''}, {u'term_group': u'0', u'count': u'11', u'name': u'male', u'parent': u'0', u'term_id': u'22', u'term_taxonomy_id': u'22', u'taxonomy': u'post_tag', u'slug': u'male', u'description': u''}, {u'term_group': u'0', u'count': u'19', u'name': u'tlc', u'parent': u'0', u'term_id': u'11', u'term_taxonomy_id': u'11', u'taxonomy': u'post_tag', u'slug': u'tlc', u'description': u''}], u'date': u'2012-04-30 07:03:53', u'type': u'post', u'id': u'342', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'iograph-artworks', u'parent': u'0', u'title': u'IOGraph Artworks', u'url': u'http://artcontrol.me/?p=337', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"I've been using a program called\xa0IOGraph. It runs in the background of the computer and records mouse movements - to create abstract artwork. I'm very interesting in this", u'modified': u'2012-09-01 23:04:19', u'slug': u'IOGraph Artworks', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'1', u'name': u'abstract', u'parent': u'0', u'term_id': u'42', u'term_taxonomy_id': u'43', u'taxonomy': u'post_tag', u'slug': u'abstract', u'description': u''}, {u'term_group': u'0', u'count': u'3', u'name': u'iograph', u'parent': u'0', u'term_id': u'43', u'term_taxonomy_id': u'44', u'taxonomy': u'post_tag', u'slug': u'iograph', u'description': u''}], u'date': u'2012-04-27 04:52:18', u'type': u'post', u'id': u'337', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'82', u'name': u'draw', u'parent': u'0', u'term_id': u'7', u'cat_ID': u'7', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'draw', u'category_count': u'82', u'term_taxonomy_id': u'7', u'taxonomy': u'category', u'category_nicename': u'draw', u'slug': u'draw', u'description': u''}, {u'term_group': u'0', u'count': u'19', u'name': u'model', u'parent': u'0', u'term_id': u'18', u'cat_ID': u'18', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'model', u'category_count': u'19', u'term_taxonomy_id': u'18', u'taxonomy': u'category', u'category_nicename': u'model', u'slug': u'model', u'description': u''}], u'name': u'vincents-life-drawing-lee-thursday', u'parent': u'0', u'title': u'Vincents Life Drawing - Lee Thursday', u'url': u'http://artcontrol.me/?p=329', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"The week of Vincents of life drawing is over. I won't make it next week due to having plently of \xa0life drawing classes at TLC to attend.\xa0My flatmate Kunal attended Vincents", u'modified': u'2012-09-01 23:04:19', u'slug': u'Vincents Life Drawing - Lee Thursday', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'21', u'name': u'color', u'parent': u'0', u'term_id': u'30', u'term_taxonomy_id': u'31', u'taxonomy': u'post_tag', u'slug': u'color', u'description': u''}, {u'term_group': u'0', u'count': u'22', u'name': u'female', u'parent': u'0', u'term_id': u'19', u'term_taxonomy_id': u'19', u'taxonomy': u'post_tag', u'slug': u'female', u'description': u''}, {u'term_group': u'0', u'count': u'34', u'name': u'pencil', u'parent': u'0', u'term_id': u'10', u'term_taxonomy_id': u'10', u'taxonomy': u'post_tag', u'slug': u'pencil', u'description': u''}, {u'term_group': u'0', u'count': u'1', u'name': u'square', u'parent': u'0', u'term_id': u'41', u'term_taxonomy_id': u'42', u'taxonomy': u'post_tag', u'slug': u'square', u'description': u''}, {u'term_group': u'0', u'count': u'6', u'name': u'vincents', u'parent': u'0', u'term_id': u'16', u'term_taxonomy_id': u'16', u'taxonomy': u'post_tag', u'slug': u'vincents', u'description': u''}], u'date': u'2012-04-26 12:16:53', u'type': u'post', u'id': u'329', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'82', u'name': u'draw', u'parent': u'0', u'term_id': u'7', u'cat_ID': u'7', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'draw', u'category_count': u'82', u'term_taxonomy_id': u'7', u'taxonomy': u'category', u'category_nicename': u'draw', u'slug': u'draw', u'description': u''}, {u'term_group': u'0', u'count': u'19', u'name': u'model', u'parent': u'0', u'term_id': u'18', u'cat_ID': u'18', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'model', u'category_count': u'19', u'term_taxonomy_id': u'18', u'taxonomy': u'category', u'category_nicename': u'model', u'slug': u'model', u'description': u''}], u'name': u'vincents-tuesday-april', u'parent': u'0', u'title': u'Vincents Tuesday April', u'url': u'http://artcontrol.me/?p=309', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'Drawings from Vincents. I went in with a a3 visual diary and pencil. And, colored pencils. Stuck with\xa0primary\xa0- yellow, red, and two blues. The yellow and red was used', u'modified': u'2012-09-01 23:04:19', u'slug': u'Vincents Tuesday April', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'5', u'name': u'color pencil', u'parent': u'0', u'term_id': u'36', u'term_taxonomy_id': u'37', u'taxonomy': u'post_tag', u'slug': u'color-pencil', u'description': u''}, {u'term_group': u'0', u'count': u'22', u'name': u'female', u'parent': u'0', u'term_id': u'19', u'term_taxonomy_id': u'19', u'taxonomy': u'post_tag', u'slug': u'female', u'description': u''}, {u'term_group': u'0', u'count': u'34', u'name': u'pencil', u'parent': u'0', u'term_id': u'10', u'term_taxonomy_id': u'10', u'taxonomy': u'post_tag', u'slug': u'pencil', u'description': u''}, {u'term_group': u'0', u'count': u'6', u'name': u'vincents', u'parent': u'0', u'term_id': u'16', u'term_taxonomy_id': u'16', u'taxonomy': u'post_tag', u'slug': u'vincents', u'description': u''}], u'date': u'2012-04-25 02:37:45', u'type': u'post', u'id': u'309', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'19', u'name': u'3d', u'parent': u'0', u'term_id': u'25', u'cat_ID': u'25', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'3d', u'category_count': u'19', u'term_taxonomy_id': u'25', u'taxonomy': u'category', u'category_nicename': u'3d', u'slug': u'3d', u'description': u''}], u'name': u'robot-animation-tests', u'parent': u'0', u'title': u'Robot Animation Tests', u'url': u'http://artcontrol.me/?p=306', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"Ok. So I went Vincents life drawing. It had been\xa0awhile. Successful night, This post isn't about life drawing though, blender update.\r\n\r\nI've been a bit less motivated these", u'modified': u'2012-09-01 23:04:19', u'slug': u'Robot Animation Tests', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'13', u'name': u'animation', u'parent': u'0', u'term_id': u'28', u'term_taxonomy_id': u'29', u'taxonomy': u'post_tag', u'slug': u'animation', u'description': u''}, {u'term_group': u'0', u'count': u'17', u'name': u'blender', u'parent': u'0', u'term_id': u'27', u'term_taxonomy_id': u'28', u'taxonomy': u'post_tag', u'slug': u'blender', u'description': u''}], u'date': u'2012-04-24 16:43:44', u'type': u'post', u'id': u'306', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'13', u'name': u'paint', u'parent': u'0', u'term_id': u'15', u'cat_ID': u'15', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'paint', u'category_count': u'13', u'term_taxonomy_id': u'15', u'taxonomy': u'category', u'category_nicename': u'paint', u'slug': u'paint', u'description': u''}], u'name': u'fail-first', u'parent': u'0', u'title': u'Fail First', u'url': u'http://artcontrol.me/?p=297', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'Still no drawing or painting to upload despite making a return today to TLC. In the morning we watched slideshows and talked about life drawing. It was much the same as', u'modified': u'2012-09-01 23:04:20', u'slug': u'Fail First', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'13', u'name': u'animation', u'parent': u'0', u'term_id': u'28', u'term_taxonomy_id': u'29', u'taxonomy': u'post_tag', u'slug': u'animation', u'description': u''}, {u'term_group': u'0', u'count': u'5', u'name': u'colored pencil', u'parent': u'0', u'term_id': u'40', u'term_taxonomy_id': u'41', u'taxonomy': u'post_tag', u'slug': u'colored-pencil', u'description': u''}, {u'term_group': u'0', u'count': u'19', u'name': u'tlc', u'parent': u'0', u'term_id': u'11', u'term_taxonomy_id': u'11', u'taxonomy': u'post_tag', u'slug': u'tlc', u'description': u''}], u'date': u'2012-04-23 11:45:32', u'type': u'post', u'id': u'297', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'19', u'name': u'3d', u'parent': u'0', u'term_id': u'25', u'cat_ID': u'25', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'3d', u'category_count': u'19', u'term_taxonomy_id': u'25', u'taxonomy': u'category', u'category_nicename': u'3d', u'slug': u'3d', u'description': u''}], u'name': u'new-scene-tests', u'parent': u'0', u'title': u'New Scene Tests', u'url': u'http://artcontrol.me/?p=292', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"Spent most of today working with Blender. I mucked around with the scene but decided to start something fresh. I needed new inspration. I started a new project and here's", u'modified': u'2012-09-01 23:04:20', u'slug': u'New Scene Tests', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'13', u'name': u'animation', u'parent': u'0', u'term_id': u'28', u'term_taxonomy_id': u'29', u'taxonomy': u'post_tag', u'slug': u'animation', u'description': u''}, {u'term_group': u'0', u'count': u'1', u'name': u'art', u'parent': u'0', u'term_id': u'38', u'term_taxonomy_id': u'39', u'taxonomy': u'post_tag', u'slug': u'art', u'description': u''}, {u'term_group': u'0', u'count': u'17', u'name': u'blender', u'parent': u'0', u'term_id': u'27', u'term_taxonomy_id': u'28', u'taxonomy': u'post_tag', u'slug': u'blender', u'description': u''}, {u'term_group': u'0', u'count': u'16', u'name': u'video', u'parent': u'0', u'term_id': u'37', u'term_taxonomy_id': u'38', u'taxonomy': u'post_tag', u'slug': u'video', u'description': u''}], u'date': u'2012-04-20 06:36:09', u'type': u'post', u'id': u'292', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'19', u'name': u'3d', u'parent': u'0', u'term_id': u'25', u'cat_ID': u'25', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'3d', u'category_count': u'19', u'term_taxonomy_id': u'25', u'taxonomy': u'category', u'category_nicename': u'3d', u'slug': u'3d', u'description': u''}], u'name': u'april-block-blender-tests', u'parent': u'0', u'title': u'April Block Blender Tests', u'url': u'http://artcontrol.me/?p=284', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"Didn't end up going into TLC this week. Spent the day working with Blender and looking into game engines. Over the last few weeks I've downloaded several game engines - steam", u'modified': u'2012-09-01 23:04:20', u'slug': u'April Block Blender Tests', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'13', u'name': u'animation', u'parent': u'0', u'term_id': u'28', u'term_taxonomy_id': u'29', u'taxonomy': u'post_tag', u'slug': u'animation', u'description': u''}, {u'term_group': u'0', u'count': u'17', u'name': u'blender', u'parent': u'0', u'term_id': u'27', u'term_taxonomy_id': u'28', u'taxonomy': u'post_tag', u'slug': u'blender', u'description': u''}, {u'term_group': u'0', u'count': u'21', u'name': u'color', u'parent': u'0', u'term_id': u'30', u'term_taxonomy_id': u'31', u'taxonomy': u'post_tag', u'slug': u'color', u'description': u''}], u'date': u'2012-04-19 07:18:28', u'type': u'post', u'id': u'284', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'82', u'name': u'draw', u'parent': u'0', u'term_id': u'7', u'cat_ID': u'7', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'draw', u'category_count': u'82', u'term_taxonomy_id': u'7', u'taxonomy': u'category', u'category_nicename': u'draw', u'slug': u'draw', u'description': u''}], u'name': u'yeah-yeah-yeah-colored-pencils', u'parent': u'0', u'title': u'Yeah Yeah Yeah Colored Pencils', u'url': u'http://artcontrol.me/?p=277', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"Back in Wellington. Nice to be back I guess. I've been enjoying colored pencil, yesterday I didn't work with Blender - instead sketched in my visual diary. I've got a strong", u'modified': u'2012-09-01 23:04:20', u'slug': u'Yeah Yeah Yeah Colored Pencils', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'13', u'name': u'animation', u'parent': u'0', u'term_id': u'28', u'term_taxonomy_id': u'29', u'taxonomy': u'post_tag', u'slug': u'animation', u'description': u''}, {u'term_group': u'0', u'count': u'5', u'name': u'color pencil', u'parent': u'0', u'term_id': u'36', u'term_taxonomy_id': u'37', u'taxonomy': u'post_tag', u'slug': u'color-pencil', u'description': u''}, {u'term_group': u'0', u'count': u'4', u'name': u'music', u'parent': u'0', u'term_id': u'35', u'term_taxonomy_id': u'36', u'taxonomy': u'post_tag', u'slug': u'music', u'description': u''}], u'date': u'2012-04-15 00:06:56', u'type': u'post', u'id': u'277', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'82', u'name': u'draw', u'parent': u'0', u'term_id': u'7', u'cat_ID': u'7', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'draw', u'category_count': u'82', u'term_taxonomy_id': u'7', u'taxonomy': u'category', u'category_nicename': u'draw', u'slug': u'draw', u'description': u''}], u'name': u'envelope-characters', u'parent': u'0', u'title': u'Envelope Characters', u'url': u'http://artcontrol.me/?p=270', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"I brought myself a 6 pack of \xa0colored pencil today. I've felt an urge to get back into drawing. It started when I was hanging out in Andrews office and sketching in his a6", u'modified': u'2012-09-01 23:04:20', u'slug': u'Envelope Characters', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'1', u'name': u'alternative surface', u'parent': u'0', u'term_id': u'32', u'term_taxonomy_id': u'33', u'taxonomy': u'post_tag', u'slug': u'alternative-surface', u'description': u''}, {u'term_group': u'0', u'count': u'9', u'name': u'character', u'parent': u'0', u'term_id': u'33', u'term_taxonomy_id': u'34', u'taxonomy': u'post_tag', u'slug': u'character', u'description': u''}, {u'term_group': u'0', u'count': u'21', u'name': u'color', u'parent': u'0', u'term_id': u'30', u'term_taxonomy_id': u'31', u'taxonomy': u'post_tag', u'slug': u'color', u'description': u''}, {u'term_group': u'0', u'count': u'34', u'name': u'pencil', u'parent': u'0', u'term_id': u'10', u'term_taxonomy_id': u'10', u'taxonomy': u'post_tag', u'slug': u'pencil', u'description': u''}, {u'term_group': u'0', u'count': u'1', u'name': u'robot', u'parent': u'0', u'term_id': u'34', u'term_taxonomy_id': u'35', u'taxonomy': u'post_tag', u'slug': u'robot', u'description': u''}], u'date': u'2012-04-13 07:34:06', u'type': u'post', u'id': u'270', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'82', u'name': u'draw', u'parent': u'0', u'term_id': u'7', u'cat_ID': u'7', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'draw', u'category_count': u'82', u'term_taxonomy_id': u'7', u'taxonomy': u'category', u'category_nicename': u'draw', u'slug': u'draw', u'description': u''}], u'name': u'andrew-a6-doodles', u'parent': u'0', u'title': u'Andrew A6 Doodles', u'url': u'http://artcontrol.me/?p=264', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'My toe. From life. Started with a pencil then colored with colored pencils - matching the color as best as I can. Quite happy with this - really looking forward to the life', u'modified': u'2012-09-01 23:04:20', u'slug': u'Andrew A6 Doodles', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'1', u'name': u'a6', u'parent': u'0', u'term_id': u'31', u'term_taxonomy_id': u'32', u'taxonomy': u'post_tag', u'slug': u'a6', u'description': u''}, {u'term_group': u'0', u'count': u'13', u'name': u'animation', u'parent': u'0', u'term_id': u'28', u'term_taxonomy_id': u'29', u'taxonomy': u'post_tag', u'slug': u'animation', u'description': u''}, {u'term_group': u'0', u'count': u'21', u'name': u'color', u'parent': u'0', u'term_id': u'30', u'term_taxonomy_id': u'31', u'taxonomy': u'post_tag', u'slug': u'color', u'description': u''}, {u'term_group': u'0', u'count': u'34', u'name': u'pencil', u'parent': u'0', u'term_id': u'10', u'term_taxonomy_id': u'10', u'taxonomy': u'post_tag', u'slug': u'pencil', u'description': u''}], u'date': u'2012-04-12 08:37:03', u'type': u'post', u'id': u'264', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'19', u'name': u'3d', u'parent': u'0', u'term_id': u'25', u'cat_ID': u'25', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'3d', u'category_count': u'19', u'term_taxonomy_id': u'25', u'taxonomy': u'category', u'category_nicename': u'3d', u'slug': u'3d', u'description': u''}], u'name': u'blender-animation-update', u'parent': u'0', u'title': u'Blender Animation Update', u'url': u'http://artcontrol.me/?p=258', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"I've been up north so n access to the internet. Fun trip away, I did have my laptop with me and worked on a little Blender.I haven't drawn. Next week I'm spose to be back in", u'modified': u'2012-09-01 23:04:20', u'slug': u'Blender Animation Update', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'13', u'name': u'animation', u'parent': u'0', u'term_id': u'28', u'term_taxonomy_id': u'29', u'taxonomy': u'post_tag', u'slug': u'animation', u'description': u''}, {u'term_group': u'0', u'count': u'17', u'name': u'blender', u'parent': u'0', u'term_id': u'27', u'term_taxonomy_id': u'28', u'taxonomy': u'post_tag', u'slug': u'blender', u'description': u''}, {u'term_group': u'0', u'count': u'1', u'name': u'youtube', u'parent': u'0', u'term_id': u'29', u'term_taxonomy_id': u'30', u'taxonomy': u'post_tag', u'slug': u'youtube', u'description': u''}], u'date': u'2012-04-10 22:53:02', u'type': u'post', u'id': u'258', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'19', u'name': u'3d', u'parent': u'0', u'term_id': u'25', u'cat_ID': u'25', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'3d', u'category_count': u'19', u'term_taxonomy_id': u'25', u'taxonomy': u'category', u'category_nicename': u'3d', u'slug': u'3d', u'description': u''}], u'name': u'blender-animation-test', u'parent': u'0', u'title': u'Blender Animation Test', u'url': u'http://artcontrol.me/?p=255', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"I did a scribble in Andrews a6 visual diary. It was the first time I'd used a pencil all holidays. I've mostly been spending my time with Blender - creating animations. I", u'modified': u'2012-09-01 23:04:20', u'slug': u'Blender Animation Test', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'13', u'name': u'animation', u'parent': u'0', u'term_id': u'28', u'term_taxonomy_id': u'29', u'taxonomy': u'post_tag', u'slug': u'animation', u'description': u''}, {u'term_group': u'0', u'count': u'17', u'name': u'blender', u'parent': u'0', u'term_id': u'27', u'term_taxonomy_id': u'28', u'taxonomy': u'post_tag', u'slug': u'blender', u'description': u''}], u'date': u'2012-04-04 22:56:37', u'type': u'post', u'id': u'255', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'19', u'name': u'3d', u'parent': u'0', u'term_id': u'25', u'cat_ID': u'25', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'3d', u'category_count': u'19', u'term_taxonomy_id': u'25', u'taxonomy': u'category', u'category_nicename': u'3d', u'slug': u'3d', u'description': u''}], u'name': u'creature-modeling', u'parent': u'0', u'title': u'Creature Modeling', u'url': u'http://artcontrol.me/?p=248', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"Still no drawing. This must be the longest time I've taken a break from it for years. That's alright. I've been keeping busy with Blender - most of my time is spent on it (I", u'modified': u'2012-09-01 23:04:20', u'slug': u'Creature Modeling', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'17', u'name': u'blender', u'parent': u'0', u'term_id': u'27', u'term_taxonomy_id': u'28', u'taxonomy': u'post_tag', u'slug': u'blender', u'description': u''}, {u'term_group': u'0', u'count': u'4', u'name': u'model', u'parent': u'0', u'term_id': u'18', u'term_taxonomy_id': u'27', u'taxonomy': u'post_tag', u'slug': u'model', u'description': u''}], u'date': u'2012-04-01 06:20:44', u'type': u'post', u'id': u'248', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'19', u'name': u'3d', u'parent': u'0', u'term_id': u'25', u'cat_ID': u'25', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'3d', u'category_count': u'19', u'term_taxonomy_id': u'25', u'taxonomy': u'category', u'category_nicename': u'3d', u'slug': u'3d', u'description': u''}], u'name': u'maya-building', u'parent': u'0', u'title': u'Maya Building', u'url': u'http://artcontrol.me/?p=242', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"I've taken a break from the blog well I've been in Levin. I've taken a break from artwork in general - the last week was a crazy time of life drawing and a break has been", u'modified': u'2012-09-01 23:04:20', u'slug': u'Maya Building', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'1', u'name': u'maya', u'parent': u'0', u'term_id': u'26', u'term_taxonomy_id': u'26', u'taxonomy': u'post_tag', u'slug': u'maya', u'description': u''}, {u'term_group': u'0', u'count': u'4', u'name': u'model', u'parent': u'0', u'term_id': u'18', u'term_taxonomy_id': u'27', u'taxonomy': u'post_tag', u'slug': u'model', u'description': u''}], u'date': u'2012-03-28 07:08:32', u'type': u'post', u'id': u'242', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'digital-nudes', u'parent': u'0', u'title': u'Digital nudes ', u'url': u'http://artcontrol.me/?p=236', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"I think I've lost my tablet pen. I have either left it in the library or it's fallen out of my bag. I'm a bit sad and\xa0disappointed\xa0as I was looking forward to digital", u'modified': u'2012-09-01 23:04:20', u'slug': u'Digital nudes ', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'17', u'name': u'figure', u'parent': u'0', u'term_id': u'8', u'term_taxonomy_id': u'8', u'taxonomy': u'post_tag', u'slug': u'figure', u'description': u''}, {u'term_group': u'0', u'count': u'4', u'name': u'photoshop', u'parent': u'0', u'term_id': u'23', u'term_taxonomy_id': u'23', u'taxonomy': u'post_tag', u'slug': u'photoshop', u'description': u''}], u'date': u'2012-03-22 07:03:06', u'type': u'post', u'id': u'236', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'82', u'name': u'draw', u'parent': u'0', u'term_id': u'7', u'cat_ID': u'7', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'draw', u'category_count': u'82', u'term_taxonomy_id': u'7', u'taxonomy': u'category', u'category_nicename': u'draw', u'slug': u'draw', u'description': u''}], u'name': u'christena-wednesday-drawings', u'parent': u'0', u'title': u'Christena Wednesday Drawings', u'url': u'http://artcontrol.me/?p=222', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"\r\n\r\nNo more Roberts for the week - Instead I'm in Christenas. She created a block class as there were a bunch of foundation that weren't told about signing up for classes and", u'modified': u'2012-09-01 23:04:20', u'slug': u'Christena Wednesday Drawings', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'11', u'name': u'male', u'parent': u'0', u'term_id': u'22', u'term_taxonomy_id': u'22', u'taxonomy': u'post_tag', u'slug': u'male', u'description': u''}, {u'term_group': u'0', u'count': u'5', u'name': u'oil pastel', u'parent': u'0', u'term_id': u'24', u'term_taxonomy_id': u'24', u'taxonomy': u'post_tag', u'slug': u'oil-pastel', u'description': u''}, {u'term_group': u'0', u'count': u'19', u'name': u'tlc', u'parent': u'0', u'term_id': u'11', u'term_taxonomy_id': u'11', u'taxonomy': u'post_tag', u'slug': u'tlc', u'description': u''}], u'date': u'2012-03-21 10:30:15', u'type': u'post', u'id': u'222', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'82', u'name': u'draw', u'parent': u'0', u'term_id': u'7', u'cat_ID': u'7', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'draw', u'category_count': u'82', u'term_taxonomy_id': u'7', u'taxonomy': u'category', u'category_nicename': u'draw', u'slug': u'draw', u'description': u''}], u'name': u'robert-tuesday-term-1-2012', u'parent': u'0', u'title': u'Robert Tuesday - Term 1 2012', u'url': u'http://artcontrol.me/?p=207', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"Six hours of life drawing with Robert. Normally it would be three hours on Monday/Tuesday/Wednesday but this term it's switched around. Fine with me as I get the chance to", u'modified': u'2012-09-01 23:04:20', u'slug': u'Robert Tuesday - Term 1 2012', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'22', u'name': u'female', u'parent': u'0', u'term_id': u'19', u'term_taxonomy_id': u'19', u'taxonomy': u'post_tag', u'slug': u'female', u'description': u''}, {u'term_group': u'0', u'count': u'5', u'name': u'oil pastel', u'parent': u'0', u'term_id': u'24', u'term_taxonomy_id': u'24', u'taxonomy': u'post_tag', u'slug': u'oil-pastel', u'description': u''}, {u'term_group': u'0', u'count': u'19', u'name': u'tlc', u'parent': u'0', u'term_id': u'11', u'term_taxonomy_id': u'11', u'taxonomy': u'post_tag', u'slug': u'tlc', u'description': u''}], u'date': u'2012-03-20 08:29:42', u'type': u'post', u'id': u'207', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'82', u'name': u'draw', u'parent': u'0', u'term_id': u'7', u'cat_ID': u'7', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'draw', u'category_count': u'82', u'term_taxonomy_id': u'7', u'taxonomy': u'category', u'category_nicename': u'draw', u'slug': u'draw', u'description': u''}, {u'term_group': u'0', u'count': u'19', u'name': u'model', u'parent': u'0', u'term_id': u'18', u'cat_ID': u'18', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'model', u'category_count': u'19', u'term_taxonomy_id': u'18', u'taxonomy': u'category', u'category_nicename': u'model', u'slug': u'model', u'description': u''}], u'name': u'robert-monday-term-1-2012', u'parent': u'0', u'title': u'Robert - Monday Term 1 2012', u'url': u'http://artcontrol.me/?p=198', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"It's block week at TLC and Robert has a model Monday (3hours) and Tuesday (6hours). Here's my life drawings from Monday.\r\n\r\nI decided to keep exploring oil pastel - though I", u'modified': u'2012-09-01 23:04:20', u'slug': u'Robert - Monday Term 1 2012', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'22', u'name': u'female', u'parent': u'0', u'term_id': u'19', u'term_taxonomy_id': u'19', u'taxonomy': u'post_tag', u'slug': u'female', u'description': u''}, {u'term_group': u'0', u'count': u'19', u'name': u'tlc', u'parent': u'0', u'term_id': u'11', u'term_taxonomy_id': u'11', u'taxonomy': u'post_tag', u'slug': u'tlc', u'description': u''}], u'date': u'2012-03-19 10:59:06', u'type': u'post', u'id': u'198', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'lee-digital-works', u'parent': u'0', u'title': u'Lee Digital Works', u'url': u'http://artcontrol.me/?p=193', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'Recent digital works - taking the life drawings I did on Friday and working over top on Photoshop. Matt painting was a focus\xa0\r\n\r\nThis was a struggle in digital. I had', u'modified': u'2012-09-01 23:04:21', u'slug': u'Lee Digital Works', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'17', u'name': u'figure', u'parent': u'0', u'term_id': u'8', u'term_taxonomy_id': u'8', u'taxonomy': u'post_tag', u'slug': u'figure', u'description': u''}, {u'term_group': u'0', u'count': u'4', u'name': u'photoshop', u'parent': u'0', u'term_id': u'23', u'term_taxonomy_id': u'23', u'taxonomy': u'post_tag', u'slug': u'photoshop', u'description': u''}], u'date': u'2012-03-18 11:21:42', u'type': u'post', u'id': u'193', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'82', u'name': u'draw', u'parent': u'0', u'term_id': u'7', u'cat_ID': u'7', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'draw', u'category_count': u'82', u'term_taxonomy_id': u'7', u'taxonomy': u'category', u'category_nicename': u'draw', u'slug': u'draw', u'description': u''}, {u'term_group': u'0', u'count': u'19', u'name': u'model', u'parent': u'0', u'term_id': u'18', u'cat_ID': u'18', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'model', u'category_count': u'19', u'term_taxonomy_id': u'18', u'taxonomy': u'category', u'category_nicename': u'model', u'slug': u'model', u'description': u''}], u'name': u'roger-friday-lee-model', u'parent': u'0', u'title': u'Roger Friday Lee Model', u'url': u'http://artcontrol.me/?p=186', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'First time doing one of Rogers life drawing this term, and as always -\xa0brilliant. His life drawing classes always goes well.\r\n\r\nLee was the model. She had only modeled once', u'modified': u'2012-09-01 23:04:21', u'slug': u'Roger Friday Lee Model', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'22', u'name': u'female', u'parent': u'0', u'term_id': u'19', u'term_taxonomy_id': u'19', u'taxonomy': u'post_tag', u'slug': u'female', u'description': u''}, {u'term_group': u'0', u'count': u'5', u'name': u'oil pastel', u'parent': u'0', u'term_id': u'24', u'term_taxonomy_id': u'24', u'taxonomy': u'post_tag', u'slug': u'oil-pastel', u'description': u''}, {u'term_group': u'0', u'count': u'19', u'name': u'tlc', u'parent': u'0', u'term_id': u'11', u'term_taxonomy_id': u'11', u'taxonomy': u'post_tag', u'slug': u'tlc', u'description': u''}], u'date': u'2012-03-16 07:08:17', u'type': u'post', u'id': u'186', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'happy-birthday-mum', u'parent': u'0', u'title': u'Happy Birthday Mum', u'url': u'http://artcontrol.me/?p=179', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"It's my Mums birthday today. Here's some recent digital painting I've been working on. I downloaded the trial of Photoshop CS5 to give it a go... it's nice to have a change", u'modified': u'2012-09-01 23:04:34', u'slug': u'Happy Birthday Mum', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'17', u'name': u'figure', u'parent': u'0', u'term_id': u'8', u'term_taxonomy_id': u'8', u'taxonomy': u'post_tag', u'slug': u'figure', u'description': u''}, {u'term_group': u'0', u'count': u'4', u'name': u'photoshop', u'parent': u'0', u'term_id': u'23', u'term_taxonomy_id': u'23', u'taxonomy': u'post_tag', u'slug': u'photoshop', u'description': u''}], u'date': u'2012-03-15 09:52:13', u'type': u'post', u'id': u'179', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'82', u'name': u'draw', u'parent': u'0', u'term_id': u'7', u'cat_ID': u'7', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'draw', u'category_count': u'82', u'term_taxonomy_id': u'7', u'taxonomy': u'category', u'category_nicename': u'draw', u'slug': u'draw', u'description': u''}, {u'term_group': u'0', u'count': u'19', u'name': u'model', u'parent': u'0', u'term_id': u'18', u'cat_ID': u'18', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'model', u'category_count': u'19', u'term_taxonomy_id': u'18', u'taxonomy': u'category', u'category_nicename': u'model', u'slug': u'model', u'description': u''}], u'name': u'final-friday-term-1-2012', u'parent': u'0', u'title': u'Final Friday Term 1 2012', u'url': u'http://artcontrol.me/?p=166', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"Ok, I've been sick recently so haven't put time into any of my blogs. I'm felling better and starting to do more digital works (I downloaded the trial of Photoshop to give it", u'modified': u'2012-09-01 23:04:34', u'slug': u'Final Friday Term 1 2012', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'11', u'name': u'male', u'parent': u'0', u'term_id': u'22', u'term_taxonomy_id': u'22', u'taxonomy': u'post_tag', u'slug': u'male', u'description': u''}, {u'term_group': u'0', u'count': u'34', u'name': u'pencil', u'parent': u'0', u'term_id': u'10', u'term_taxonomy_id': u'10', u'taxonomy': u'post_tag', u'slug': u'pencil', u'description': u''}, {u'term_group': u'0', u'count': u'19', u'name': u'tlc', u'parent': u'0', u'term_id': u'11', u'term_taxonomy_id': u'11', u'taxonomy': u'post_tag', u'slug': u'tlc', u'description': u''}], u'date': u'2012-03-14 03:17:46', u'type': u'post', u'id': u'166', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'82', u'name': u'draw', u'parent': u'0', u'term_id': u'7', u'cat_ID': u'7', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'draw', u'category_count': u'82', u'term_taxonomy_id': u'7', u'taxonomy': u'category', u'category_nicename': u'draw', u'slug': u'draw', u'description': u''}, {u'term_group': u'0', u'count': u'19', u'name': u'model', u'parent': u'0', u'term_id': u'18', u'cat_ID': u'18', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'model', u'category_count': u'19', u'term_taxonomy_id': u'18', u'taxonomy': u'category', u'category_nicename': u'model', u'slug': u'model', u'description': u''}], u'name': u'double-female-model-monday', u'parent': u'0', u'title': u'Double Female Model Monday', u'url': u'http://artcontrol.me/?p=144', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"First update since the blog has been part restored. It's mostly life drawing posts that have been re added. I will go though my artwork and create new posts for the missing", u'modified': u'2012-09-01 23:04:34', u'slug': u'Double Female Model Monday', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'22', u'name': u'female', u'parent': u'0', u'term_id': u'19', u'term_taxonomy_id': u'19', u'taxonomy': u'post_tag', u'slug': u'female', u'description': u''}, {u'term_group': u'0', u'count': u'19', u'name': u'tlc', u'parent': u'0', u'term_id': u'11', u'term_taxonomy_id': u'11', u'taxonomy': u'post_tag', u'slug': u'tlc', u'description': u''}], u'date': u'2012-03-09 20:43:30', u'type': u'post', u'id': u'144', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'old-master-techniques', u'parent': u'0', u'title': u'Old Master Techniques', u'url': u'http://artcontrol.me/?p=135', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'This evening I sumbedupon the site\xa0Drawspace. I checked their advance section \u2013 and found a section that looked at Old Masters. Last year I became interested with Old', u'modified': u'2012-09-01 23:04:35', u'slug': u'Old Master Techniques', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'1', u'name': u'master', u'parent': u'0', u'term_id': u'21', u'term_taxonomy_id': u'21', u'taxonomy': u'post_tag', u'slug': u'master', u'description': u''}, {u'term_group': u'0', u'count': u'33', u'name': u'portrait', u'parent': u'0', u'term_id': u'20', u'term_taxonomy_id': u'20', u'taxonomy': u'post_tag', u'slug': u'portrait', u'description': u''}], u'date': u'2012-01-20 00:46:10', u'type': u'post', u'id': u'135', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'82', u'name': u'draw', u'parent': u'0', u'term_id': u'7', u'cat_ID': u'7', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'draw', u'category_count': u'82', u'term_taxonomy_id': u'7', u'taxonomy': u'category', u'category_nicename': u'draw', u'slug': u'draw', u'description': u''}, {u'term_group': u'0', u'count': u'19', u'name': u'model', u'parent': u'0', u'term_id': u'18', u'cat_ID': u'18', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'model', u'category_count': u'19', u'term_taxonomy_id': u'18', u'taxonomy': u'category', u'category_nicename': u'model', u'slug': u'model', u'description': u''}], u'name': u'friday-model-geogette', u'parent': u'0', u'title': u'Friday Model \u2013 Geogette', u'url': u'http://artcontrol.me/?p=125', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'Friday. Experimenting Drawing.\xa0Georgette modeled. I hadn\u2019t drawn her since sometime last year. It certainly wasn\u2019t the most progressive life drawing class\u2026 but it was', u'modified': u'2012-09-01 23:04:34', u'slug': u'Friday Model \u2013 Geogette', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'22', u'name': u'female', u'parent': u'0', u'term_id': u'19', u'term_taxonomy_id': u'19', u'taxonomy': u'post_tag', u'slug': u'female', u'description': u''}, {u'term_group': u'0', u'count': u'34', u'name': u'pencil', u'parent': u'0', u'term_id': u'10', u'term_taxonomy_id': u'10', u'taxonomy': u'post_tag', u'slug': u'pencil', u'description': u''}, {u'term_group': u'0', u'count': u'19', u'name': u'tlc', u'parent': u'0', u'term_id': u'11', u'term_taxonomy_id': u'11', u'taxonomy': u'post_tag', u'slug': u'tlc', u'description': u''}], u'date': u'2012-02-25 10:39:55', u'type': u'post', u'id': u'125', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'82', u'name': u'draw', u'parent': u'0', u'term_id': u'7', u'cat_ID': u'7', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'draw', u'category_count': u'82', u'term_taxonomy_id': u'7', u'taxonomy': u'category', u'category_nicename': u'draw', u'slug': u'draw', u'description': u''}, {u'term_group': u'0', u'count': u'19', u'name': u'model', u'parent': u'0', u'term_id': u'18', u'cat_ID': u'18', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'model', u'category_count': u'19', u'term_taxonomy_id': u'18', u'taxonomy': u'category', u'category_nicename': u'model', u'slug': u'model', u'description': u''}], u'name': u'vincents-negative-space', u'parent': u'0', u'title': u'Vincents Negative Space', u'url': u'http://artcontrol.me/?p=119', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'Here\u2019s some life drawing from last weeks Vincents class. I attended both Tuesday and Thursday, plus I made it this week (Tuesday \u2013 not sure if I will go \xa0Thursday).', u'modified': u'2012-09-01 23:04:34', u'slug': u'Vincents Negative Space', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'22', u'name': u'female', u'parent': u'0', u'term_id': u'19', u'term_taxonomy_id': u'19', u'taxonomy': u'post_tag', u'slug': u'female', u'description': u''}, {u'term_group': u'0', u'count': u'34', u'name': u'pencil', u'parent': u'0', u'term_id': u'10', u'term_taxonomy_id': u'10', u'taxonomy': u'post_tag', u'slug': u'pencil', u'description': u''}, {u'term_group': u'0', u'count': u'6', u'name': u'vincents', u'parent': u'0', u'term_id': u'16', u'term_taxonomy_id': u'16', u'taxonomy': u'post_tag', u'slug': u'vincents', u'description': u''}], u'date': u'2012-02-12 09:35:51', u'type': u'post', u'id': u'119', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'82', u'name': u'draw', u'parent': u'0', u'term_id': u'7', u'cat_ID': u'7', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'draw', u'category_count': u'82', u'term_taxonomy_id': u'7', u'taxonomy': u'category', u'category_nicename': u'draw', u'slug': u'draw', u'description': u''}, {u'term_group': u'0', u'count': u'19', u'name': u'model', u'parent': u'0', u'term_id': u'18', u'cat_ID': u'18', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'model', u'category_count': u'19', u'term_taxonomy_id': u'18', u'taxonomy': u'category', u'category_nicename': u'model', u'slug': u'model', u'description': u''}], u'name': u'life-model-monday', u'parent': u'0', u'title': u'Life Model Monday', u'url': u'http://artcontrol.me/?p=111', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'I can\u2019t believe it\u2019s Friday. A whole week has flown by. I haven\u2019t felt I\u2019ve updated or worked on digital works\r\n\r\nThese are the life drawings for Dans class on', u'modified': u'2012-09-01 23:04:34', u'slug': u'Life Model Monday', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'22', u'name': u'female', u'parent': u'0', u'term_id': u'19', u'term_taxonomy_id': u'19', u'taxonomy': u'post_tag', u'slug': u'female', u'description': u''}, {u'term_group': u'0', u'count': u'34', u'name': u'pencil', u'parent': u'0', u'term_id': u'10', u'term_taxonomy_id': u'10', u'taxonomy': u'post_tag', u'slug': u'pencil', u'description': u''}, {u'term_group': u'0', u'count': u'19', u'name': u'tlc', u'parent': u'0', u'term_id': u'11', u'term_taxonomy_id': u'11', u'taxonomy': u'post_tag', u'slug': u'tlc', u'description': u''}], u'date': u'2012-02-16 12:45:16', u'type': u'post', u'id': u'111', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'82', u'name': u'draw', u'parent': u'0', u'term_id': u'7', u'cat_ID': u'7', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'draw', u'category_count': u'82', u'term_taxonomy_id': u'7', u'taxonomy': u'category', u'category_nicename': u'draw', u'slug': u'draw', u'description': u''}], u'name': u'promarker-vincents-thursday', u'parent': u'0', u'title': u'Promarker Vincents Thursday', u'url': u'http://artcontrol.me/?p=104', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'I made it agian to Vincents this week. Another Female model \u2013 and someone I hadn\u2019t drawn.\r\n\r\nI used 5 promarkers. The colors are \u2013 Sandstone, Raw Sienna (a fav), Cocoa,', u'modified': u'2012-09-01 23:04:34', u'slug': u'Promarker Vincents Thursday', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'1', u'name': u'promarker', u'parent': u'0', u'term_id': u'17', u'term_taxonomy_id': u'17', u'taxonomy': u'post_tag', u'slug': u'promarker', u'description': u''}, {u'term_group': u'0', u'count': u'6', u'name': u'vincents', u'parent': u'0', u'term_id': u'16', u'term_taxonomy_id': u'16', u'taxonomy': u'post_tag', u'slug': u'vincents', u'description': u''}], u'date': u'2012-02-09 12:39:58', u'type': u'post', u'id': u'104', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'13', u'name': u'paint', u'parent': u'0', u'term_id': u'15', u'cat_ID': u'15', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'paint', u'category_count': u'13', u'term_taxonomy_id': u'15', u'taxonomy': u'category', u'category_nicename': u'paint', u'slug': u'paint', u'description': u''}], u'name': u'panic-life-paint', u'parent': u'0', u'title': u'Panic Life Paint', u'url': u'http://artcontrol.me/?p=91', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'Today I arrived back in Wellington. I attended Vincents. It was a female model \u2013 Lyn. Afterwards I found out that she was the mother of Pri \u2013 a girl who I went to TLC', u'modified': u'2012-09-01 23:04:34', u'slug': u'Panic Life Paint', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'6', u'name': u'vincents', u'parent': u'0', u'term_id': u'16', u'term_taxonomy_id': u'16', u'taxonomy': u'post_tag', u'slug': u'vincents', u'description': u''}], u'date': u'2012-02-07 15:29:02', u'type': u'post', u'id': u'91', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'digital-landscape-red', u'parent': u'0', u'title': u'Digital Landscape Red', u'url': u'http://artcontrol.me/?p=87', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'After starting several landscape paintings with acrylic paint on board I had a go with digital ideas. I worked on these Thursday night on my travel from Wellington to Levin.', u'modified': u'2012-09-01 23:04:35', u'slug': u'Digital Landscape Red', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'14', u'name': u'landscape', u'parent': u'0', u'term_id': u'9', u'term_taxonomy_id': u'9', u'taxonomy': u'post_tag', u'slug': u'landscape', u'description': u''}], u'date': u'2012-02-05 14:25:46', u'type': u'post', u'id': u'87', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'13', u'name': u'paint', u'parent': u'0', u'term_id': u'15', u'cat_ID': u'15', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'paint', u'category_count': u'13', u'term_taxonomy_id': u'15', u'taxonomy': u'category', u'category_nicename': u'paint', u'slug': u'paint', u'description': u''}], u'name': u'marc-thursday-landscape', u'parent': u'0', u'title': u'Marc Thursday Landscape', u'url': u'http://artcontrol.me/?p=80', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'On Thursdays I am taking Marc Hills painting class. In the past when I\u2019ve taken his classes I haven\u2019t painted. Drawing\u2026 and hearing what he has to save. This terms', u'modified': u'2012-09-01 23:04:35', u'slug': u'Marc Thursday Landscape', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'14', u'name': u'landscape', u'parent': u'0', u'term_id': u'9', u'term_taxonomy_id': u'9', u'taxonomy': u'post_tag', u'slug': u'landscape', u'description': u''}, {u'term_group': u'0', u'count': u'19', u'name': u'tlc', u'parent': u'0', u'term_id': u'11', u'term_taxonomy_id': u'11', u'taxonomy': u'post_tag', u'slug': u'tlc', u'description': u''}], u'date': u'2012-02-03 12:02:32', u'type': u'post', u'id': u'80', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'82', u'name': u'draw', u'parent': u'0', u'term_id': u'7', u'cat_ID': u'7', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'draw', u'category_count': u'82', u'term_taxonomy_id': u'7', u'taxonomy': u'category', u'category_nicename': u'draw', u'slug': u'draw', u'description': u''}], u'name': u'memory-tlc-staff-exhibition', u'parent': u'0', u'title': u'\u2018Memory\u2019 TLC Staff Exhibition', u'url': u'http://artcontrol.me/?p=78', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u' \r\n\r\nLast week I was lucky enough to head to Expressions gallery in Upper Hutt with Roberts block class. I wasn\u2019t expecting to see the show as Upper Hutt is far away,', u'modified': u'2012-09-01 23:04:35', u'slug': u'\u2018Memory\u2019 TLC Staff Exhibition', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'1', u'name': u'excibt', u'parent': u'0', u'term_id': u'14', u'term_taxonomy_id': u'14', u'taxonomy': u'post_tag', u'slug': u'excibt', u'description': u''}, {u'term_group': u'0', u'count': u'19', u'name': u'tlc', u'parent': u'0', u'term_id': u'11', u'term_taxonomy_id': u'11', u'taxonomy': u'post_tag', u'slug': u'tlc', u'description': u''}], u'date': u'2012-02-01 22:53:45', u'type': u'post', u'id': u'78', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'toy-landscape', u'parent': u'0', u'title': u'Toy Landscape', u'url': u'http://artcontrol.me/?p=72', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'On Friday I painted on GIMP at TLC. We didn\u2019t have a model so I just hanged out in Garys room with Rachel and such.\r\n\r\nI haven\u2019t been very good with keeping up with', u'modified': u'2012-09-01 23:04:35', u'slug': u'Toy Landscape', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'9', u'name': u'sketchdaily', u'parent': u'0', u'term_id': u'13', u'term_taxonomy_id': u'13', u'taxonomy': u'post_tag', u'slug': u'sketchdaily', u'description': u''}], u'date': u'2012-01-30 22:50:29', u'type': u'post', u'id': u'72', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'monster-under-the-bed', u'parent': u'0', u'title': u'Monster Under The Bed', u'url': u'http://artcontrol.me/?p=69', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'The theme on Reddit SketchDaily today is Monster Under The Bed.\r\nI\u2019ve been busy moving these last 4 days but finally had some time this morning to do a quick sketch in', u'modified': u'2012-09-01 23:04:35', u'slug': u'Monster Under The Bed', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'9', u'name': u'sketchdaily', u'parent': u'0', u'term_id': u'13', u'term_taxonomy_id': u'13', u'taxonomy': u'post_tag', u'slug': u'sketchdaily', u'description': u''}], u'date': u'2012-01-28 22:20:26', u'type': u'post', u'id': u'69', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'seven-deadly-sins-gluttony', u'parent': u'0', u'title': u'Seven Deadly Sins \u2013 Gluttony', u'url': u'http://artcontrol.me/?p=63', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'Theme of the week is happening on Reddit SketchDaily. The theme \u2013 Seven Deadly Sins. For the first day it\u2019s Gluttony.\r\nmmmm, food. I had subway for dinner last night as I', u'modified': u'2012-09-01 23:04:35', u'slug': u'Seven Deadly Sins \u2013 Gluttony', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'9', u'name': u'sketchdaily', u'parent': u'0', u'term_id': u'13', u'term_taxonomy_id': u'13', u'taxonomy': u'post_tag', u'slug': u'sketchdaily', u'description': u''}], u'date': u'2012-01-28 22:13:11', u'type': u'post', u'id': u'63', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'82', u'name': u'draw', u'parent': u'0', u'term_id': u'7', u'cat_ID': u'7', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'draw', u'category_count': u'82', u'term_taxonomy_id': u'7', u'taxonomy': u'category', u'category_nicename': u'draw', u'slug': u'draw', u'description': u''}], u'name': u'email-to-my-mentor', u'parent': u'0', u'title': u'Email to my mentor', u'url': u'http://artcontrol.me/?p=60', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'I got a new mentor. Here\u2019s the email I sent her today explaining my plan and such for the year. You can read it too\u2026.\r\n\r\n \r\n\r\nHi Sophie.\r\n\r\nMy cellphone is currently', u'modified': u'2012-09-01 23:04:35', u'slug': u'Email to my mentor', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'1', u'name': u'plan', u'parent': u'0', u'term_id': u'12', u'term_taxonomy_id': u'12', u'taxonomy': u'post_tag', u'slug': u'plan', u'description': u''}, {u'term_group': u'0', u'count': u'19', u'name': u'tlc', u'parent': u'0', u'term_id': u'11', u'term_taxonomy_id': u'11', u'taxonomy': u'post_tag', u'slug': u'tlc', u'description': u''}], u'date': u'2012-01-27 22:09:53', u'type': u'post', u'id': u'60', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'82', u'name': u'draw', u'parent': u'0', u'term_id': u'7', u'cat_ID': u'7', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'draw', u'category_count': u'82', u'term_taxonomy_id': u'7', u'taxonomy': u'category', u'category_nicename': u'draw', u'slug': u'draw', u'description': u''}], u'name': u'wellington-figure-and-landscape', u'parent': u'0', u'title': u'Wellington figure and landscape', u'url': u'http://artcontrol.me/?p=56', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'I spent yesterday cleaning my room as I\u2019m moving this weekend. I also had problems with my internet connection. It just wouldn\u2019t stay connected \u2013 connection dropped', u'modified': u'2012-09-01 23:04:35', u'slug': u'Wellington figure and landscape', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'17', u'name': u'figure', u'parent': u'0', u'term_id': u'8', u'term_taxonomy_id': u'8', u'taxonomy': u'post_tag', u'slug': u'figure', u'description': u''}, {u'term_group': u'0', u'count': u'14', u'name': u'landscape', u'parent': u'0', u'term_id': u'9', u'term_taxonomy_id': u'9', u'taxonomy': u'post_tag', u'slug': u'landscape', u'description': u''}, {u'term_group': u'0', u'count': u'34', u'name': u'pencil', u'parent': u'0', u'term_id': u'10', u'term_taxonomy_id': u'10', u'taxonomy': u'post_tag', u'slug': u'pencil', u'description': u''}], u'date': u'2012-01-26 22:05:16', u'type': u'post', u'id': u'56', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'104', u'name': u'digital', u'parent': u'0', u'term_id': u'5', u'cat_ID': u'5', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'digital', u'category_count': u'104', u'term_taxonomy_id': u'5', u'taxonomy': u'category', u'category_nicename': u'digital', u'slug': u'digital', u'description': u''}], u'name': u'strangegrace-illustration', u'parent': u'0', u'title': u'Strangegrace illustration', u'url': u'http://artcontrol.me/?p=47', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'Digital work from UCOL. It was for the a illustration project \u2013 creating a character for a video game or movie etc..\r\n\r\n\r\n\r\nThe character I came up with was this', u'modified': u'2012-09-01 23:04:35', u'slug': u'Strangegrace illustration', u'comment_count': u'0', u'tag': [{u'term_group': u'0', u'count': u'1', u'name': u'UCOL', u'parent': u'0', u'term_id': u'6', u'term_taxonomy_id': u'6', u'taxonomy': u'post_tag', u'slug': u'ucol', u'description': u''}], u'date': u'2011-12-23 21:37:54', u'type': u'post', u'id': u'47', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'82', u'name': u'draw', u'parent': u'0', u'term_id': u'7', u'cat_ID': u'7', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'draw', u'category_count': u'82', u'term_taxonomy_id': u'7', u'taxonomy': u'category', u'category_nicename': u'draw', u'slug': u'draw', u'description': u''}], u'name': u'to-follow-a-blog-or-not', u'parent': u'0', u'title': u'To follow a blog or not', u'url': u'http://artcontrol.me/?p=44', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'To Follow a art blog or not This post is going to talk about art blogs that I follow and reasons behind following them. Why I follow a blog I like finding new blogs to', u'modified': u'2012-09-01 23:04:35', u'slug': u'To follow a blog or not', u'comment_count': u'0', u'tag': [], u'date': u'2011-12-16 06:36:30', u'type': u'post', u'id': u'44', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'82', u'name': u'draw', u'parent': u'0', u'term_id': u'7', u'cat_ID': u'7', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'draw', u'category_count': u'82', u'term_taxonomy_id': u'7', u'taxonomy': u'category', u'category_nicename': u'draw', u'slug': u'draw', u'description': u''}], u'name': u'file-infigment-bill-thoughts', u'parent': u'0', u'title': u'File Infigment Bill thoughts', u'url': u'http://artcontrol.me/?p=42', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'This year the New Zealand Govt passed \xa0the file infigement bill. AKA 3strikes/skynet. Yesterday this bill went into effect, my torrenting has increased. Really need some new', u'modified': u'2012-09-01 23:04:47', u'slug': u'File Infigment Bill thoughts', u'comment_count': u'0', u'tag': [], u'date': u'2011-08-12 13:58:31', u'type': u'post', u'id': u'42', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'82', u'name': u'draw', u'parent': u'0', u'term_id': u'7', u'cat_ID': u'7', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'draw', u'category_count': u'82', u'term_taxonomy_id': u'7', u'taxonomy': u'category', u'category_nicename': u'draw', u'slug': u'draw', u'description': u''}], u'name': u'just-two-colours', u'parent': u'0', u'title': u'Just two colours', u'url': u'http://artcontrol.me/?p=37', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'Two Colours (or fast-track to autonomy in art)\n\nThere is a decision which many artists will have to make at some point in their lives. That is the moment they decide to stop', u'modified': u'2012-09-01 23:04:47', u'slug': u'Just two colours', u'comment_count': u'0', u'tag': [], u'date': u'2011-08-10 12:01:21', u'type': u'post', u'id': u'37', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'82', u'name': u'draw', u'parent': u'0', u'term_id': u'7', u'cat_ID': u'7', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'draw', u'category_count': u'82', u'term_taxonomy_id': u'7', u'taxonomy': u'category', u'category_nicename': u'draw', u'slug': u'draw', u'description': u''}], u'name': u'underpainting', u'parent': u'0', u'title': u'underpainting', u'url': u'http://artcontrol.me/?p=29', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"I''ve been giving underpainting a go since i got my oil paints. I want to experiment more with it. www.conceptart.org has a great thread talk,ing about \xa0this and giving", u'modified': u'2012-09-01 23:04:47', u'slug': u'underpainting', u'comment_count': u'0', u'tag': [], u'date': u'2011-08-06 20:34:12', u'type': u'post', u'id': u'29', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'82', u'name': u'draw', u'parent': u'0', u'term_id': u'7', u'cat_ID': u'7', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'draw', u'category_count': u'82', u'term_taxonomy_id': u'7', u'taxonomy': u'category', u'category_nicename': u'draw', u'slug': u'draw', u'description': u''}], u'name': u'your-brain', u'parent': u'0', u'title': u'Your brain', u'url': u'http://artcontrol.me/?p=25', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'In Wellington public library the otherday I came accross a recent book on creativity and such. It had some good ideas about exercising your brain for artists. Here are the', u'modified': u'2012-09-01 23:04:47', u'slug': u'Your brain', u'comment_count': u'0', u'tag': [], u'date': u'2011-08-12 10:00:26', u'type': u'post', u'id': u'25', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'82', u'name': u'draw', u'parent': u'0', u'term_id': u'7', u'cat_ID': u'7', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'draw', u'category_count': u'82', u'term_taxonomy_id': u'7', u'taxonomy': u'category', u'category_nicename': u'draw', u'slug': u'draw', u'description': u''}], u'name': u'les-barany-advice', u'parent': u'0', u'title': u'Les Barany Advice', u'url': u'http://artcontrol.me/?p=23', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'Dear Aspiring Artist:\n\nHere is my advice. Think of it as a five-year plan:\n\nTake whatever courses you find the most interesting.\n\nStudy closely the work of the Old', u'modified': u'2012-09-01 23:04:47', u'slug': u'Les Barany Advice', u'comment_count': u'0', u'tag': [], u'date': u'2011-08-03 05:13:40', u'type': u'post', u'id': u'23', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'82', u'name': u'draw', u'parent': u'0', u'term_id': u'7', u'cat_ID': u'7', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'draw', u'category_count': u'82', u'term_taxonomy_id': u'7', u'taxonomy': u'category', u'category_nicename': u'draw', u'slug': u'draw', u'description': u''}], u'name': u'i-wear-black-on-the-outside-cos-black-is-how-i-feel-on-the-inside', u'parent': u'0', u'title': u'I wear black on the outside cos black is how i feel on the inside', u'url': u'http://artcontrol.me/?p=18', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u"So this is the first page. Welcome. Kia Ora.\nCurrently I have no net and I''m just sitting in my room thinking about going out. It's getting late so don't see that", u'modified': u'2012-09-01 23:04:48', u'slug': u'I wear black on the outside cos black is how i feel on the inside', u'comment_count': u'0', u'tag': [], u'date': u'2011-07-30 16:59:14', u'type': u'post', u'id': u'18', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'82', u'name': u'draw', u'parent': u'0', u'term_id': u'7', u'cat_ID': u'7', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'draw', u'category_count': u'82', u'term_taxonomy_id': u'7', u'taxonomy': u'category', u'category_nicename': u'draw', u'slug': u'draw', u'description': u''}], u'name': u'notes-speech-for-nana', u'parent': u'0', u'title': u'Notes: Speech for Nana', u'url': u'http://artcontrol.me/?p=8', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'Nana is one of the most special people in my life. When I was a baby she looked after me and in her old age I spent time looking after her. I will really miss her.\n\nI have', u'modified': u'2012-09-01 23:04:48', u'slug': u'Notes: Speech for Nana', u'comment_count': u'0', u'tag': [], u'date': u'2011-07-24 20:43:06', u'type': u'post', u'id': u'8', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'82', u'name': u'draw', u'parent': u'0', u'term_id': u'7', u'cat_ID': u'7', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'draw', u'category_count': u'82', u'term_taxonomy_id': u'7', u'taxonomy': u'category', u'category_nicename': u'draw', u'slug': u'draw', u'description': u''}], u'name': u'hello-world-2', u'parent': u'0', u'title': u'Hello world!', u'url': u'http://artcontrol.me/?p=1', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'Welcome to WordPress. This is your first post. Edit or delete it, then start', u'modified': u'2012-09-01 23:04:48', u'slug': u'Hello world!', u'comment_count': u'1', u'tag': [], u'date': u'2011-07-19 10:36:18', u'type': u'post', u'id': u'5', u'comment_status': u'open'}, {u'status': u'publish', u'category': [{u'term_group': u'0', u'count': u'82', u'name': u'draw', u'parent': u'0', u'term_id': u'7', u'cat_ID': u'7', u'category_description': u'', u'category_parent': u'0', u'cat_name': u'draw', u'category_count': u'82', u'term_taxonomy_id': u'7', u'taxonomy': u'category', u'category_nicename': u'draw', u'slug': u'draw', u'description': u''}], u'name': u'hello-world', u'parent': u'0', u'title': u'Hello world!', u'url': u'http://artcontrol.me/?p=1', u'author': [{u'first_name': u'Will', u'last_name': u'mckee', u'name': u'Will', u'nicename': u'wmckee', u'url': u'', u'slug': u'wmckee', u'gravatar': u'http://www.gravatar.com/avatar/5e2931ce807064cea9fc263f5346ad86?s=100&d=mm&r=g', u'id': u'1', u'description': u''}], u'excerpt': u'Welcome to WordPress. This is your first post. Edit or delete it, then start', u'modified': u'2012-09-01 23:04:34', u'slug': u'Hello world!', u'comment_count': u'1', u'tag': [], u'date': u'2012-03-06 21:26:20', u'type': u'post', u'id': u'1', u'comment_status': u'open'}], u'count_total': 254, u'pages': 1}
In [27]:
print titArtpoArt = jsnArt['posts']
titArt = poArt[0]
print titArt
File "<ipython-input-27-8a1b71433389>", line 1
print titArtpoArt = jsnArt['posts']
^
SyntaxError: invalid syntax
In [ ]:
yaeArt = len(titArt)
print yaeArt
How can I get these 16 results in a list?
After some thought I just made a list manually. This needs to be fixed to auto collect these items
In [34]:
lipArt = ('name','parent','title','url','author','excerpt','slug','comment_count','tag',
'date','type','page','id','comment_status')
In [35]:
print lipArt
('name', 'parent', 'title', 'url', 'author', 'excerpt', 'slug', 'comment_count', 'tag', 'date', 'type', 'page', 'id', 'comment_status')
In [36]:
contArt = len(lipArt)
In [37]:
print contArt
14
In [38]:
randArt = random.randint(0,14)
In [39]:
jerArt = lipArt[randArt]
print jerArt
type
In [40]:
repArt = titArt[jerArt]
print repArt
---------------------------------------------------------------------------
NameError Traceback (most recent call last)
<ipython-input-40-5dfb3996cf58> in <module>()
----> 1 repArt = titArt[jerArt]
2 print repArt
NameError: name 'titArt' is not defined
In [41]:
titleArt = titArt['title']
print titleArt
---------------------------------------------------------------------------
NameError Traceback (most recent call last)
<ipython-input-41-aa3336836259> in <module>()
----> 1 titleArt = titArt['title']
2 print titleArt
NameError: name 'titArt' is not defined
In [42]:
extrArt = titArt['excerpt']
print extrArt
---------------------------------------------------------------------------
NameError Traceback (most recent call last)
<ipython-input-42-9c75993f7501> in <module>()
----> 1 extrArt = titArt['excerpt']
2 print extrArt
NameError: name 'titArt' is not defined
In [43]:
dateArt = titArt['date']
print dateArt
---------------------------------------------------------------------------
NameError Traceback (most recent call last)
<ipython-input-43-8ebd958c499e> in <module>()
----> 1 dateArt = titArt['date']
2 print dateArt
NameError: name 'titArt' is not defined
In [43]:
In [ ]:
In [10]:
In [ ]:
Content source: wcmckee/wirepil
Similar notebooks: