<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/atom10full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><feed xmlns="http://www.w3.org/2005/Atom" xmlns:openSearch="http://a9.com/-/spec/opensearch/1.1/" xmlns:georss="http://www.georss.org/georss" xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr="http://purl.org/syndication/thread/1.0" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" gd:etag="W/&quot;DkUHRXk5fSp7ImA9WhRUFUk.&quot;"><id>tag:blogger.com,1999:blog-4760496223870876615</id><updated>2012-01-25T18:17:14.725-08:00</updated><category term="reduce load time" /><category term="increase speed" /><category term="blogger" /><category term="custom" /><category term="adsense" /><category term="blogspot" /><category term="script" /><category term="external css" /><category term="how to" /><category term="hide navbar" /><category term="hide menu" /><category term="template" /><category term="customizing" /><category term="google" /><category term="faster" /><title>Eastfist Art</title><subtitle type="html" /><link rel="http://schemas.google.com/g/2005#feed" type="application/atom+xml" href="http://eastfist.blogspot.com/feeds/posts/default" /><link rel="alternate" type="text/html" href="http://eastfist.blogspot.com/" /><author><name>eastfist</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="21" height="32" src="http://4.bp.blogspot.com/-oUgfl2V56oE/TxUKJdEfUbI/AAAAAAAAAMk/t5z9KtK6kDM/s220/youngstud2.jpg" /></author><generator version="7.00" uri="http://www.blogger.com">Blogger</generator><openSearch:totalResults>20</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/atom+xml" href="http://feeds.feedburner.com/EastfistArt" /><feedburner:info uri="eastfistart" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><entry gd:etag="W/&quot;DE4MR3c4fyp7ImA9WhZbE04.&quot;"><id>tag:blogger.com,1999:blog-4760496223870876615.post-374568018684175324</id><published>2011-06-17T11:56:00.000-07:00</published><updated>2011-06-17T11:56:26.937-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-06-17T11:56:26.937-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="reduce load time" /><category scheme="http://www.blogger.com/atom/ns#" term="adsense" /><category scheme="http://www.blogger.com/atom/ns#" term="how to" /><category scheme="http://www.blogger.com/atom/ns#" term="faster" /><category scheme="http://www.blogger.com/atom/ns#" term="increase speed" /><category scheme="http://www.blogger.com/atom/ns#" term="google" /><title>How to delay Google Adsense loading until webpage loads first</title><content type="html">If you're an AdSense publisher like myself, you'll probably notice how sluggish the ads can load. &amp;nbsp;You want to make that revenue, but sometime users will be turned off when they don't see a page that is responsive or worse, they disable your ads preventing you from cashing in. &amp;nbsp;So you, as the publisher, have to do your bestest part so that there is a trade-off and hopefully visitors will keep the advertisers happy and you get paid. &amp;nbsp;Here's a method to perceivably speed up the download speed of Google AdSense ads and your webpages:&lt;br /&gt;
&lt;a name='more'&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Ideally, basic placement of those dang AdSense ads should load just fine if it were one ad. &amp;nbsp;But that's not how HTML documents load. &amp;nbsp;Like most compiled languages, it's interpreted line by line. &amp;nbsp;An entire HTML page has to be interpreted before anything is rendered out, meaning if you put a gigando AdSense ad at the beginning of an HTML doc, you'll be seeing a blank page for as long as it loads. &amp;nbsp;Those first 5 to 10 seconds are precious as it determines whether or not the user finds your page "friendly". &amp;nbsp;A user returning to your site is something else, but at the least the user can say, "Wow, this site charges like a bull in heat during mating season."&lt;br /&gt;
&lt;br /&gt;
So, that's my strategy. &amp;nbsp;Load the dang ads at the END of the document. &amp;nbsp;Here's how:&lt;br /&gt;
&lt;br /&gt;
&lt;blockquote&gt;&lt;code&gt;&lt;br /&gt;
&amp;lt;html&amp;gt;&lt;br /&gt;
...&lt;br /&gt;
&amp;lt;body&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id="visibleAdSenseHolder"&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- your content --&amp;gt;&lt;br /&gt;
&amp;lt;div id="hiddenAdSense" style="display:none;"&amp;gt;&lt;br /&gt;
&amp;lt;!-- adsense code --&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;script type="text/javascript"&amp;gt;&lt;br /&gt;
&amp;nbsp; function swapAdSense(){&lt;br /&gt;
&amp;nbsp; &amp;nbsp; var destinationDiv = document.getElementById("visibleAdSenseHolder");&lt;br /&gt;
&amp;nbsp; &amp;nbsp; var sourceDiv = document.getElementById("hiddenAdSense");&lt;br /&gt;
&amp;nbsp; &amp;nbsp; destinationDiv.innerHTML = sourceDiv.innerHTML;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; sourceDiv.innerHTML = "";&lt;br /&gt;
&amp;nbsp; }&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/body&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;/code&gt;&lt;/blockquote&gt;Things to notice:&lt;br /&gt;
&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;In the div "visibleAdSenseHolder", notice that it is empty. &amp;nbsp;You need to define the width and height of the holder, but it is empty so it draws the space right away rather than later. &amp;nbsp;You don't want the entire page to shift/redraw when the ad is transferred into the div. &amp;nbsp;Drawing cycles eat cpu, son.&lt;/li&gt;
&lt;li&gt;The hidden div "hiddenAdSense" will contain your actual AdSense pre-generated code. &amp;nbsp;However, notice that it's style is set so that it isn't visible. &amp;nbsp;The ad is still gathered, but it isn't drawn, which doesn't save much computing but at the least any rendering is delayed.&lt;/li&gt;
&lt;li&gt;The javascript code basically does what we programmers learned in Intro to whatever programming language and that is how to do a basic ABC variable swap. &amp;nbsp;The concept being you want to swap out A and C without losing any of their values, so you'll need a placeholder which is B. &amp;nbsp;In this particular case, we already have B filled. &amp;nbsp;We're just copying it to A or C. &amp;nbsp;The foundation of the swap is in that concept.&lt;br /&gt;
&lt;br /&gt;
ALSO, notice that I empty the source div at the end of the function. &amp;nbsp;You must do this otherwise there will be two instances of this ad on the page and Google AdSense won't like this as they limit the number of ads you can have. &amp;nbsp;I've noticed horrible performance with no ads showing at all until I optimized my function. &amp;nbsp;Imagine that you copied the value of B to A and you didn't empty B, then there would be A and B ads on your page, which is redundant. &amp;nbsp;Therefore, assuming the value of B was safely copied to A, you can remove the value of B, freeing up that space (and the code wouldn't be interpreted after the function executes).&lt;/li&gt;
&lt;/ul&gt;&lt;div&gt;That's basically it. &amp;nbsp;You just need to do this for every ad you place. &amp;nbsp;Theoretically, it's loading the same amount of info, but you will notice a slight perceivable load speed.&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4760496223870876615-374568018684175324?l=eastfist.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/oY1ot5PDV0p5z-S0f5Hwwwot_d8/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/oY1ot5PDV0p5z-S0f5Hwwwot_d8/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/oY1ot5PDV0p5z-S0f5Hwwwot_d8/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/oY1ot5PDV0p5z-S0f5Hwwwot_d8/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/EastfistArt/~4/KsJriE7AvuA" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://eastfist.blogspot.com/feeds/374568018684175324/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://eastfist.blogspot.com/2011/06/how-to-delay-google-adsense-loading.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4760496223870876615/posts/default/374568018684175324?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4760496223870876615/posts/default/374568018684175324?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/EastfistArt/~3/KsJriE7AvuA/how-to-delay-google-adsense-loading.html" title="How to delay Google Adsense loading until webpage loads first" /><author><name>eastfist</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="21" height="32" src="http://4.bp.blogspot.com/-oUgfl2V56oE/TxUKJdEfUbI/AAAAAAAAAMk/t5z9KtK6kDM/s220/youngstud2.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://eastfist.blogspot.com/2011/06/how-to-delay-google-adsense-loading.html</feedburner:origLink></entry><entry gd:etag="W/&quot;Ak4FQH44eyp7ImA9WhZbEkw.&quot;"><id>tag:blogger.com,1999:blog-4760496223870876615.post-6870718855503839494</id><published>2011-06-16T03:05:00.000-07:00</published><updated>2011-06-16T03:08:31.033-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-06-16T03:08:31.033-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="custom" /><category scheme="http://www.blogger.com/atom/ns#" term="blogger" /><category scheme="http://www.blogger.com/atom/ns#" term="hide navbar" /><category scheme="http://www.blogger.com/atom/ns#" term="hide menu" /><category scheme="http://www.blogger.com/atom/ns#" term="template" /><category scheme="http://www.blogger.com/atom/ns#" term="external css" /><category scheme="http://www.blogger.com/atom/ns#" term="blogspot" /><category scheme="http://www.blogger.com/atom/ns#" term="customizing" /><category scheme="http://www.blogger.com/atom/ns#" term="script" /><title>Customizing your Blogger/Blogspot template: A foundation</title><content type="html">&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;I don't want to go into the details of customizing your personal Blogger template, but like most default templates, it comes with the same elements and each element can be customized. &amp;nbsp;For the most part, when you're customizing your template, you're adding or removing these elements. &amp;nbsp;Blogger likes to call them "widgets". &amp;nbsp;By objectifying each element as a widget, Google's development team is better able to sort out all the clutter between their implementations, third-party implements, and of course, standards implementations.&lt;/div&gt;&lt;a name='more'&gt;&lt;/a&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;First and foremost, if you really want to dive into customizing your Blogger template, you need to get familiar with working with script or code. &amp;nbsp;When you take a look at Blogger's beastily template, you might be scared off and not want to throw a wrench into things. &amp;nbsp;However, it will be quite worth it if you do trial-and-error tests on your own just to see which parts of code displays which elements. &amp;nbsp;Of course, it's easier to use the template editor and enable/disable the widgets, but if you really want to see how things work, you need to get inside the code. &amp;nbsp;However, if you do approach it with trial-and-error, I advise you to do so when you first open your account. &amp;nbsp;You can't open a dummy account and play with it that way, so work it out before you finalize your design. &amp;nbsp;Also, it doesn't hurt to backup your changes by exporting the template or simply copying the source into a text file.&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;h2&gt;Adding/Removing Widgets and other Blogger Page Elements&lt;/h2&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;You can add or remove widgets and other Blogger page elements by going to your Dashboard &amp;gt; Design &amp;gt; Page Elements. &amp;nbsp;You get a visual representation of your layout. &amp;nbsp;There you can click Edit on each of the elements and edit them.&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;h2&gt;Customizing the inline stylesheet&lt;/h2&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;Everything you need to change the way your template looks is within these tags found in the &amp;lt;head&amp;gt; section:&lt;/div&gt;&lt;blockquote&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;code&gt;&lt;b&gt;&amp;lt;b:skin&amp;gt;&amp;lt;![CDATA[&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: monospace;"&gt;&lt;i&gt;Blogger's default css is found here, therefore you can put your custom styling here&lt;/i&gt;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;]]&amp;gt;&amp;lt;/b:skin&amp;gt;&lt;/b&gt;&lt;/code&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;h2&gt;Implementing External Stylesheet&lt;/h2&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;Sometimes, the inline stylesheet gets really inflated and will slow the downloading time. &amp;nbsp;Technically, users are downloading approximately the same amount of data. &amp;nbsp;But in order to have a more perceptively better download, moving that novella of an inline stylesheet into an external one is the best practice.&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;Copy the same &amp;nbsp;styling from before WITHOUT ALTERING BLOGGER'S B TAGS (which will throw their interpreter off). &amp;nbsp;Paste your custom styling into a text file and rename the extension to css.&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;You'll need to host that css file on a site that Blogger is friendly with, otherwise it won't work. &amp;nbsp;I suggest using another one of Google's services: Google sites. &amp;nbsp;Google owns Blogger, by the way.&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;Once you have your Google Sites account open, upload your css file as an "attachment" and reference to it from your Blogger template using a standard HTML &amp;lt;link&amp;gt; tag. &amp;nbsp;When you copy the css link, make sure you remove any additional url paramaters and just get the sole url of the file. &amp;nbsp;For example:&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;blockquote&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;i&gt;http://sites.google.com/site/eastfistart/eastfistBloggerCSS.css?attredirects=0&amp;amp;d=1&lt;/i&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;won't work so change it to:&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;blockquote&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;i&gt;http://sites.google.com/site/eastfistart/eastfistBloggerCSS.css&lt;/i&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;As proof, my own Blogger site is utilizing an external stylesheet. &amp;nbsp;Check out the source.&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;h2&gt;Hiding Blogger's default nav bar&lt;/h2&gt;&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;If you want to take advantage of the maximum browser window, you'll probably want to hide Blogger's nav bar. &amp;nbsp;Of course, I found it to be quite useful for on-the-spot logging in, accessing the dashboard or editing, but I don't find it aesthetic pleasing. &amp;nbsp;Hiding the nav bar is actually quite simple.&lt;br /&gt;
&lt;br /&gt;
You won't find a reference to the particular div id in the stylesheet, but all you have to do is make one, like so:&lt;br /&gt;
&lt;blockquote&gt;&lt;i&gt;#navbar{display:none;}&lt;/i&gt;&lt;/blockquote&gt;That's it. &amp;nbsp;Of course, be aware that if you create your own div named "navbar", it will conflict with Blogger's internal div of the same name. &amp;nbsp;The code is still generated, it just won't be displayed.&lt;br /&gt;
&lt;br /&gt;
&lt;h2&gt;Creating homepage-only content&lt;/h2&gt;Coming soon...&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4760496223870876615-6870718855503839494?l=eastfist.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/9r2TFBUMlQZIaGX4UYj-eB1iBF0/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/9r2TFBUMlQZIaGX4UYj-eB1iBF0/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/9r2TFBUMlQZIaGX4UYj-eB1iBF0/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/9r2TFBUMlQZIaGX4UYj-eB1iBF0/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/EastfistArt/~4/xpOvvSa1Tu4" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://eastfist.blogspot.com/feeds/6870718855503839494/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://eastfist.blogspot.com/2011/06/customizing-your-bloggerblogspot.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4760496223870876615/posts/default/6870718855503839494?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4760496223870876615/posts/default/6870718855503839494?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/EastfistArt/~3/xpOvvSa1Tu4/customizing-your-bloggerblogspot.html" title="Customizing your Blogger/Blogspot template: A foundation" /><author><name>eastfist</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="21" height="32" src="http://4.bp.blogspot.com/-oUgfl2V56oE/TxUKJdEfUbI/AAAAAAAAAMk/t5z9KtK6kDM/s220/youngstud2.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://eastfist.blogspot.com/2011/06/customizing-your-bloggerblogspot.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C0UDSX48eyp7ImA9WhZSE0k.&quot;"><id>tag:blogger.com,1999:blog-4760496223870876615.post-6802841571547543443</id><published>2011-03-28T12:41:00.000-07:00</published><updated>2011-03-28T12:41:18.073-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-03-28T12:41:18.073-07:00</app:edited><title>Dark Knight Rises Bane Details and Characterization</title><content type="html">Tom Hardy is playing Bane in the upcoming Dark Knight Rises directed by Christopher Nolan. &amp;nbsp;Will he resemble a masked wrestler with a tube attached to the back of his head?&lt;br /&gt;
&lt;a name='more'&gt;&lt;/a&gt;Maybe. &amp;nbsp;Maybe not.&lt;br /&gt;
&lt;br /&gt;
Although, there might still be a chance that he might don a gimp mask. &amp;nbsp;Even the more recent Batman animated series has depicted Bane in BDSM style.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4760496223870876615-6802841571547543443?l=eastfist.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/U95V5ULpXBVJnDEGoaLLkUmY3lU/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/U95V5ULpXBVJnDEGoaLLkUmY3lU/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/U95V5ULpXBVJnDEGoaLLkUmY3lU/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/U95V5ULpXBVJnDEGoaLLkUmY3lU/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/EastfistArt/~4/llpXCPPBUW8" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://eastfist.blogspot.com/feeds/6802841571547543443/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://eastfist.blogspot.com/2011/03/dark-knight-rises-bane-details-and.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4760496223870876615/posts/default/6802841571547543443?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4760496223870876615/posts/default/6802841571547543443?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/EastfistArt/~3/llpXCPPBUW8/dark-knight-rises-bane-details-and.html" title="Dark Knight Rises Bane Details and Characterization" /><author><name>eastfist</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="21" height="32" src="http://4.bp.blogspot.com/-oUgfl2V56oE/TxUKJdEfUbI/AAAAAAAAAMk/t5z9KtK6kDM/s220/youngstud2.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://eastfist.blogspot.com/2011/03/dark-knight-rises-bane-details-and.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CEUBSHo9cCp7ImA9WhZTF00.&quot;"><id>tag:blogger.com,1999:blog-4760496223870876615.post-2698062967260126720</id><published>2011-03-21T03:10:00.000-07:00</published><updated>2011-03-21T03:10:59.468-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-03-21T03:10:59.468-07:00</app:edited><title>Maximizing Ad Revenue with Blogger/Blogspot</title><content type="html">As of today, March 21, 2011, Alexa.com lists as it's top 10 global websites:&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://www.alexa.com/topsites"&gt;http://www.alexa.com/topsites&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
1. Google&lt;br /&gt;
2. Facebook&lt;br /&gt;
3. YouTube&lt;br /&gt;
&lt;a name='more'&gt;&lt;/a&gt;&lt;br /&gt;
4.Yahoo!&lt;br /&gt;
5. Blogger&lt;br /&gt;
6. Windows Live&lt;br /&gt;
7. Baidu&lt;br /&gt;
8. Wikipedia&lt;br /&gt;
9. Twitter&lt;br /&gt;
10. QQ.com&lt;br /&gt;
&lt;br /&gt;
My main attention is focusing on #5, Blogger, being that they are hosting this blog. &amp;nbsp;If I wanted to maximize ad revenue, I should probably be blogging more here (shrug). &amp;nbsp;But it's a matter coming up with fresh content that people want to read or click on daily.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4760496223870876615-2698062967260126720?l=eastfist.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/E7KviLTyi7SSjTkcYukRjEiJeUU/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/E7KviLTyi7SSjTkcYukRjEiJeUU/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/E7KviLTyi7SSjTkcYukRjEiJeUU/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/E7KviLTyi7SSjTkcYukRjEiJeUU/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/EastfistArt/~4/9rvbg7JaF1c" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://eastfist.blogspot.com/feeds/2698062967260126720/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://eastfist.blogspot.com/2011/03/maximizing-ad-revenue-with.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4760496223870876615/posts/default/2698062967260126720?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4760496223870876615/posts/default/2698062967260126720?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/EastfistArt/~3/9rvbg7JaF1c/maximizing-ad-revenue-with.html" title="Maximizing Ad Revenue with Blogger/Blogspot" /><author><name>eastfist</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="21" height="32" src="http://4.bp.blogspot.com/-oUgfl2V56oE/TxUKJdEfUbI/AAAAAAAAAMk/t5z9KtK6kDM/s220/youngstud2.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://eastfist.blogspot.com/2011/03/maximizing-ad-revenue-with.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CEEFRHk-eSp7ImA9Wx9bE0w.&quot;"><id>tag:blogger.com,1999:blog-4760496223870876615.post-1691667869558901757</id><published>2011-02-21T10:22:00.000-08:00</published><updated>2011-02-21T10:23:35.751-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-02-21T10:23:35.751-08:00</app:edited><title>Nudity and sexual explicitness in video games</title><content type="html">By Chongchen Saelee&lt;br /&gt;
&lt;br /&gt;
Most adults would still consider video games a children's toy. &amp;nbsp;But it's not like developers aren't adapting to their aging audience. &amp;nbsp;With mature titles like &lt;i&gt;Heavy Rain&lt;/i&gt; and the upcoming &lt;i&gt;Duke Nukem Forever&lt;/i&gt;, the explicitness is there, but does it make the game any more mature in nature and not just something still targeted at juveniles?&lt;br /&gt;
&lt;a name='more'&gt;&lt;/a&gt;&amp;nbsp;The stigma hasn't changed. &amp;nbsp;Video games with nudity are like the newer American Pie straight-to-video movies: &amp;nbsp;supposedly adult characters in adult situations involving sex, drugs, alcohol, but nudity is used to sell it to teenagers. &amp;nbsp;One tell-tale sign is the lack of pubic hair on adult women, but that's a topic for another day.&lt;br /&gt;
&lt;br /&gt;
I haven't played the full version of Heavy Rain, only the demo, but I have to give the developers Quantic Dream credit for creating such a beautiful looking game. &amp;nbsp;The demo doesn't come with the nude scenes, but there are videos on the Internet for those who are curious. &amp;nbsp;Within the context of how the game's narrative plays out, imitating film, the main character takes a shower nude and later does a striptease as an undercover stripper.&lt;br /&gt;
&lt;br /&gt;
So given those two scenes, does it make the game more mature? &amp;nbsp;In my opinion, how it's presented is really mature, maybe even classy. &amp;nbsp;The context of the shower scene is not sexual, although gratuitous, but does help to sexualize the character in an otherwise incredibly gloomy setting. &amp;nbsp;Otherwise, when she later becomes an undercover stripper, the player won't find it credible that she could seduce the bad guy. &amp;nbsp;Ultimately, does Heavy Rain's usage of nudity change the stigma for video games? &amp;nbsp;Can we truly reference it as a "mature" game worthy of discussion? &amp;nbsp;Or is it merely used to sell itself as a mature game but still only target to teenagers?&lt;br /&gt;
&lt;br /&gt;
If nudity and sex are the main focus, then there is a market for that. &amp;nbsp;Sex games exist. &amp;nbsp;It just doesn't have the same production value as the big-budget, commercially marketed ones. &amp;nbsp;Granted, sex games are definitely not marketed towards teenagers. &amp;nbsp;Although, sometimes I question Japanese animated sex games.&lt;br /&gt;
&lt;br /&gt;
There was controversy with a hidden sex game in &lt;i&gt;Grand Theft Auto: San Andreas&lt;/i&gt; called Hot Coffee. &amp;nbsp;Of course, it was used in a satirical/comedic context, on homage to urban films.&lt;br /&gt;
&lt;br /&gt;
The Leisure Suit Larry games are well-known for its sexuality and nudity. &amp;nbsp;But the games are also very humorous.&lt;br /&gt;
&lt;br /&gt;
So does putting sex and nudity into video games make it any more mature? &amp;nbsp;It's possible. &amp;nbsp;In doing so from a retrospective, adult-like way, it might be mature. &amp;nbsp;However, that's on the developer's end, not the player.&lt;br /&gt;
&lt;br /&gt;
Ultimately, if video games want to be respected as serious adult media, there are many factors that still need to be worked on. &amp;nbsp;One, of course, is the introduction of sex and nudity but presented in a way that it's not exploitative. &amp;nbsp; That's not to say it's even needed at all.&lt;br /&gt;
&lt;br /&gt;
The day filmmakers start making references to video games on how to do sex and nudity is the day video games get their deserved recognition. &amp;nbsp;But first, let's see video games with anatomically correct modeling, and we'll see where it goes from there.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4760496223870876615-1691667869558901757?l=eastfist.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/1UPUu6VIRxMsU0yR1gqf9xvSWc8/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/1UPUu6VIRxMsU0yR1gqf9xvSWc8/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/1UPUu6VIRxMsU0yR1gqf9xvSWc8/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/1UPUu6VIRxMsU0yR1gqf9xvSWc8/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/EastfistArt/~4/uH2zNvrrN14" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://eastfist.blogspot.com/feeds/1691667869558901757/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://eastfist.blogspot.com/2011/02/nudity-and-sexual-explicitness-in-video.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4760496223870876615/posts/default/1691667869558901757?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4760496223870876615/posts/default/1691667869558901757?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/EastfistArt/~3/uH2zNvrrN14/nudity-and-sexual-explicitness-in-video.html" title="Nudity and sexual explicitness in video games" /><author><name>eastfist</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="21" height="32" src="http://4.bp.blogspot.com/-oUgfl2V56oE/TxUKJdEfUbI/AAAAAAAAAMk/t5z9KtK6kDM/s220/youngstud2.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://eastfist.blogspot.com/2011/02/nudity-and-sexual-explicitness-in-video.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DUUMQHk4eyp7ImA9Wx9TEEg.&quot;"><id>tag:blogger.com,1999:blog-4760496223870876615.post-5198583216839640546</id><published>2010-11-17T21:14:00.000-08:00</published><updated>2010-11-17T21:14:41.733-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-11-17T21:14:41.733-08:00</app:edited><title>Terry Richardson: A Real American Hero</title><content type="html">Dude get's a lot of flack (from prudes). &amp;nbsp; In the short run, he won't go down in history as a Picasso, Michaelango, or Warhol, but the reason he gets my respect is he represents what it means to be a free American.&lt;br /&gt;
&lt;a name='more'&gt;&lt;/a&gt;How many people can say they can do what Richardson does: taking candid pictures of exotic places, affluent culture, naked women, all the while making a living and getting into the history books? &amp;nbsp;Not many. &amp;nbsp;Some argue he's a hack and merely makes it because he is the son of a photographer. &amp;nbsp;If that were the case, he sure has a highly stylized and distinctive portfolio of work. &amp;nbsp;Isn't that the goal of any artist?&lt;br /&gt;
&lt;div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;How can you hate this guy:&lt;/div&gt;&lt;div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://s3.amazonaws.com/data.tumblr.com/ZtqLmyi9Lp2jz79u19UolIblo1_1280.jpg?AWSAccessKeyId=0RYTHV9YYQ4W5Q3HQMG2&amp;amp;Expires=1290143320&amp;amp;Signature=YCyN%2BH0zkzvH4yichpN9ybDt3Dk%3D" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="209" src="http://s3.amazonaws.com/data.tumblr.com/ZtqLmyi9Lp2jz79u19UolIblo1_1280.jpg?AWSAccessKeyId=0RYTHV9YYQ4W5Q3HQMG2&amp;amp;Expires=1290143320&amp;amp;Signature=YCyN%2BH0zkzvH4yichpN9ybDt3Dk%3D" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;&lt;a href="http://fuckyeahterryrichardson.tumblr.com/post/128963932"&gt;http://fuckyeahterryrichardson.tumblr.com/post/128963932&lt;/a&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;The guy looks like an "average joe" living the "high life". &amp;nbsp;That's something we "average joes" positively could look to for inspiration. &amp;nbsp;If the illusion is unattainable, at the least this guy provides a window into the culture. &amp;nbsp;How do the ending words of the film The Prestige go: &amp;nbsp;"Of course, you don't really want to know (how it works)... you want to be fooled."&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4760496223870876615-5198583216839640546?l=eastfist.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/q2l_IN0-XiXKhbnltEqBKS-HyNY/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/q2l_IN0-XiXKhbnltEqBKS-HyNY/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/q2l_IN0-XiXKhbnltEqBKS-HyNY/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/q2l_IN0-XiXKhbnltEqBKS-HyNY/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/EastfistArt/~4/QrV2kj_TCWs" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://eastfist.blogspot.com/feeds/5198583216839640546/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://eastfist.blogspot.com/2010/11/terry-richardson-real-american-hero.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4760496223870876615/posts/default/5198583216839640546?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4760496223870876615/posts/default/5198583216839640546?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/EastfistArt/~3/QrV2kj_TCWs/terry-richardson-real-american-hero.html" title="Terry Richardson: A Real American Hero" /><author><name>eastfist</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="21" height="32" src="http://4.bp.blogspot.com/-oUgfl2V56oE/TxUKJdEfUbI/AAAAAAAAAMk/t5z9KtK6kDM/s220/youngstud2.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://eastfist.blogspot.com/2010/11/terry-richardson-real-american-hero.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CUEDR3Yyeyp7ImA9Wx9aEUw.&quot;"><id>tag:blogger.com,1999:blog-4760496223870876615.post-4750269369276969246</id><published>2010-11-15T23:19:00.000-08:00</published><updated>2011-03-02T16:54:36.893-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-03-02T16:54:36.893-08:00</app:edited><title>modelZILLA social networking site leader for internet models photographers and artist</title><content type="html">It's slowly, slowly getting built. &amp;nbsp;What I envision for modelzilla.com is ambitious, but practical. &amp;nbsp;I really cannot compete with big business. &amp;nbsp;I'm not setting out to make a myspace or facebook, heck, not even a modelmayhem. &lt;br /&gt;
&lt;a name='more'&gt;&lt;/a&gt;But, what I want to do is create a venue for artists and models to make some money and grasp an understanding of social dynamics. &amp;nbsp;Hopefully, I can make a little profit on the side as well.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://img.eastfist.com/modelzillaPromoPoster.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://img.eastfist.com/modelzillaPromoPoster.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;Sign up today at &lt;a href="http://www.modelzilla.com/"&gt;www.modelzilla.com&lt;/a&gt;! &amp;nbsp;It's free!&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4760496223870876615-4750269369276969246?l=eastfist.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/PTt9DS5qu5dOYgZz83oISdqwbIo/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/PTt9DS5qu5dOYgZz83oISdqwbIo/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/PTt9DS5qu5dOYgZz83oISdqwbIo/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/PTt9DS5qu5dOYgZz83oISdqwbIo/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/EastfistArt/~4/XSiceCKCLCI" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://eastfist.blogspot.com/feeds/4750269369276969246/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://eastfist.blogspot.com/2010/11/modelzilla-social-networking-site.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4760496223870876615/posts/default/4750269369276969246?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4760496223870876615/posts/default/4750269369276969246?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/EastfistArt/~3/XSiceCKCLCI/modelzilla-social-networking-site.html" title="modelZILLA social networking site leader for internet models photographers and artist" /><author><name>eastfist</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="21" height="32" src="http://4.bp.blogspot.com/-oUgfl2V56oE/TxUKJdEfUbI/AAAAAAAAAMk/t5z9KtK6kDM/s220/youngstud2.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://eastfist.blogspot.com/2010/11/modelzilla-social-networking-site.html</feedburner:origLink></entry><entry gd:etag="W/&quot;D0cFRnc6eCp7ImA9Wx5aEkU.&quot;"><id>tag:blogger.com,1999:blog-4760496223870876615.post-2379812311773409224</id><published>2010-11-08T22:43:00.000-08:00</published><updated>2010-11-08T22:43:37.910-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-11-08T22:43:37.910-08:00</app:edited><title>Not Safe For Work (NSFW) and 18+ Adult Content</title><content type="html">By Chongchen Saelee&lt;br /&gt;
&lt;br /&gt;
What a prolific Internet meme. &amp;nbsp;What does "not safe for work" really mean? &amp;nbsp;Do people browse the Internet all day from work? &amp;nbsp;Does that mean that people actually don't work when they're suppose to? &amp;nbsp;And all the while, they're looking up pornography. &amp;nbsp;My, how productive.&lt;br /&gt;
&lt;a name='more'&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
It's become the equivalent of the advisory label on music CDs or cover art. &amp;nbsp;It becomes part of the graphic design/marketing. &amp;nbsp;In the case of "not safe for work", it'll only be so effective in text searches. &amp;nbsp;Before NSFW, there was XXX. &amp;nbsp;It's not enough to have one X, but three X's means the content is extra dirty.&lt;br /&gt;
&lt;br /&gt;
I find it strange that when pornographers try to sell their smut that XXX is stamped across covers. &amp;nbsp;You would think it would be obvious with the big tits and spread pussy on the covers.&lt;br /&gt;
&lt;br /&gt;
There was this phenomenon, too, with the advent of DVDs when "uncensored director's cut" was slapped all over the covers. &amp;nbsp;It didn't really guarantee anything more raunchy, but that was the illusion.&lt;br /&gt;
&lt;br /&gt;
But maybe there's something exotic about the exclusivity of the meme. &amp;nbsp;Maybe people get tired of the practicality of "adult content" or even the word "sex". &amp;nbsp;It's not that people don't actively look those words up or that they don't want to be known looking them up. &amp;nbsp;Maybe it's thrilling to look up smut under some inconspicuity (is that a word?)&lt;br /&gt;
&lt;br /&gt;
It's like when a woman's panties come off and she has pubic hair that is neatly groomed and you wouldn't have known otherwise, assuming she was a shaver or cave bear. &amp;nbsp;An educated adult knows a woman has pubic hair, and should expect it there, but they don't want to just stare at those medical photos of aloof, homely women. &amp;nbsp;Even then, we want to pull the panties aside and take a peak. &amp;nbsp;What do we see behind the curtain of curtains?&lt;br /&gt;
&lt;br /&gt;
I wonder if putting NSFW as a keyword can conjure up any traffic as a spread pussy shot could. &amp;nbsp;Depends on how tempting the illusion of coveted explicitness is.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4760496223870876615-2379812311773409224?l=eastfist.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/NPJz7XRjURfKe3I9f47SGTL8_9s/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/NPJz7XRjURfKe3I9f47SGTL8_9s/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/NPJz7XRjURfKe3I9f47SGTL8_9s/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/NPJz7XRjURfKe3I9f47SGTL8_9s/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/EastfistArt/~4/hLWBaECxYws" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://eastfist.blogspot.com/feeds/2379812311773409224/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://eastfist.blogspot.com/2010/11/not-safe-for-work-nsfw-and-18-adult.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4760496223870876615/posts/default/2379812311773409224?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4760496223870876615/posts/default/2379812311773409224?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/EastfistArt/~3/hLWBaECxYws/not-safe-for-work-nsfw-and-18-adult.html" title="Not Safe For Work (NSFW) and 18+ Adult Content" /><author><name>eastfist</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="21" height="32" src="http://4.bp.blogspot.com/-oUgfl2V56oE/TxUKJdEfUbI/AAAAAAAAAMk/t5z9KtK6kDM/s220/youngstud2.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://eastfist.blogspot.com/2010/11/not-safe-for-work-nsfw-and-18-adult.html</feedburner:origLink></entry><entry gd:etag="W/&quot;Dk8GSXwzfCp7ImA9Wx5aEE0.&quot;"><id>tag:blogger.com,1999:blog-4760496223870876615.post-853314635104947630</id><published>2010-11-05T17:53:00.000-07:00</published><updated>2010-11-05T17:53:48.284-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-11-05T17:53:48.284-07:00</app:edited><title>Batman Dark Knight Rises Movie Film Rumors News Gossip</title><content type="html">By Chongchen Saelee&lt;br /&gt;
&lt;br /&gt;
What we know we know we know. &amp;nbsp;What we don't know, we know we don't know we know we know. &amp;nbsp;All in all, what can we expect from Batman Begins 3? &amp;nbsp;You can check out what I deduce so far at &lt;a href="http://blog.eastfist.com/2010/11/03/batman-dark-knight-rises-film-movie-news/"&gt;my other blog&lt;/a&gt;. &amp;nbsp;After scouring the vast interwebs, I think I've come to another conclusion that Tom Hardy is &lt;br /&gt;
&lt;a name='more'&gt;&lt;/a&gt;Jean Paul Valley, otherwise known as Azreal.&lt;br /&gt;
&lt;br /&gt;
I have a strong inclination that Aaron Eckhardt will return as Two-Face/Hush. &amp;nbsp;Since Bruce Wayne has gone into hiding as Batman, Jean Paul Valley takes over and really screws up the bat mantle. &amp;nbsp;Meanwhile, Two-Face terrorizes Gotham to the brink of chaos. &amp;nbsp;I think Azreal ultimately kills Two-Face (for real this time) and that leads to the final ultimate fist-to-cuff between him and Batman in a cavern near the batcave. &amp;nbsp;Some epic stuff.&lt;br /&gt;
&lt;br /&gt;
What do you guys think?&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4760496223870876615-853314635104947630?l=eastfist.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/cCcO7RnQv5SWkDCe-P0OWQC-ppw/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/cCcO7RnQv5SWkDCe-P0OWQC-ppw/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/cCcO7RnQv5SWkDCe-P0OWQC-ppw/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/cCcO7RnQv5SWkDCe-P0OWQC-ppw/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/EastfistArt/~4/BdtdHI_L5yA" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://eastfist.blogspot.com/feeds/853314635104947630/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://eastfist.blogspot.com/2010/11/batman-dark-knight-rises-movie-film.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4760496223870876615/posts/default/853314635104947630?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4760496223870876615/posts/default/853314635104947630?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/EastfistArt/~3/BdtdHI_L5yA/batman-dark-knight-rises-movie-film.html" title="Batman Dark Knight Rises Movie Film Rumors News Gossip" /><author><name>eastfist</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="21" height="32" src="http://4.bp.blogspot.com/-oUgfl2V56oE/TxUKJdEfUbI/AAAAAAAAAMk/t5z9KtK6kDM/s220/youngstud2.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://eastfist.blogspot.com/2010/11/batman-dark-knight-rises-movie-film.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C0MDSX84fSp7ImA9Wx5bGE4.&quot;"><id>tag:blogger.com,1999:blog-4760496223870876615.post-6699450452405226020</id><published>2010-11-03T17:43:00.000-07:00</published><updated>2010-11-03T17:44:38.135-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-11-03T17:44:38.135-07:00</app:edited><title>Perfecting your craft as an artist</title><content type="html">&lt;div class="separator" style="clear: both; text-align: left;"&gt;By Chongchen Saelee&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;Perfecting your craft is an arduous journey. &amp;nbsp;I'm only doing the Internet modeling thing until I can get a strong foundation on my filmmaking. &amp;nbsp;Finding and hiring Internet models is a tedious process and costly. &amp;nbsp;You also have to carry yourself like a business or independent company. &amp;nbsp;&lt;/div&gt;&lt;a name='more'&gt;&lt;/a&gt;You serve as recruiter, photographer, and post-processing/retoucher. &amp;nbsp;Of course, if you have a crew, you can divy up the chores, but to get one commercial-looking shot is still an entire production. &amp;nbsp;All in the name of "selling" subjective beauty.&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/_ZirRBWV7uCU/TNIAWCylmsI/AAAAAAAAADc/_5yFO9TG8V8/s1600/jem_MagV2_blur.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="200" src="http://4.bp.blogspot.com/_ZirRBWV7uCU/TNIAWCylmsI/AAAAAAAAADc/_5yFO9TG8V8/s200/jem_MagV2_blur.jpg" width="135" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4760496223870876615-6699450452405226020?l=eastfist.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/3heCr9UdddDGwPTUOB3y0M4A520/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/3heCr9UdddDGwPTUOB3y0M4A520/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/3heCr9UdddDGwPTUOB3y0M4A520/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/3heCr9UdddDGwPTUOB3y0M4A520/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/EastfistArt/~4/zbVN0qEKtLs" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://eastfist.blogspot.com/feeds/6699450452405226020/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://eastfist.blogspot.com/2010/11/perfecting-your-craft-as-artist.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4760496223870876615/posts/default/6699450452405226020?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4760496223870876615/posts/default/6699450452405226020?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/EastfistArt/~3/zbVN0qEKtLs/perfecting-your-craft-as-artist.html" title="Perfecting your craft as an artist" /><author><name>eastfist</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="21" height="32" src="http://4.bp.blogspot.com/-oUgfl2V56oE/TxUKJdEfUbI/AAAAAAAAAMk/t5z9KtK6kDM/s220/youngstud2.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://4.bp.blogspot.com/_ZirRBWV7uCU/TNIAWCylmsI/AAAAAAAAADc/_5yFO9TG8V8/s72-c/jem_MagV2_blur.jpg" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://eastfist.blogspot.com/2010/11/perfecting-your-craft-as-artist.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C0MNRH89fip7ImA9Wx5bGE4.&quot;"><id>tag:blogger.com,1999:blog-4760496223870876615.post-4776862707889951397</id><published>2010-10-31T14:29:00.000-07:00</published><updated>2010-11-03T17:44:55.166-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-11-03T17:44:55.166-07:00</app:edited><title>Refining your selection of nudes/images in your portfolio</title><content type="html">By Chongchen Saelee&lt;br /&gt;
&lt;br /&gt;
It's important to update your portfolio regularly. &amp;nbsp;If you're not shooting anything new, the least you could do is rotate your images or create new derivations. &amp;nbsp;My portfolio at www.modelmayhem.com/eastfist is always transforming.&lt;br /&gt;
&lt;br /&gt;
I'm still working on images from my first 2 shoots. &amp;nbsp;The main reason is that it costs a lot to set up a shoot. &amp;nbsp;The second reason is that it is practical to continue working on the images I already shot. &amp;nbsp;My images still can't compare to the sterile technicality of the DSLRs, but at least I can boast of originality.&lt;br /&gt;
&lt;br /&gt;
&lt;a name='more'&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Mainly, it's an on-going learning process. &amp;nbsp;I can compare what my images looked like a year ago to what I can do now. &amp;nbsp;It's amazing when you actually have time to sit down and focus on your craft instead of 10 minutes at a time or being to doggone tired after long hours at work to "have fun".&lt;br /&gt;
&lt;br /&gt;
If you want to permanently delete your images from blogspot, deleting it from your post isn't enough. &amp;nbsp;You need to sign into Google Picasaweb Album and do it from there. &amp;nbsp;Tedious.&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/_ZirRBWV7uCU/TM4au6l5KgI/AAAAAAAAAC4/NZeMS-6CMxc/s1600/glamourBW_sm.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="200" src="http://4.bp.blogspot.com/_ZirRBWV7uCU/TM4au6l5KgI/AAAAAAAAAC4/NZeMS-6CMxc/s200/glamourBW_sm.jpg" width="150" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4760496223870876615-4776862707889951397?l=eastfist.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/Syu7-xmg2hFxX43d2nLL63Ua_aU/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/Syu7-xmg2hFxX43d2nLL63Ua_aU/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/Syu7-xmg2hFxX43d2nLL63Ua_aU/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/Syu7-xmg2hFxX43d2nLL63Ua_aU/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/EastfistArt/~4/qQgVLliilxo" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://eastfist.blogspot.com/feeds/4776862707889951397/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://eastfist.blogspot.com/2010/10/refining-your-selection-of-nudesimages.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4760496223870876615/posts/default/4776862707889951397?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4760496223870876615/posts/default/4776862707889951397?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/EastfistArt/~3/qQgVLliilxo/refining-your-selection-of-nudesimages.html" title="Refining your selection of nudes/images in your portfolio" /><author><name>eastfist</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="21" height="32" src="http://4.bp.blogspot.com/-oUgfl2V56oE/TxUKJdEfUbI/AAAAAAAAAMk/t5z9KtK6kDM/s220/youngstud2.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://4.bp.blogspot.com/_ZirRBWV7uCU/TM4au6l5KgI/AAAAAAAAAC4/NZeMS-6CMxc/s72-c/glamourBW_sm.jpg" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://eastfist.blogspot.com/2010/10/refining-your-selection-of-nudesimages.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C0AHRH89eCp7ImA9Wx5QF0w.&quot;"><id>tag:blogger.com,1999:blog-4760496223870876615.post-540778318247339959</id><published>2010-08-28T22:13:00.000-07:00</published><updated>2010-09-05T11:35:35.160-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-09-05T11:35:35.160-07:00</app:edited><title>Million dollar nude female model butt</title><content type="html">By Chongchen Saelee&lt;br /&gt;
&lt;br /&gt;
I haven't posted anything in a while and have still been tweaking the same shots from my initial photo shoots with Jem from &lt;a href="http://www.jemmodel.com/"&gt;http://www.jemmodel.com/&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
I got some great shots, but some were better than others, particularly this one of Jem's tight bum&lt;br /&gt;
&lt;a name='more'&gt;&lt;/a&gt; (let's be honest, I Photoshopped it some).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/_ZirRBWV7uCU/THnrD-bDJmI/AAAAAAAAABQ/FJ4-NfaJYD8/s1600/jem_mirror4.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="200" ox="true" src="http://2.bp.blogspot.com/_ZirRBWV7uCU/THnrD-bDJmI/AAAAAAAAABQ/FJ4-NfaJYD8/s200/jem_mirror4.jpg" width="104" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;I was inspired by anime like "Ghost in the Shell" and "Aeon Flux" and wanted to make something cyber-punkish, seductive, icy.&amp;nbsp; The bluish photo filter makes it kinda sterile, or mechanical. The barcode is just playing around, to vary my watermark.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4760496223870876615-540778318247339959?l=eastfist.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/NBHU7KnA6cttVDJyfL2UOx2ek24/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/NBHU7KnA6cttVDJyfL2UOx2ek24/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/NBHU7KnA6cttVDJyfL2UOx2ek24/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/NBHU7KnA6cttVDJyfL2UOx2ek24/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/EastfistArt/~4/IvaKGpbtjoY" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://eastfist.blogspot.com/feeds/540778318247339959/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://eastfist.blogspot.com/2010/08/million-dollar-nude-female-model-butt.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4760496223870876615/posts/default/540778318247339959?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4760496223870876615/posts/default/540778318247339959?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/EastfistArt/~3/IvaKGpbtjoY/million-dollar-nude-female-model-butt.html" title="Million dollar nude female model butt" /><author><name>eastfist</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="21" height="32" src="http://4.bp.blogspot.com/-oUgfl2V56oE/TxUKJdEfUbI/AAAAAAAAAMk/t5z9KtK6kDM/s220/youngstud2.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://2.bp.blogspot.com/_ZirRBWV7uCU/THnrD-bDJmI/AAAAAAAAABQ/FJ4-NfaJYD8/s72-c/jem_mirror4.jpg" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://eastfist.blogspot.com/2010/08/million-dollar-nude-female-model-butt.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C0MAR3k9fCp7ImA9Wx5bFUs.&quot;"><id>tag:blogger.com,1999:blog-4760496223870876615.post-6522512264788444706</id><published>2010-03-18T10:54:00.000-07:00</published><updated>2010-10-31T14:44:06.764-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-10-31T14:44:06.764-07:00</app:edited><title>Filters in Photoshop that create gloss, wet, glistening skin on nude female model</title><content type="html">&lt;div style="border-bottom: medium none; border-left: medium none; border-right: medium none; border-top: medium none;"&gt;Update: 6/28/10 - Google has sent me a notice stating they have removed some of the links. However, some remain and I have yet to send another DMCA takedown notice for those. I would rather those actual webpages and owners be removed entirely from the net, but a no-listing in the world's prime search engine&amp;nbsp;is the next best thing. I'm just waiting for Google's indexing to update.&lt;br /&gt;
&lt;br /&gt;
Update: 3/25/10 - IT HAS COME TO MY ATTENTION THAT THIS ENTRY HAS BEEN STOLEN BY BLOG SCRAPERS. IF YOU SEE THIS POST AND IT IS NOT AT EASTFIST.BLOGSPOT.COM, THEN IT IS A STOLEN ENTRY. CURRENT VIOLATORS ARE:&lt;br /&gt;
&lt;a name='more'&gt;&lt;/a&gt;&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;&lt;strike&gt;http://elearnadobe.blog.com/2010/03/19/eastfist-art-filters-in-photoshop-which-create-gloss-wet/&lt;/strike&gt;&lt;/li&gt;
&lt;li&gt;&lt;strike&gt;http://fontsfreeadobe.blog.com/2010/03/19/eastfist-art-filters-in-photoshop-which-create-gloss-wet/&lt;/strike&gt;&lt;/li&gt;
&lt;li&gt;http://manualclays.blog.com/2010/03/19/eastfist-art-filters-in-photoshop-which-create-gloss-wet/&lt;/li&gt;
&lt;li&gt;http://manualclays.blog.com/?p=13&lt;/li&gt;
&lt;li&gt;http://theadobeshop2010.blog.com/?p=19&lt;/li&gt;
&lt;li&gt;&lt;strike&gt;http://freeadobeacrobats.blog.com/2010/03/19/eastfist-art-filters-in-photoshop-which-create-gloss-wet/&lt;/strike&gt;&lt;/li&gt;
&lt;li&gt;&lt;strike&gt;http://crackadobepage.blog.com/?p=13&lt;/strike&gt;&lt;/li&gt;
&lt;li&gt;http://crackadobepage.blog.com/2010/03/18/eastfist-art-filters-in-photoshop-which-cause-gloss-wet/&lt;/li&gt;
&lt;/ul&gt;&lt;br /&gt;
Most photo-choppers will try to moisten a nude female model's skin when the actual photo shoot wasn't.&amp;nbsp; In my spare time, I've been attempting just that.&amp;nbsp; There are tutorials on the Internet, but the fundamentals could probably be learned through observation. This is the result:&lt;/div&gt;&lt;div style="border-bottom: medium none; border-left: medium none; border-right: medium none; border-top: medium none;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="border-bottom: medium none; border-left: medium none; border-right: medium none; border-top: medium none; clear: both; text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;I'm not saying it's flawless, but I like the painterly look. I've always been better at painting than photographing.&amp;nbsp; To me, photography is a technical trade.&amp;nbsp; Anyone can learn to operate and therefore take a "perfect" picture.&amp;nbsp; But to be able to make the creative choices to compose a picture is something else.&lt;br /&gt;
&lt;br /&gt;
Copyright © 2010 Chongchen Saelee&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4760496223870876615-6522512264788444706?l=eastfist.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/Mbk1kk-WRaiH8c55gmvX91z70DQ/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/Mbk1kk-WRaiH8c55gmvX91z70DQ/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/Mbk1kk-WRaiH8c55gmvX91z70DQ/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/Mbk1kk-WRaiH8c55gmvX91z70DQ/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/EastfistArt/~4/zLUG99FKiOg" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://eastfist.blogspot.com/feeds/6522512264788444706/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://eastfist.blogspot.com/2010/03/filters-in-photoshop-that-create-gloss.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4760496223870876615/posts/default/6522512264788444706?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4760496223870876615/posts/default/6522512264788444706?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/EastfistArt/~3/zLUG99FKiOg/filters-in-photoshop-that-create-gloss.html" title="Filters in Photoshop that create gloss, wet, glistening skin on nude female model" /><author><name>eastfist</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="21" height="32" src="http://4.bp.blogspot.com/-oUgfl2V56oE/TxUKJdEfUbI/AAAAAAAAAMk/t5z9KtK6kDM/s220/youngstud2.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://eastfist.blogspot.com/2010/03/filters-in-photoshop-that-create-gloss.html</feedburner:origLink></entry><entry gd:etag="W/&quot;AkMCSHY6fyp7ImA9Wx5REko.&quot;"><id>tag:blogger.com,1999:blog-4760496223870876615.post-2928691801946814389</id><published>2010-03-03T20:48:00.000-08:00</published><updated>2010-08-19T21:27:49.817-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-08-19T21:27:49.817-07:00</app:edited><title>Photoshop and the Nude Female Model</title><content type="html">&lt;div style="border-bottom: medium none; border-left: medium none; border-right: medium none; border-top: medium none;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="border-bottom: medium none; border-left: medium none; border-right: medium none; border-top: medium none;"&gt;I'm still a practicing artist.&amp;nbsp; Photoshop can't do all the work for you, but you should already know the basics.&amp;nbsp; Here's a perfect example of how I&amp;nbsp;slapped together a quick concept piece.&amp;nbsp; To the untrained eye, it looks seamless.&amp;nbsp; But for the most part, the lighting is the key.&lt;br /&gt;
&lt;a name='more'&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;div class="separator" style="border-bottom: medium none; border-left: medium none; border-right: medium none; border-top: medium none; clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/_ZirRBWV7uCU/S4860-ydCwI/AAAAAAAAABA/SExZBYLEHf0/s1600-h/jem_ivyDiffusesm.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="200" kt="true" src="http://2.bp.blogspot.com/_ZirRBWV7uCU/S4860-ydCwI/AAAAAAAAABA/SExZBYLEHf0/s200/jem_ivyDiffusesm.jpg" width="146" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="border-bottom: medium none; border-left: medium none; border-right: medium none; border-top: medium none; clear: both; text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="border-bottom: medium none; border-left: medium none; border-right: medium none; border-top: medium none; clear: both; text-align: left;"&gt;&lt;br /&gt;
&lt;/div&gt;The source image of the female model is from a hotel room shoot with a main light coming in from a window.&amp;nbsp; If you learn anything from watching ILM featurettes on DVD, to make a composite seem unified, you need to match the original "plate".&amp;nbsp; So I tried to match the original image's lighting as much as possible.&lt;br /&gt;
&lt;br /&gt;
Copyright © 2010 Chongchen Saelee&lt;br /&gt;
eastfist.blogspot.com&lt;br /&gt;
&lt;br /&gt;
If this blog entry appears anywhere other than eastfist.blogspot.com, then it is stolen.&amp;nbsp; Please do not support these copyright violators by continuing to view their scraping blogs.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4760496223870876615-2928691801946814389?l=eastfist.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/fl4p5wWP5u-rGWplxjY9oYhdOD4/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/fl4p5wWP5u-rGWplxjY9oYhdOD4/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/fl4p5wWP5u-rGWplxjY9oYhdOD4/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/fl4p5wWP5u-rGWplxjY9oYhdOD4/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/EastfistArt/~4/tomWkpdIaS8" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://eastfist.blogspot.com/feeds/2928691801946814389/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://eastfist.blogspot.com/2010/03/photoshop-and-nude-female-model.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4760496223870876615/posts/default/2928691801946814389?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4760496223870876615/posts/default/2928691801946814389?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/EastfistArt/~3/tomWkpdIaS8/photoshop-and-nude-female-model.html" title="Photoshop and the Nude Female Model" /><author><name>eastfist</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="21" height="32" src="http://4.bp.blogspot.com/-oUgfl2V56oE/TxUKJdEfUbI/AAAAAAAAAMk/t5z9KtK6kDM/s220/youngstud2.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://2.bp.blogspot.com/_ZirRBWV7uCU/S4860-ydCwI/AAAAAAAAABA/SExZBYLEHf0/s72-c/jem_ivyDiffusesm.jpg" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://eastfist.blogspot.com/2010/03/photoshop-and-nude-female-model.html</feedburner:origLink></entry><entry gd:etag="W/&quot;AkMNRXcyeip7ImA9Wx5REko.&quot;"><id>tag:blogger.com,1999:blog-4760496223870876615.post-7151136866342670984</id><published>2010-03-03T09:09:00.000-08:00</published><updated>2010-08-19T21:28:14.992-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-08-19T21:28:14.992-07:00</app:edited><title>How to Make Money From Blogging</title><content type="html">It seems the only way to generate passive revenue through the Internet is through automated services like sponsor ads.&amp;nbsp; There's Google Ad Sense, a partner of Blogspot (both owned by Google, of course) and a bunch of other services out there.&amp;nbsp; The reality is unless you are receiving a high volume of visitors, it won't amount to anything.&amp;nbsp; But there are always ways of improving your appeal.&lt;br /&gt;
&lt;a name='more'&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
I, personally, don't have a service that people seek and are willing to pay for.&amp;nbsp; Therefore, I don't have a high volume in visitors or paying customers, or returning paying&amp;nbsp;customers (which is the most important).&lt;br /&gt;
&lt;br /&gt;
Marketing is important.&amp;nbsp; But not having something to market other than "I have a blog" proves not to be lucrative.&amp;nbsp; That's one for the database.&amp;nbsp; LOL.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Copyright © 2010 Chongchen Saelee&lt;br /&gt;
eastfist.blogspot.com&lt;br /&gt;
&lt;br /&gt;
If this blog entry appears anywhere other than eastfist.blogspot.com, then it is stolen. Please do not support these copyright violators by continuing to view their scraping blogs.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4760496223870876615-7151136866342670984?l=eastfist.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/VnCF64FhAlba53_uEKcip8kz7IM/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/VnCF64FhAlba53_uEKcip8kz7IM/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/VnCF64FhAlba53_uEKcip8kz7IM/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/VnCF64FhAlba53_uEKcip8kz7IM/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/EastfistArt/~4/Y-0JpKm6OKc" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://eastfist.blogspot.com/feeds/7151136866342670984/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://eastfist.blogspot.com/2010/03/how-to-make-money-from-blogging.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4760496223870876615/posts/default/7151136866342670984?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4760496223870876615/posts/default/7151136866342670984?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/EastfistArt/~3/Y-0JpKm6OKc/how-to-make-money-from-blogging.html" title="How to Make Money From Blogging" /><author><name>eastfist</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="21" height="32" src="http://4.bp.blogspot.com/-oUgfl2V56oE/TxUKJdEfUbI/AAAAAAAAAMk/t5z9KtK6kDM/s220/youngstud2.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://eastfist.blogspot.com/2010/03/how-to-make-money-from-blogging.html</feedburner:origLink></entry><entry gd:etag="W/&quot;AkIGSXY9fip7ImA9Wx5REko.&quot;"><id>tag:blogger.com,1999:blog-4760496223870876615.post-961558632154145735</id><published>2010-03-01T21:49:00.000-08:00</published><updated>2010-08-19T21:28:48.866-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-08-19T21:28:48.866-07:00</app:edited><title>Sex, Drugs, Pornography, and Other Internet Pollutants</title><content type="html">Man, o, man, the Internet can be a resourceful place, but there's also a lot of shit out there.&amp;nbsp; It's uncontested that the main purpose the Internet thrived as it did wasn't because of its original intent for military communication, but because the technicians that built the foundation needed their porn.&amp;nbsp; I'm sure there's still a copy of the first scanned and digitized copy of a Playboy centerfold floating out there in cyberspace.&lt;br /&gt;
&lt;a name='more'&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
If that don't buy you over as why the Internet is&amp;nbsp;what it is, then take an&amp;nbsp;eyeful of spread pussy, pulsating cocks, and other types of unwanted spam ads on a normal browsing session&amp;nbsp;with a tame keyword search such as "flower".&lt;br /&gt;
&lt;br /&gt;
However, it's not such a bad thing to have pornography so accessible.&amp;nbsp; It's because the world has become heavily influenced by Christian fundamentalism where sex is taboo.&amp;nbsp; Of course, those going against the Christian grain are going to feel liberated by producing and consuming what they can't have.&amp;nbsp; But to be fair, it's not just Christians; there are other fundamentalists out there.&amp;nbsp; The primal reason is to not overpopulate because humans are some dumb-ass animals who fuck too much and don't think straight.&lt;br /&gt;
&lt;br /&gt;
Of course, now I'm gone git to the main point.&amp;nbsp; The main point is although there is an abundance of sexually-oriented, adult content on the Internet, users have to understand when too much (of anything)&amp;nbsp;can be become a bad thing.&lt;br /&gt;
&lt;br /&gt;
For the most part, the Internet is cluttered with lots of crap.&amp;nbsp; It's crap porn, crap info, real crap porn (yes, of the scatological kind), anything anyone can think of even though it doesn't contribute to the bettering of society, it will be on the Internet.&lt;br /&gt;
&lt;br /&gt;
If you truly want to behold the cesspool that is the Internet, check out 4chan.org or urbandictionary.com.&amp;nbsp; You'll learn quickly how the minds of the modern cyber-addicted troll function.&amp;nbsp; Even with that much sex and filth on the Internet, you'd think we'd all be content with all our human needs.&amp;nbsp; That would make us well-rounded human beings.&lt;br /&gt;
&lt;br /&gt;
But I think what really drives trolls, whom ultimately drive the Internet, is their lack of free will and lust for power.&amp;nbsp; If sex doesn't calm the savage troll, then surely a dark shadow of a bridge isn't going to satisfy their needs.&amp;nbsp; If a good pussy pic doesn't get a troll off, stay away when he pulls out his club.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Copyright © 2010 Chongchen Saelee&lt;br /&gt;
eastfist.blogspot.com&lt;br /&gt;
If this blog entry appears anywhere other than eastfist.blogspot.com, then it is stolen. Please do not support these copyright violators by continuing to view their scraping blogs.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4760496223870876615-961558632154145735?l=eastfist.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/peHSqg_cKJND6ieLjktb7EiGsaA/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/peHSqg_cKJND6ieLjktb7EiGsaA/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/peHSqg_cKJND6ieLjktb7EiGsaA/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/peHSqg_cKJND6ieLjktb7EiGsaA/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/EastfistArt/~4/NGiI3hoFbDk" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://eastfist.blogspot.com/feeds/961558632154145735/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://eastfist.blogspot.com/2010/03/sex-drugs-pornography-and-other.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4760496223870876615/posts/default/961558632154145735?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4760496223870876615/posts/default/961558632154145735?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/EastfistArt/~3/NGiI3hoFbDk/sex-drugs-pornography-and-other.html" title="Sex, Drugs, Pornography, and Other Internet Pollutants" /><author><name>eastfist</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="21" height="32" src="http://4.bp.blogspot.com/-oUgfl2V56oE/TxUKJdEfUbI/AAAAAAAAAMk/t5z9KtK6kDM/s220/youngstud2.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://eastfist.blogspot.com/2010/03/sex-drugs-pornography-and-other.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DEAFQng-eip7ImA9WxBaFUs.&quot;"><id>tag:blogger.com,1999:blog-4760496223870876615.post-6262787507381794981</id><published>2010-02-22T20:49:00.000-08:00</published><updated>2010-03-25T18:25:13.652-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-03-25T18:25:13.652-07:00</app:edited><title>Who defined photo retouching criteria?</title><content type="html">It just dawned on me that the current standard of retouching a model in a photo until she looks like a mannequin might be because of the nature of the beast.&amp;nbsp; Long in the history of print, photos have to look their best, but reproduced efficiently, which means without oversoaking the paper with inks.&lt;br /&gt;
&lt;br /&gt;
So, if my theory is correct, models that have acne and dirt on their face means that splotches of black ink has to be applied on the paper, and if that sucker bleeds in with the other dyes... well, then that doesn't make a pretty picture.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Copyright © 2010 Chongchen Saelee&lt;br /&gt;
eastfist.blogspot.com&lt;br /&gt;
If this blog entry appears anywhere other than eastfist.blogspot.com, then it is stolen. Please do not support these copyright violators by continuing to view their scraping blogs.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4760496223870876615-6262787507381794981?l=eastfist.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/-FPp4as1OdnrgXS9hgpFNlPcCZE/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/-FPp4as1OdnrgXS9hgpFNlPcCZE/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/-FPp4as1OdnrgXS9hgpFNlPcCZE/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/-FPp4as1OdnrgXS9hgpFNlPcCZE/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/EastfistArt/~4/em8EVGMQtgg" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://eastfist.blogspot.com/feeds/6262787507381794981/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://eastfist.blogspot.com/2010/02/who-defined-photo-retouching-criteria.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4760496223870876615/posts/default/6262787507381794981?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4760496223870876615/posts/default/6262787507381794981?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/EastfistArt/~3/em8EVGMQtgg/who-defined-photo-retouching-criteria.html" title="Who defined photo retouching criteria?" /><author><name>eastfist</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="21" height="32" src="http://4.bp.blogspot.com/-oUgfl2V56oE/TxUKJdEfUbI/AAAAAAAAAMk/t5z9KtK6kDM/s220/youngstud2.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://eastfist.blogspot.com/2010/02/who-defined-photo-retouching-criteria.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C0MMQXo9eip7ImA9Wx5bFUs.&quot;"><id>tag:blogger.com,1999:blog-4760496223870876615.post-3448491401947249808</id><published>2010-01-26T16:36:00.000-08:00</published><updated>2010-10-31T14:44:40.462-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-10-31T14:44:40.462-07:00</app:edited><title>The Incubus</title><content type="html">I just created this concept piece yesterday. The exercise was in compositing. If the subject, in this case my model Jem, was just there completely nude, I don't think it would be that interesting. &lt;br /&gt;
&lt;a name='more'&gt;&lt;/a&gt;Somehow, I wanted to wrap her with the shadows. And that's what the Incubus creature is suppose to be.&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;To view more of my work, visit my model-related portfolio at &lt;a href="http://www.modelmayhem.com/eastfist"&gt;www.modelmayhem.com/eastfist&lt;/a&gt; or my official website at &lt;a href="http://www.eastfist.com/"&gt;http://www.eastfist.com/&lt;/a&gt;.&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;Copyright © 2010 Chongchen Saelee&lt;/div&gt;eastfist.blogspot.com&lt;br /&gt;
If this blog entry appears anywhere other than eastfist.blogspot.com, then it is stolen. Please do not support these copyright violators by continuing to view their scraping blogs.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4760496223870876615-3448491401947249808?l=eastfist.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/9H5uf5c-q9F5jpWaRZ_sKNWqYuQ/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/9H5uf5c-q9F5jpWaRZ_sKNWqYuQ/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/9H5uf5c-q9F5jpWaRZ_sKNWqYuQ/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/9H5uf5c-q9F5jpWaRZ_sKNWqYuQ/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/EastfistArt/~4/VZaRW5oaQpE" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://eastfist.blogspot.com/feeds/3448491401947249808/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://eastfist.blogspot.com/2010/01/incubus.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4760496223870876615/posts/default/3448491401947249808?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4760496223870876615/posts/default/3448491401947249808?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/EastfistArt/~3/VZaRW5oaQpE/incubus.html" title="The Incubus" /><author><name>eastfist</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="21" height="32" src="http://4.bp.blogspot.com/-oUgfl2V56oE/TxUKJdEfUbI/AAAAAAAAAMk/t5z9KtK6kDM/s220/youngstud2.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://eastfist.blogspot.com/2010/01/incubus.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DEADQH05fyp7ImA9WxBaFUs.&quot;"><id>tag:blogger.com,1999:blog-4760496223870876615.post-8550675414430206159</id><published>2010-01-23T16:32:00.000-08:00</published><updated>2010-03-25T18:26:11.327-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-03-25T18:26:11.327-07:00</app:edited><title>Customizing the Blogger template</title><content type="html">Yowza. At least Wordpress is more human-readable than this. The parser isn't so nice, can't seem to get a simple 2 column deal going on using "float".&lt;br /&gt;
&lt;br /&gt;
But I do have to say that a nice black background color really makes a photograph stand out.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;UPDATE:&lt;/b&gt; Success! It seems I need to put a nested div tag into the mainWrapper with a float element. Now it fills the whole browser. Tested in IE and Firefox.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Copyright © 2010 Chongchen Saelee&lt;br /&gt;
eastfist.blogspot.com&lt;br /&gt;
If this blog entry appears anywhere other than eastfist.blogspot.com, then it is stolen. Please do not support these copyright violators by continuing to view their scraping blogs.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4760496223870876615-8550675414430206159?l=eastfist.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/kEdaNVK3qQPESSMjpl2kR4D5owQ/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/kEdaNVK3qQPESSMjpl2kR4D5owQ/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/kEdaNVK3qQPESSMjpl2kR4D5owQ/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/kEdaNVK3qQPESSMjpl2kR4D5owQ/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/EastfistArt/~4/sNv6XEkzza8" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://eastfist.blogspot.com/feeds/8550675414430206159/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://eastfist.blogspot.com/2010/01/customizing-blogger-template.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4760496223870876615/posts/default/8550675414430206159?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4760496223870876615/posts/default/8550675414430206159?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/EastfistArt/~3/sNv6XEkzza8/customizing-blogger-template.html" title="Customizing the Blogger template" /><author><name>eastfist</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="21" height="32" src="http://4.bp.blogspot.com/-oUgfl2V56oE/TxUKJdEfUbI/AAAAAAAAAMk/t5z9KtK6kDM/s220/youngstud2.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://eastfist.blogspot.com/2010/01/customizing-blogger-template.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C0MNQnw8cSp7ImA9Wx5bFUs.&quot;"><id>tag:blogger.com,1999:blog-4760496223870876615.post-3493591545095956047</id><published>2010-01-21T11:33:00.000-08:00</published><updated>2010-10-31T14:44:53.279-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-10-31T14:44:53.279-07:00</app:edited><title>Finding a venue for my artwork</title><content type="html">&lt;div&gt;Have done an exhaustive search for a host that allows adult-oriented content and Blogger.com (blogspot.com) seems to be a good choice. A mix of articles and portfolio.&lt;/div&gt;&lt;br /&gt;
&lt;div&gt;And so, I present to you, one experimental piece which I will call "Reclining Nude Smoker". I wanted it to be raw, gritty, edgy, and sexy.&lt;/div&gt;&lt;br /&gt;
&lt;div&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;You can view more of my work at &lt;a href="http://www.modelmayhem.com/eastfist"&gt;www.modelmayhem.com/eastfist&lt;/a&gt; or my official website at &lt;a href="http://www.eastfist.com/"&gt;http://www.eastfist.com/&lt;/a&gt;.&lt;/div&gt;&lt;div&gt;&lt;/div&gt;&lt;div&gt;&lt;/div&gt;&lt;div&gt;&lt;/div&gt;&lt;div&gt;Copyright © 2010 Chongchen Saelee&lt;br /&gt;
eastfist.blogspot.com&lt;br /&gt;
If this blog entry appears anywhere other than eastfist.blogspot.com, then it is stolen. Please do not support these copyright violators by continuing to view their scraping blogs.&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4760496223870876615-3493591545095956047?l=eastfist.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/KHBv2ylOHhvUSa7wyGYz4vpYTUw/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/KHBv2ylOHhvUSa7wyGYz4vpYTUw/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/KHBv2ylOHhvUSa7wyGYz4vpYTUw/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/KHBv2ylOHhvUSa7wyGYz4vpYTUw/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/EastfistArt/~4/NvnvjmWZWng" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://eastfist.blogspot.com/feeds/3493591545095956047/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://eastfist.blogspot.com/2010/01/finding-venue-for-my-artwork.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4760496223870876615/posts/default/3493591545095956047?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4760496223870876615/posts/default/3493591545095956047?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/EastfistArt/~3/NvnvjmWZWng/finding-venue-for-my-artwork.html" title="Finding a venue for my artwork" /><author><name>eastfist</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="21" height="32" src="http://4.bp.blogspot.com/-oUgfl2V56oE/TxUKJdEfUbI/AAAAAAAAAMk/t5z9KtK6kDM/s220/youngstud2.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://eastfist.blogspot.com/2010/01/finding-venue-for-my-artwork.html</feedburner:origLink></entry></feed>

