<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>PhotoDan</title>
	<atom:link href="http://www.photodan.com.au/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.photodan.com.au</link>
	<description>Fine analogue photography</description>
	<lastBuildDate>Sat, 11 Feb 2012 14:16:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>The Rise of Film</title>
		<link>http://www.photodan.com.au/2012/01/the-rise-of-film/</link>
		<comments>http://www.photodan.com.au/2012/01/the-rise-of-film/#comments</comments>
		<pubDate>Sun, 01 Jan 2012 07:09:02 +0000</pubDate>
		<dc:creator>Athiril</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Film]]></category>
		<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://www.photodan.com.au/?p=377</guid>
		<description><![CDATA[This year, I shall shoot more film, process more film, share more film images, help more people get into to film, write detailed articles about film, perform several nutty film experiments, modify some film, and make, my own god damn film.]]></description>
			<content:encoded><![CDATA[<p>This year,</p>
<p>I shall shoot more film, process more film, share more film images, help more people get into to film, write detailed articles about film, perform several nutty film experiments, modify some film, and make, my own god damn film.</p>
<p><a href="http://www.photodan.com.au/wp-content/uploads/2012/01/380909_10150483347457661_611887660_8507544_1999925297_n.jpg"><img class="aligncenter size-medium wp-image-378" title="380909_10150483347457661_611887660_8507544_1999925297_n" src="http://www.photodan.com.au/wp-content/uploads/2012/01/380909_10150483347457661_611887660_8507544_1999925297_n-300x225.jpg" alt="" width="300" height="225" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.photodan.com.au/2012/01/the-rise-of-film/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Scaling to aspect ratio with no cropping with ArtBoard WordPress Theme</title>
		<link>http://www.photodan.com.au/2011/10/scaling-to-aspect-ratio-with-no-cropping-with-artboard-wordpress-theme/</link>
		<comments>http://www.photodan.com.au/2011/10/scaling-to-aspect-ratio-with-no-cropping-with-artboard-wordpress-theme/#comments</comments>
		<pubDate>Thu, 06 Oct 2011 06:53:26 +0000</pubDate>
		<dc:creator>Athiril</dc:creator>
				<category><![CDATA[ArtBoard]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.photodan.com.au/?p=346</guid>
		<description><![CDATA[Instead of scaling to full width of the window and having massive cropping, I decided I wanted scaling images to preserve their aspect ratio without any cropping. The file you will need to edit for this is element-artboard.php Find the line //Image scale function, below it is a function called FullScreenBackground. You will need to [...]]]></description>
			<content:encoded><![CDATA[<p>Instead of scaling to full width of the window and having massive cropping, I decided I wanted scaling images to preserve their aspect ratio without any cropping.</p>
<p>The file you will need to edit for this is element-artboard.php</p>
<p>Find the line //Image scale function, below it is a function called FullScreenBackground.</p>
<p>You will need to modify this function, and that will do the trick.</p>
<p>First off , find the line</p>
<pre class="brush: jscript; light: true; title: ; notranslate">var winHeight=$(window).height();</pre>
<p>And change it to</p>
<pre class="brush: jscript; light: true; title: ; notranslate">var winHeight=$(window).height()-105; //adjust for bars</pre>
<p>The 105 pixel value is for the default top (both) and bottom bars, more or less from what I measured in photoshop off a screenshot. Previously had 132 pixels in there which included admin bar..</p>
<p>Next underneath the following two lines</p>
<pre class="brush: jscript; light: true; title: ; notranslate">
var picHeight = imageHeight / imageWidth;
var picWidth = imageWidth / imageHeight;</pre>
<p>Add the follow lines</p>
<pre class="brush: jscript; light: true; title: ; notranslate">
		//what we need to do is compare aspect ratios
		var imageAR = imageWidth / imageHeight;
		var winAR = winWidth / winHeight;

		if(imageAR&lt;winAR){
			var danWidth = (winHeight / imageHeight) * imageWidth;
			var danHeight = winHeight; //subtracted top and bottom bars already, if we did it here, image would not maintain aspect ratio.
		}else{
			var danWidth = winWidth;
			var danHeight = ((winWidth / imageWidth) * imageHeight);
		}
</pre>
<p>Change the following block</p>
<pre class="brush: jscript; light: true; title: ; notranslate">
		if($toolbar.data(&quot;imageViewMode&quot;)==&quot;full&quot;){ //fullscreen size image mode
			if ((winHeight / winWidth) &lt; picHeight) {
				$(theItem).attr(&quot;width&quot;,winWidth);
				$(theItem).attr(&quot;height&quot;,picHeight*winWidth);
			} else {
				$(theItem).attr(&quot;height&quot;,winHeight);
				$(theItem).attr(&quot;width&quot;,picWidth*winHeight);
			};
		} else { //normal size image mode
</pre>
<p>To</p>
<pre class="brush: jscript; light: true; title: ; notranslate">
if($toolbar.data(&quot;imageViewMode&quot;)==&quot;full&quot;){ //fullscreen size image mode
			$(theItem).attr(&quot;width&quot;,danWidth);
			$(theItem).attr(&quot;height&quot;,danHeight);
		} else { //normal size image mode
</pre>
<p>I&#8217;ve included the else statement in the quote, as otherwise it appears as if we were removing a closing bracket and leaving the if block open, but it is closed by the following else statement.</p>
<p>The last thing you&#8217;ll need to chnage is this</p>
<pre class="brush: jscript; light: true; title: ; notranslate">
		$(theItem).css(&quot;margin-left&quot;,(winWidth-$(theItem).width())/2);
		$(theItem).css(&quot;margin-top&quot;,((winHeight-$(theItem).height())/2));
</pre>
<p>To this</p>
<pre class="brush: jscript; light: true; title: ; notranslate">
		$(theItem).css(&quot;margin-left&quot;,(winWidth-$(theItem).width())/2);
		$(theItem).css(&quot;margin-top&quot;,((winHeight-$(theItem).height())/2)+65);
</pre>
<p>And you&#8217;re done.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.photodan.com.au/2011/10/scaling-to-aspect-ratio-with-no-cropping-with-artboard-wordpress-theme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>More than one RSS feed per page with flickrRSS</title>
		<link>http://www.photodan.com.au/2011/10/more-than-one-rss-feed-per-page-with-flickrrss/</link>
		<comments>http://www.photodan.com.au/2011/10/more-than-one-rss-feed-per-page-with-flickrrss/#comments</comments>
		<pubDate>Thu, 06 Oct 2011 03:35:45 +0000</pubDate>
		<dc:creator>Athiril</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Flickr]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.photodan.com.au/?p=335</guid>
		<description><![CDATA[When using the flickrRSS plugin if you try to include more than one RSS feed on the same page/post etc (via PHP, which is your only choice iirc), it will error out saying you can&#8217;t redeclare such and such function again. The error (on v5.1 of the plugin) is on line 21 of the flickrrss.php [...]]]></description>
			<content:encoded><![CDATA[<p>When using the flickrRSS plugin if you try to include more than one RSS feed on the same page/post etc (via PHP, which is your only choice iirc), it will error out saying you can&#8217;t redeclare such and such function again.</p>
<p>The error (on v5.1 of the plugin) is on line 21 of the flickrrss.php file.</p>
<p>You need to change</p>
<pre class="brush: php; light: true; title: ; wrap-lines: false; notranslate">
function get_and_delete_option($setting) { $v = get_option($setting); delete_option($setting); return $v; }
</pre>
<p>to</p>
<pre class="brush: php; light: true; title: ; wrap-lines: true; notranslate">
if (function_exists('get_and_delete_option')==false){function get_and_delete_option($setting) { $v = get_option($setting); delete_option($setting); return $v; }}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.photodan.com.au/2011/10/more-than-one-rss-feed-per-page-with-flickrrss/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flickr staff locked my account after saying it was ok 24 hours prior.</title>
		<link>http://www.photodan.com.au/2011/09/flickr-staff-locked-my-account-after-saying-it-was-ok-24-hours-prior/</link>
		<comments>http://www.photodan.com.au/2011/09/flickr-staff-locked-my-account-after-saying-it-was-ok-24-hours-prior/#comments</comments>
		<pubDate>Wed, 28 Sep 2011 22:57:29 +0000</pubDate>
		<dc:creator>Athiril</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Censorship]]></category>
		<category><![CDATA[Flickr]]></category>
		<category><![CDATA[Photography]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.photodan.com.au/?p=222</guid>
		<description><![CDATA[A follow up to my blog post on flickr threatening to lock my account forever if I get restricted again that it would be restricted forever (it was their fault in the first place, since I got restricted for a rule not publicly disclosed). I did get follow up responses to my inquiries about it, all [...]]]></description>
			<content:encoded><![CDATA[<p>A follow up to my <a href="http://www.photodan.com.au/?p=207">blog post on flickr threatening to lock my account forever if I get restricted again</a> that it would be restricted forever (it was their fault in the first place, since I got restricted for a rule not publicly disclosed).</p>
<p>I did get follow up responses to my inquiries about it, all stating to follow the &#8220;pubic hair is restricted&#8221; guideline.</p>
<p><em>&#8220;You must follow the guidelines below at all times. If you feel you are not able to follow the guidelines, Flickr might not be a good website for your purposes. We have a limited amount of staff resources to keep going back and forth on this issue so this is the final E-mail response you will be receiving on this matter.&#8221;</em></p>
<p>They sure don&#8217;t like putting effort into doing things properly.. like having their actual rules publicly displayed, or actually responding to the content of messages, instead just regurgitating the same answer to a question I never asked. Or generating links to the offending images in automatic account restriction.</p>
<p>Anyway, onto the <em>main attraction;</em></p>
<p>Guess what happened now? After just over 24 hours of receiving this message:</p>
<p><em>&#8220;<strong>At present, all of your images are correctly moderated.</strong> You&#8217;re always welcome to add your thoughts about the Flickr guidelines to the Flickr ideas forum.&#8221;</em></p>
<p>&nbsp;</p>
<p>I get my account restricted, stating my images are in the wrong categories (again doesn&#8217;t state which images) &#8211; which means they are not correctly moderated (according to someone).</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>I just complained about it,  and got a response stating my account status has been set to safe from flickr staff.</p>
<p>&nbsp;</p>
<p><em>&#8220;Your account status is set as &#8220;safe&#8221;.&#8221;</em></p>
<p>&nbsp;</p>
<p>Still a bunch of wankers in my eyes.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<h1></h1>
]]></content:encoded>
			<wfw:commentRss>http://www.photodan.com.au/2011/09/flickr-staff-locked-my-account-after-saying-it-was-ok-24-hours-prior/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Now it&#8217;s Gary Rowan Higgins&#8217; turn</title>
		<link>http://www.photodan.com.au/2011/09/now-its-gary-rowan-higgins-turn/</link>
		<comments>http://www.photodan.com.au/2011/09/now-its-gary-rowan-higgins-turn/#comments</comments>
		<pubDate>Tue, 27 Sep 2011 09:50:30 +0000</pubDate>
		<dc:creator>Athiril</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://www.photodan.com.au/?p=215</guid>
		<description><![CDATA[People throwing personal attacks, insinuations, and other negatives at you over the internet or in real life when they don&#8217;t like you, or your work, or your photography for that matter isn&#8217;t all that uncommon and isn&#8217;t anything special enough to make a blog about. &#160; But every now and then, there is just that [...]]]></description>
			<content:encoded><![CDATA[<p>People throwing personal attacks, insinuations, and other negatives at you over the internet or in real life when they don&#8217;t like you, or your work, or your <em>photography </em>for that matter isn&#8217;t all that uncommon and isn&#8217;t anything special enough to make a blog about.</p>
<p>&nbsp;</p>
<p>But every now and then, there is just that special someone with that special sparkle to them that just takes the entire cake, and the smears it all over their face like a retarded fat kid.</p>
<p>&nbsp;</p>
<p>Given the drama I&#8217;ve had lately with people jumping at the chance to try and tear me a new one metaphorically speaking.. I have to wonder if it&#8217;s something I&#8217;m doing and I&#8217;m just imagining everything and that it&#8217;s all in my head. However at least in this case, I posted a forum thread on a topic about flickr and it&#8217;s rules, referring to <a href="http://www.photodan.com.au/?p=207">my flickr blog post where I got caught out by a rule not really in the guidelines</a> (&lt;&#8211; link to blog post, click if you want see what that&#8217;s about)(which I posted in order to tell others about the rule and to be more careful than just logically reading the guidelines).</p>
<p>The forum thread was about the topic about flickr and it&#8217;s rules and my experience with them as mentioned above, not an open invitation to come and criticise my work that I was talking about in the above link blog post.. honestly.</p>
<p>&nbsp;</p>
<p>It&#8217;s not hard to track down all of Gary&#8217;s personal information by googling him and other information associated with him, my advice to Gary would be not to be an outright wanker towards other people online when his information is readily available, especially in the same state within a relatively short distance away. While I don&#8217;t enough patience (or <em>enough</em> screws lose) to do more than in other words say &#8220;fuck off&#8221; and write a blog post about it, I&#8217;m betting other people do, knowing the diversity of people online that don&#8217;t normally get a chance to communicate with each other in person.</p>
<p>&nbsp;</p>
<p>Anyway, he calls himself <em>&#8220;Poisson Du Jour&#8221;</em> on APUG, you can read his autobiography on his flickr stream - <a href="http://www.flickr.com/people/silent-street/">http://www.flickr.com/people/silent-street/</a></p>
<p>&nbsp;</p>
<p>I don&#8217;t think I need to explain this one too much, other than my post above the dashed line is a play on his post, on the off chance he&#8217;ll see how someone else might see his post when it&#8217;s directed at him. Below the dashed line is a bit more serious. In one sweeping comment, this guy bugs me more than <em><a href="http://www.photodan.com.au/?p=137">The Brother&#8217;s Wright</a></em>. That&#8217;s a high concentration of condescending negativity right there to be possible, very impressive.</p>
<p>&nbsp;</p>
<p>Anyway, on with the screen shot (you&#8217;ll need to click to enlarge this one to make it readable given the layout of my blog I think)</p>
<p>&nbsp;</p>
<div id="attachment_216" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.photodan.com.au/wp-content/uploads/2011/09/poisson_du_jour.png"><img class="size-medium wp-image-216" title="Gary Rowan Higgins" src="http://www.photodan.com.au/wp-content/uploads/2011/09/poisson_du_jour-300x288.png" alt="" width="300" height="288" /></a>
<p class="wp-caption-text">Gary Rowan Higgins or &quot;Poisson Du Jour&quot; showing the highest concentrated levels of smug arrogance I&#39;ve ever detected.</p>
</div>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.photodan.com.au/2011/09/now-its-gary-rowan-higgins-turn/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flickr staff threatens to lock my account forever</title>
		<link>http://www.photodan.com.au/2011/09/flickr-staff-threatens-to-lock-my-account-forever/</link>
		<comments>http://www.photodan.com.au/2011/09/flickr-staff-threatens-to-lock-my-account-forever/#comments</comments>
		<pubDate>Sun, 25 Sep 2011 08:57:59 +0000</pubDate>
		<dc:creator>Athiril</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Censorship]]></category>
		<category><![CDATA[Flickr]]></category>
		<category><![CDATA[Nude]]></category>
		<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://www.photodan.com.au/?p=207</guid>
		<description><![CDATA[So the wise men at flickr decided they had enough of people getting away with following their guidelines, and decided to crack down on me, so that you cannot be sure if you are following the guidelines not. &#160; Flickr staff decided to lock my account and set it to restricted, they do not say [...]]]></description>
			<content:encoded><![CDATA[<p>So the wise men at flickr decided they had enough of people getting away with following their guidelines, and decided to crack down on me, so that you cannot be sure if you are following the guidelines not.</p>
<p>&nbsp;</p>
<p>Flickr staff decided to lock my account and set it to restricted, they do not say any reason <em>why </em>when they do this, at least not to me, so I am left scratching my head, I had thought I had content filtered all my nudes on flickr according to their guidelines listed at (<a href="http://www.flickr.com/help/filters/#258">http://www.flickr.com/help/filters/#258</a>). So of course I sigh and go into the organiser, load all the nude images I&#8217;ve got and reset the content filter incase it didn&#8217;t work when I uploaded them or I accidentally missed some.</p>
<p>After I did that I asked for a review of my account.</p>
<p>&nbsp;</p>
<p>This is the response I have gotten;</p>
<div id="attachment_208" class="wp-caption aligncenter" style="width: 446px"><a href="http://www.photodan.com.au/wp-content/uploads/2011/09/flickr_customer_care.png"><img class="size-full wp-image-208" title="Flickr Customer Care" src="http://www.photodan.com.au/wp-content/uploads/2011/09/flickr_customer_care.png" alt="" width="436" height="753" /></a>
<p class="wp-caption-text">Flickr Being Awesome</p>
</div>
<p>&nbsp;</p>
<p>I like how they leave you in the dark until to try and figure out the problem yourself. Then ask for a review. Apparently the below photo (same as the one quoted above) is the problem:</p>
<p>&nbsp;</p>
<div id="attachment_179" class="wp-caption aligncenter" style="width: 257px"><a href="http://www.photodan.com.au/wp-content/uploads/2011/09/Porta_400_1600_1_007.jpg"><img class="size-medium wp-image-179" title="Anuyusa Portra 400 @ 1600" src="http://www.photodan.com.au/wp-content/uploads/2011/09/Porta_400_1600_1_007-247x300.jpg" alt="" width="247" height="300" /></a>
<p class="wp-caption-text">Portra 400 pushed to 1600.</p>
</div>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>Apparently this should be restricted and not moderate. The flickr guidelines on content filtering are quite vague.</p>
<p>&nbsp;</p>
<p>These are them here:</p>
<p style="padding-left: 60px;">There are 2 types of filters that you need to use for your content.</p>
<h4 style="padding-left: 60px;">1. Safety Level</h4>
<ul style="padding-left: 60px;">
<li>Safe - <em>Content suitable for a global, public audience</em></li>
<li>Moderate - <em>If you&#8217;re not sure whether your content is suitable for a global, public audience but you think that it doesn&#8217;t need to be restricted per se, this category is for you</em></li>
<li>Restricted - <em>This is content you probably wouldn&#8217;t show to your mum, and definitely shouldn&#8217;t be seen by kids</em></li>
</ul>
<p style="padding-left: 60px;">A good rule of thumb is, bare breasts and bottoms are &#8220;moderate.&#8221; Full frontal nudity is &#8220;restricted.&#8221;</p>
<p>No I don&#8217;t think it needs to be restricted, and there is bare breasts, but no frontal nudity. So my only conclusion is they are counting that tiny patch of orange hair as frontal nudity, if I just healed it out to look like skin, there would be no problem. Which I think is damn stupid.</p>
<p>When did hair become obscene? So my only thought is that either the person making the decision doesn&#8217;t have the slightest clue about female anatomy or where it is even located as they would be mistaking a vague orange stripe as vagina, or is conservative valued and believes in censoring this filth for it&#8217;s &#8220;frontal nudity&#8221;. I do not think hair constitutes nudity, as from this angle nothing is hiding under it, and I am sure removal of said hair would make the image fly under their radar.</p>
<p>In any case, there is at least an argument or grey area to argue this against a conservative point (although it should be blindingly obvious that it fits into moderate imho, which it was marked).</p>
<p>&nbsp;</p>
<p>So I am quite annoyed and frustrated at this, and at a flickr. I&#8217;ve never had real problems with flickr or anything until I started uploading nude photography. Obviously some users  (probably from the U.S. all my drama originates from the U.S. it seems) on flickr feel that they are adults and therefore don&#8217;t need to set their flickr browsing filter to safe-only, even though moderate and restricted offends them.</p>
<p>I would definately say every nude shooter on flickr has had several reports from users made against them, browsing the stream, seeing something pop up and getting angry. You don&#8217;t get flickr-staff attention so fast unless someone reports it.</p>
<p>&nbsp;</p>
<p>In any case I think it&#8217;s reprehensible of the flickr staff to threaten to lock my account forever as restricted if I &#8220;mis-moderate&#8221; my content again. Well I acted within good faith of what I could see from the guidelines. If they wan&#8217;t to impose non-standard ideas of &#8220;frontal nudity&#8221; perhaps they should say so in the guidelines.</p>
<p>Because I believe I acted within the guidelines perfectly fine. So now if I &#8220;fuck up&#8221; again (if someone complains and some conservative reviewer looks for some very long stretch of the bow interpretation of restricted) then my whole account will be restricted &#8211; head shots, landscapes, nature, etc. So how am I supposed to upload any content without being in a state of fear my entire account will be locked down and censored from public view (probably because of conservatives imposing their own values that fly in the face of given definitions &#8211; though I am making that assumption, it just seems so likely and plausible)?</p>
<p>&nbsp;</p>
<p>It is basically my opinion they are holding contempt for their users by doing this, that and it&#8217;s illogical and unfair.</p>
<p>&nbsp;</p>
<p>I did send them a follow up email similar to what I have explained above.  I will see what their response.  I have asked they either rescind the threat, or update the content filter guidelines to make it more clear if my photo belongs in restricted (which I argued it doesn&#8217;t according to their current guidelines), otherwise it&#8217;s simply unavoidable for many to make such &#8220;mistakes&#8221;.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.photodan.com.au/2011/09/flickr-staff-threatens-to-lock-my-account-forever/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>A Nude Shoot with Anuyusa, part 1</title>
		<link>http://www.photodan.com.au/2011/09/a-nude-shoot-with-anuyusa-part-1/</link>
		<comments>http://www.photodan.com.au/2011/09/a-nude-shoot-with-anuyusa-part-1/#comments</comments>
		<pubDate>Thu, 22 Sep 2011 13:22:49 +0000</pubDate>
		<dc:creator>Athiril</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Nude]]></category>
		<category><![CDATA[Photography]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.photodan.com.au/?p=175</guid>
		<description><![CDATA[Shot some various films.. will just upload a few here in part 1. &#160; Anuyusa is a model from model mayhem in Melbourne, she is very suited to the art nude in my opinion and I got very pleasing results shooting with her. &#160; I must same I am very impressed with Portra 160, it [...]]]></description>
			<content:encoded><![CDATA[<p>Shot some various films.. will just upload a few here in part 1.</p>
<p>&nbsp;</p>
<p>Anuyusa is a model from model mayhem in Melbourne, she is very suited to the art nude in my opinion and I got very pleasing results shooting with her.</p>
<p>&nbsp;</p>
<p>I must same I am very impressed with Portra 160, it is incredible, I resigned to having a lack of background/shadow detail due to low exposure of the background details and having off-camera flash lit subjects in some of the shots, the background wasn&#8217;t recoverable by the looks of the dSLR test shots to confirm with my light meter, yet there they fell on Portra 160.</p>
<p>&nbsp;</p>
<p>Enough talk, more images.</p>
<p>&nbsp;</p>
<div id="attachment_176" class="wp-caption aligncenter" style="width: 258px"><a href="http://www.photodan.com.au/wp-content/uploads/2011/09/Portra_160_01_002.jpg"><img class="size-medium wp-image-176" title="Anuyusa on Portra 160" src="http://www.photodan.com.au/wp-content/uploads/2011/09/Portra_160_01_002-248x300.jpg" alt="" width="248" height="300" /></a>
<p class="wp-caption-text">Deep shadow detail that just disappeared on the dSLR test exposure for metering, just renders beautifully.</p>
</div>
<p>&nbsp;</p>
<div id="attachment_177" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.photodan.com.au/wp-content/uploads/2011/09/Porta_160_3_007.jpg"><img class="size-medium wp-image-177" title="Anuyusa on Portra 160" src="http://www.photodan.com.au/wp-content/uploads/2011/09/Porta_160_3_007-300x246.jpg" alt="" width="300" height="246" /></a>
<p class="wp-caption-text">Just for fun.. Portra 160 again delivers absolutely beautiful tones and pierces into shadows even with a lack of exposure.</p>
</div>
<p>&nbsp;</p>
<p>When pushing Portra 400 to 1600, I do find sometimes the colour is difficult to correct, this is usually a result of further underexposure and the difficult situations that have problematic lighting and are quite far from 5600K that occur when you need to reach for 1600. Also I do not tend to try and make my images look the same or consistent, I simply strive to be happy/like the image on it&#8217;s own individually.</p>
<p>&nbsp;</p>
<div id="attachment_178" class="wp-caption aligncenter" style="width: 256px"><a href="http://www.photodan.com.au/wp-content/uploads/2011/09/Porta_400_1600_1_003.jpg"><img class="size-medium wp-image-178" title="Anuyusa Portra 400 @ 1600" src="http://www.photodan.com.au/wp-content/uploads/2011/09/Porta_400_1600_1_003-246x300.jpg" alt="" width="246" height="300" /></a>
<p class="wp-caption-text">Portra 400 pushed to 1600, accidental double exposure.</p>
</div>
<p>&nbsp;</p>
<div id="attachment_179" class="wp-caption aligncenter" style="width: 257px"><a href="http://www.photodan.com.au/wp-content/uploads/2011/09/Porta_400_1600_1_007.jpg"><img class="size-medium wp-image-179" title="Anuyusa Portra 400 @ 1600" src="http://www.photodan.com.au/wp-content/uploads/2011/09/Porta_400_1600_1_007-247x300.jpg" alt="" width="247" height="300" /></a>
<p class="wp-caption-text">Portra 400 pushed to 1600.</p>
</div>
<p>&nbsp;</p>
<div id="attachment_180" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.photodan.com.au/wp-content/uploads/2011/09/Porta_400_1600_1_011.jpg"><img class="size-medium wp-image-180" title="Anuyusa Portra 400 @ 1600" src="http://www.photodan.com.au/wp-content/uploads/2011/09/Porta_400_1600_1_011-300x250.jpg" alt="" width="300" height="250" /></a>
<p class="wp-caption-text">Portra 400 pushed to 1600</p>
</div>
<p>&nbsp;</p>
<div id="attachment_181" class="wp-caption aligncenter" style="width: 254px"><a href="http://www.photodan.com.au/wp-content/uploads/2011/09/Portra_400_1600_more_002.jpg"><img class="size-medium wp-image-181" title="Anuyusa Portra 400 @ 1600" src="http://www.photodan.com.au/wp-content/uploads/2011/09/Portra_400_1600_more_002-244x300.jpg" alt="" width="244" height="300" /></a>
<p class="wp-caption-text">Portra 400 pushed to 1600</p>
</div>
<div id="attachment_182" class="wp-caption aligncenter" style="width: 254px"><a href="http://www.photodan.com.au/wp-content/uploads/2011/09/Portra_400_1600_more_004.jpg"><img class="size-medium wp-image-182" title="Anuyusa Portra 400 @ 1600" src="http://www.photodan.com.au/wp-content/uploads/2011/09/Portra_400_1600_more_004-244x300.jpg" alt="" width="244" height="300" /></a>
<p class="wp-caption-text">Portra 400 pushed to 1600</p>
</div>
<p>&nbsp;</p>
<div id="attachment_183" class="wp-caption aligncenter" style="width: 256px"><a href="http://www.photodan.com.au/wp-content/uploads/2011/09/Tri-X_1600_002.jpg"><img class="size-medium wp-image-183" title="Anuyusa Tri-X @ 1600" src="http://www.photodan.com.au/wp-content/uploads/2011/09/Tri-X_1600_002-246x300.jpg" alt="" width="246" height="300" /></a>
<p class="wp-caption-text">Tri-X pushed to 1600, plenty of shadow detail to be had, but I like the long scale of highlights to midtones, so I set the contrast this way.</p>
</div>
<p style="text-align: center;">
]]></content:encoded>
			<wfw:commentRss>http://www.photodan.com.au/2011/09/a-nude-shoot-with-anuyusa-part-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Organ Pipes in Black and White.</title>
		<link>http://www.photodan.com.au/2011/09/organ-pipes-in-black-and-white/</link>
		<comments>http://www.photodan.com.au/2011/09/organ-pipes-in-black-and-white/#comments</comments>
		<pubDate>Mon, 19 Sep 2011 13:23:29 +0000</pubDate>
		<dc:creator>Athiril</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.photodan.com.au/?p=163</guid>
		<description><![CDATA[Went out on a landscape trip with Ben Jensz  on the 18th of September 2011, went out to Brisbane Ranges, didn&#8217;t see anything taking our fancy along the way, so we headed into Organ Pipes National Park on the way back towards the city, I managed to shoot a roll of Delta 400 Professional, which I [...]]]></description>
			<content:encoded><![CDATA[<p>Went out on a landscape trip with <a href="http://www.flickr.com/photos/benjensz/">Ben Jensz </a> on the 18th of September 2011, went out to Brisbane Ranges, didn&#8217;t see anything taking our fancy along the way, so we headed into Organ Pipes National Park on the way back towards the city, I managed to shoot a roll of Delta 400 Professional, which I shot at E.I. 100 instead of 400, as I find it gives some kind of &#8216;shine&#8217; to the image I find.</p>
<p>Here are five from that roll of 10 that I like.</p>
<p>I have some other random work on my flickr stream <a href="http://www.flickr.com/photos/athiril/">http://www.flickr.com/photos/athiril/</a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><a href="http://www.photodan.com.au/wp-content/uploads/2011/09/Delta_400_001.jpg"><img class="aligncenter size-medium wp-image-164" title="Organ Pipes #1" src="http://www.photodan.com.au/wp-content/uploads/2011/09/Delta_400_001-242x300.jpg" alt="" width="242" height="300" /></a></p>
<p><a href="http://www.photodan.com.au/wp-content/uploads/2011/09/Delta_400_002.jpg"><img class="aligncenter size-medium wp-image-165" title="Organ Pipes #2" src="http://www.photodan.com.au/wp-content/uploads/2011/09/Delta_400_002-242x300.jpg" alt="" width="242" height="300" /></a></p>
<p><a href="http://www.photodan.com.au/wp-content/uploads/2011/09/Delta_400_003.jpg"><img class="aligncenter size-medium wp-image-166" title="Organ Pipes #3" src="http://www.photodan.com.au/wp-content/uploads/2011/09/Delta_400_003-300x232.jpg" alt="" width="300" height="232" /></a></p>
<p><a href="http://www.photodan.com.au/wp-content/uploads/2011/09/Delta_400_004.jpg"><img class="aligncenter size-medium wp-image-167" title="Organ Pipes #4" src="http://www.photodan.com.au/wp-content/uploads/2011/09/Delta_400_004-300x242.jpg" alt="" width="300" height="242" /></a></p>
<p>&nbsp;</p>
<p><a href="http://www.photodan.com.au/wp-content/uploads/2011/09/Delta_400_008.jpg"><img class="aligncenter size-medium wp-image-168" title="Organ Pipes #5" src="http://www.photodan.com.au/wp-content/uploads/2011/09/Delta_400_008-245x300.jpg" alt="" width="245" height="300" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.photodan.com.au/2011/09/organ-pipes-in-black-and-white/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Brothers Wright Douchebaggery</title>
		<link>http://www.photodan.com.au/2011/09/brothers-wright-douchebaggery/</link>
		<comments>http://www.photodan.com.au/2011/09/brothers-wright-douchebaggery/#comments</comments>
		<pubDate>Thu, 15 Sep 2011 11:16:10 +0000</pubDate>
		<dc:creator>Athiril</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.photodan.com.au/?p=137</guid>
		<description><![CDATA[NOTE: If any image is too small and unreadable click it or open in a new tab to read it, this is a new setup for me, still working out how to make it work best for me. &#160; Let me start this post by stating making a post like I am now is a [...]]]></description>
			<content:encoded><![CDATA[<p><strong>NOTE: If any image is too small and unreadable click it or open in a new tab to read it, this is a new setup for me, still working out how to make it work best for me.</strong></p>
<p>&nbsp;</p>
<p>Let me start this post by stating making a post like I am now is a dick thing to do, I am temporarily willing to be a dick to deal with this headache that has occasionally irritated me with his douce baggery over the past half a year.</p>
<p>&nbsp;</p>
<p>Generally you should attack an idea, and not the person behind the idea (though I have had to put up with having my character constantly attacked and derided). In this case I am attacking his character, or at the least describing how I see it with some examples. Not going to make excuses for doing this other than he has pissed me off one too many times. That may seem like high school playground politics to you, then well, that&#8217;s fair enough.</p>
<p>&nbsp;</p>
<p>&#8220;Brothers Wright&#8221; runs the blog <a title="Twin Lens Life" href="http://www.twinslenslife.com/" target="_blank">twinslenslife.com</a> and the flickr account <a href="http://www.flickr.com/photos/bwrightphoto/" target="_blank">http://www.flickr.com/photos/bwrightphoto/</a>.</p>
<p>&nbsp;</p>
<p>There is a new website that has been posted on the &#8220;Film Is Fun&#8221; group on facebook called <a title="ECN-2" href="http://www.ecn-2.com/" target="_blank">ECN-2</a>. This website is a for-profit service for bulk-rolling ECN-2 motion picture film into 35mm still canisters, offering processing in ECN-2 chemistry and scanning, when I checked it was $150 for 5 rolls for this service (including film, processing and scanning).</p>
<p>Bit on the steep side, but I do not have a problem with that, that is their prerogative (I also think the scans they offer are not large enough for archival/full quality off the neg). I commented on the thread saying something like &#8220;This website has misinformation on it.&#8221; and left it at that, as when I checked the website I saw <em>Brothers Wright </em>associated with it in some way, and I knew he would be his usual self in response to anything that disagrees with what he has stated. Sure I could have elaborated, but the before stated reason is why I did not.</p>
<p>The post was erased and I was private messaged on facebook by <em>Scott Shepherd</em>, I summarised one of the problems with stating flash can simply be used by putting a gel on it with ECN-2 film.</p>
<p>I went back to the thread posted some reasons why the information on the site is incorrect and incomplete (the information on the site stating one-shot &#8220;fresh&#8221; developer is better than replenished &#8211; bollocks that is, they state they mix it up fresh every day right before usage, it is more like they do not know to run the process properly and find the developer is dying on them overnight and haven&#8217;t figured out why). I posted the response below which I made a screen shot below, the following post was also deleted very shortly after I made the screen shot.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<div id="attachment_141" class="wp-caption aligncenter" style="width: 488px"><a href="http://www.photodan.com.au/wp-content/uploads/2011/09/ecn2_thread.png"><img class="size-full wp-image-141 " title="ECN-2 Thread" src="http://www.photodan.com.au/wp-content/uploads/2011/09/ecn2_thread.png" alt="" width="478" height="1747" /></a>
<p class="wp-caption-text">ecn-2.com thread screenshot</p>
</div>
<p>My post was erased then followed up with a response from <em>Scott Shepherd</em>.</p>
<p><a href="http://www.photodan.com.au/wp-content/uploads/2011/09/ecn2_thread2.png"><img class="aligncenter size-full wp-image-145" title="ecn2_thread2" src="http://www.photodan.com.au/wp-content/uploads/2011/09/ecn2_thread2.png" alt="" width="615" height="194" /></a></p>
<p>What a class act. Clearly I do not know the work involved in the ECN-2 process, when I was the one telling those guys how to actually do it (more on that later) several months ago.</p>
<p>&nbsp;</p>
<p>I would like to share the previous discussion I had with <em>Brothers Wright</em> a few months back, before showing the current.</p>
<p>&nbsp;</p>
<p>The following is a screen taken from the same group in which <em>The Brothers Wright</em> joined in the discussion</p>
<p style="text-align: center;"><a href="http://www.photodan.com.au/wp-content/uploads/2011/09/brothers_wright_1.jpg"><img class="aligncenter size-full wp-image-146" title="brothers_wright_1" src="http://www.photodan.com.au/wp-content/uploads/2011/09/brothers_wright_1.jpg" alt="" width="877" height="830" /></a></p>
<p>After this, he pestered me in private, which turned into talking down to me, insulting me, and basically telling me to shut up and do not throw my 2 cents into any discussion, and that I&#8217;m an idiot.</p>
<p>Screen shot for that below.</p>
<p>&nbsp;</p>
<p style="text-align: center;"><a href="http://www.photodan.com.au/wp-content/uploads/2011/09/brothers_wright_2.png"><img class="aligncenter size-full wp-image-147" title="brothers_wright_2" src="http://www.photodan.com.au/wp-content/uploads/2011/09/brothers_wright_2.png" alt="" width="1066" height="560" /></a></p>
<p>&nbsp;</p>
<p>Obviously he cannot make up his mind whether they are different exposures or the same exposure.  Clearly I&#8217;m the idiot for having the consistent viewpoint that the background landscape is a different subeject to the human portrait and that you would choose to expose for your subject &#8211; ie; excessive contrast isn&#8217;t over or underexposure it is excessive contrast that your medium can&#8217;t handle, and in this case the medium can handle it. He obviously want&#8217;s to sound like he is top dog.</p>
<p>The more recent &#8216;discussion&#8217; with him should illustrate this point, which came shortly after my posting on the <em>Film Is Fun</em> group on facebook.</p>
<p>Here is that discussion below, the tinypic link is just the same screenshot as above.</p>
<p><a href="http://www.photodan.com.au/wp-content/uploads/2011/09/brothers_wright_3.png"><img class="aligncenter size-full wp-image-148" title="brothers_wright_3" src="http://www.photodan.com.au/wp-content/uploads/2011/09/brothers_wright_3.png" alt="" width="752" height="1280" /></a></p>
<p>Yes, clearly I am some newbie without manners and with no comprehension of English. Oh, and my photography sucks too (I <em>do</em> manage to create a couple good images among the pile of disappointments).</p>
<p>In one of the above screen shots after my post was deleted <em>Scott Shepherd</em> says how much work is involved in the ECN-2 process &#8211; there&#8217;s only as much work as you make for yourself, that is also a bunch of bollocks, they delete my post (which would be helpful to their business to address said issues on their website) and post that rubbish in the best interest of their business, certainly not in the best interest of the group, or in the best interest of open discussion, it appears open discussion is simply not allowed and overridden by their new business interests &#8211; in other words petty censorship in the interest of money.</p>
<p>No free thinking there if you cannot question things or point out inaccuracies, it is not in the best interest of the group members to do such a thing. It is reprehensible.</p>
<p>&nbsp;</p>
<p>They want to claim higher quality and more consistency than a replenished system, yet are most likely not running control strips, especially since they are mixing it up fresh every day right before usage (according to their site). Obviously you cannot achieve more consistency or even as great consistency without control strips and confirming Laboratory Aim Density (it&#8217;s in the Kodak manuals guys, which they probably haven&#8217;t read fully) then a process that doesn&#8217;t. The peak quality is being able to achieve Laboratory Aim Density. These guys are obviously fully of shit.</p>
<p>The reason they mix up one shot fresh on the day is because their developer most likely has iron contamination (or another contaminant) that kills the developer which immedietly drops quality the longer you leave the developer sit to simply no image at all (in a matter of a few hours), so of course they would think that one-shot is better than replenished. Because they don&#8217;t know how run ECN-2, yes it is different to running C-41 and E-6 and B&amp;W &#8211; but it is not so difficult as they make it out to be &#8211; contamination is a real problem in ECN-2 due to the design, which has a simply easily solution, which I&#8217;m not going to post here for their benefit.</p>
<p>&nbsp;</p>
<p>I know they don&#8217;t know the ECN-2 process in-depth because only less than half a year ago, <em>Brothers Wright</em> was asking me about the process, I&#8217;ve answered numerous times on various bits and pieces of the ECN-2 process, how it is done, and how easy you can make remjet removal for yourself, and I was actually able to find one piece of one of the private conversations on that (with <em>Brothers Wright</em>), though I don&#8217;t see to be able to go further back in time on my facebook private messages.</p>
<p>Here is below what I could find. And yes, from what I remember he did even talk down to me then even at that point, though back on the group. It&#8217;s implied in his apology to me in that message.</p>
<p><a href="http://www.photodan.com.au/wp-content/uploads/2011/09/brothers_wright_0.png"><img class="aligncenter size-full wp-image-149" title="brothers_wright_0" src="http://www.photodan.com.au/wp-content/uploads/2011/09/brothers_wright_0.png" alt="" width="745" height="689" /></a></p>
<p>&nbsp;</p>
<p>Do not believe these fuckers that go around labelling themselves as experts in such a thing. <strong>These guys are literally calling themselves &#8220;Master Artisan Craftsmen&#8221; </strong>(oh please, there is nothing to be a master artisan craftsman about in a <em><strong>fully standardised process </strong></em>as there is no choice for you to make to insert the magic of your master artisan craftsmanship into), they are most certainly not. They are newbies. They are like that hot chick with a camera that&#8217;s all friendly and eager to learn, and a few months later think&#8217;s she is full pro, surrounds herself with yes-man and white knights, and gets extremely agitated at any realistic critique that may be interpreted as an attack on her ego.</p>
<p>I know more than the vast majority people, even those in the in-circle for this type of thing on this process, in that there would be very few people with more knowledge than I on the subject, and I can tell you that I am no expert, in fact, my knowledge is absolutely <strong><em>wafer thin </em></strong>to what would be required to be considered having an expert intimate knowledge of the process.</p>
<p>To simplify that, I have enough knowledge to see the gap in difference to where I am and being an expert, what there is still to learn. These guys do not. I think many of you can relate to that in fields you have heavy interest in, then watching someone come along who has little dog syndrome.</p>
<p>I honestly feel like these guys are like modern day Thomas Edisons (jerkface) &#8211; except far less brilliant (I think Thomas Edison is a real jerk, thief, and not brilliant at all, but his level of knowledge is still very impressive, the level of knowledge of these guys are simply not).</p>
<p>&nbsp;</p>
<p>The level of douce baggery here pisses me off.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.photodan.com.au/2011/09/brothers-wright-douchebaggery/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Hello world!</title>
		<link>http://www.photodan.com.au/2011/09/hello-world/</link>
		<comments>http://www.photodan.com.au/2011/09/hello-world/#comments</comments>
		<pubDate>Thu, 01 Sep 2011 08:55:25 +0000</pubDate>
		<dc:creator>Athiril</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.photodan.com.au/?p=1</guid>
		<description><![CDATA[Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!]]></description>
			<content:encoded><![CDATA[<p>Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.photodan.com.au/2011/09/hello-world/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: enhanced

Served from: www.photodan.com.au @ 2012-02-23 18:21:30 -->
