<?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>Aleksandar Vacić &#187; aplus</title>
	<atom:link href="http://aplus.rs/category/aplus/feed/" rel="self" type="application/rss+xml" />
	<link>http://aplus.rs</link>
	<description>aplus.rs</description>
	<lastBuildDate>Mon, 21 May 2012 18:50:07 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Contact form fixed</title>
		<link>http://aplus.rs/aplus/contact-form-fixed/</link>
		<comments>http://aplus.rs/aplus/contact-form-fixed/#comments</comments>
		<pubDate>Thu, 16 Apr 2009 23:57:56 +0000</pubDate>
		<dc:creator>Aleksandar</dc:creator>
				<category><![CDATA[aplus]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[contact]]></category>

		<guid isPermaLink="false">http://aplus.rs/?p=460</guid>
		<description><![CDATA[If you have tried to contact me through the contact form in last month or so — please accept my apologies. When .yu TLD went dead, I forgot to change ...]]></description>
			<content:encoded><![CDATA[<p>If you have tried to contact me through the <a href="/about/contact/">contact form</a> in last month or so  — please accept my apologies. When <tt>.yu</tt> TLD went dead, I forgot to change the form code and emails went to the old domain.</p>
<p>Fixed now, things are back in order.</p>
]]></content:encoded>
			<wfw:commentRss>http://aplus.rs/aplus/contact-form-fixed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Protected posts?</title>
		<link>http://aplus.rs/aplus/protected-posts/</link>
		<comments>http://aplus.rs/aplus/protected-posts/#comments</comments>
		<pubDate>Sat, 27 Sep 2008 19:23:12 +0000</pubDate>
		<dc:creator>Aleksandar</dc:creator>
				<category><![CDATA[aplus]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://aplus.rs/?p=413</guid>
		<description><![CDATA[As I’m baby stepping through the iPhone SDK development, I encounter some strange stuff. Given the unfortunate (to say the least) circumstance of the NDA still in place as of ...]]></description>
			<content:encoded><![CDATA[<p>As I’m baby stepping through the iPhone SDK development, I encounter some strange stuff. Given the unfortunate (to say the least) circumstance of the NDA still in place as of this writing, I can’t post publicly about it. I can’t ask on forums nor would anyone be allowed to answer. That’s how NDA stuff works.</p>
<p>In order not to lose these stuff and to keep note of problem and solution (if I find one) for future benefit, I’m doing this password-protected posts that I will reveal once NDA is lifted.</p>
<p>Which hopefully will happen’ at some point.</p>
<p><strong>update:</strong> it did not take long – just days after I did this, Apple killed the NDA.</p>
]]></content:encoded>
			<wfw:commentRss>http://aplus.rs/aplus/protected-posts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Moved to new domain</title>
		<link>http://aplus.rs/aplus/moved-to-new-domain/</link>
		<comments>http://aplus.rs/aplus/moved-to-new-domain/#comments</comments>
		<pubDate>Wed, 23 Jul 2008 12:28:18 +0000</pubDate>
		<dc:creator>Aleksandar</dc:creator>
				<category><![CDATA[aplus]]></category>

		<guid isPermaLink="false">http://aplus.rs/?p=359</guid>
		<description><![CDATA[This domain used to reside on the aplus.co.yu domain. .yu domain belonged to former Yugoslavia, which has died. With it, the TLD is on its way out and the new Serbian domain is .rs]]></description>
			<content:encoded><![CDATA[<p>This domain used to reside on the aplus.co.yu domain. .yu domain belonged to former Yugoslavia, which has died, despite the futile attempts to keep whatever is left of it under the same name.</p>
<p>With it, the TLD is on its way out and the new Serbian domain is <strong>.rs</strong></p>
<p>Thus this blog and all its auxiliary content is now under <strong>aplus.rs</strong> web address. All the links pointing to old web site will get R=301 message and will hopefully soon be pointing to new addresses.</p>
]]></content:encoded>
			<wfw:commentRss>http://aplus.rs/aplus/moved-to-new-domain/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Upgrading WordPress, the *nix way</title>
		<link>http://aplus.rs/aplus/upgrading-wordpress-the-nix-way/</link>
		<comments>http://aplus.rs/aplus/upgrading-wordpress-the-nix-way/#comments</comments>
		<pubDate>Wed, 16 Jul 2008 10:08:34 +0000</pubDate>
		<dc:creator>Aleksandar</dc:creator>
				<category><![CDATA[aplus]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://aplus.co.yu/?p=346</guid>
		<description><![CDATA[I always forget the set of command line stuff I need to do when new version of WP is out. And always waste time figuring out what to do and which switches tar and cp needs. So, this is a reminder for the future.]]></description>
			<content:encoded><![CDATA[<p>I always forget the set of command line stuff I need to do when new version of WP is out. And always waste time figuring out what to do and which switches <code>tar</code> and <code>cp</code> needs. So, this is a reminder for the future.</p>
<pre>wget http://wordpress.org/latest.tar.gz
gzip -d latest.tar.gz
tar -xvf latest.tar
cp -r wordpress/* SITE/wpa</pre>
<p>That should do it. Now off to upgrade rest of the blogs.</p>
<p>Note that <code>wpa</code> in the <code>SITE/wpa</code> above is my wordpress folder. Replace that with correct path for your installation.</p>
]]></content:encoded>
			<wfw:commentRss>http://aplus.rs/aplus/upgrading-wordpress-the-nix-way/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Photography section updated</title>
		<link>http://aplus.rs/aplus/photography-section-updated/</link>
		<comments>http://aplus.rs/aplus/photography-section-updated/#comments</comments>
		<pubDate>Sat, 05 Apr 2008 22:20:03 +0000</pubDate>
		<dc:creator>Aleksandar</dc:creator>
				<category><![CDATA[aplus]]></category>
		<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://aplus.co.yu/aplus/photography-section-updated/</guid>
		<description><![CDATA[I have upgraded the My photography section to ZenPhoto 1.1.5, which brings along several long awaited features: SPAM-protected comments – most notably Akismet integration EXIF info extraction Ratings, per album ...]]></description>
			<content:encoded><![CDATA[<p>I have upgraded the <a href="/photos/">My photography</a> section to <a href="http://www.zenphoto.org/">ZenPhoto</a> 1.1.5, which brings along several long awaited features:</p>
<ul>
<li>SPAM-protected comments – most notably <a href="http://akismet.com/">Akismet</a> integration</li>
<li>EXIF info extraction</li>
<li>Ratings, per album and per photo</li>
</ul>
<p>There’s also bunch of new developments, all very welcome and which shows that this project is in good hands. Introduction of Akismet allows me to re-enable the comments, which I had to turn off due to massive SPAMfection after just a week of the original gallery being online. I have good experience with Akismet in blog comments – I expect it to work the same here.</p>
<p>If you havent looked recently, there’s bunch of <a href="/photos/Aleksa.ka.1.godini/">new photos of my little kid</a>, as well as nice gallery of my <a href="/photos/London/">last visit to London</a>.</p>
<div class="photo"><a href="http://aplus.co.yu/photos/Aleksa.ka.1.godini"><img class="ZenphotoPress_thumb " alt="20080224-IMG_5103" title="20080224-IMG_5103" src="http://aplus.co.yu/photos/zp-core/i.php?a=Aleksa.ka.1.godini&amp;i=20080224-IMG_5103.jpg&amp;w=600&amp;h=200"  /></a></div>
<p>I also corrected some of the display issues with IE7 in the overall site layout.</p>
]]></content:encoded>
			<wfw:commentRss>http://aplus.rs/aplus/photography-section-updated/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Return</title>
		<link>http://aplus.rs/aplus/return/</link>
		<comments>http://aplus.rs/aplus/return/#comments</comments>
		<pubDate>Thu, 27 Sep 2007 19:45:15 +0000</pubDate>
		<dc:creator>Aleksandar</dc:creator>
				<category><![CDATA[aplus]]></category>

		<guid isPermaLink="false">http://www.aplus.co.yu/aplus/return/</guid>
		<description><![CDATA[Entire site is revamped. New stuff – services (still a lot to do here). Goodies moved there. Pages designed to fit the content, not the other way around. See About ...]]></description>
			<content:encoded><![CDATA[<p>Entire site is revamped.</p>
<p>New stuff – <a href="/services/">services</a> (still a lot to do here). Goodies moved there.<br />
Pages designed to fit the content, not the other way around. See <a href="/about/">About</a> and <a href="/photos/">Photos</a>. Posts will have specific design, when appropriate.</p>
<p>Things might break, go haywire. Usually it will look just good.</p>
<p>More soon; now off to 10 days of grapes, vineyard and wine making. </p>
]]></content:encoded>
			<wfw:commentRss>http://aplus.rs/aplus/return/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Photographs</title>
		<link>http://aplus.rs/personal/photographs/</link>
		<comments>http://aplus.rs/personal/photographs/#comments</comments>
		<pubDate>Fri, 03 Aug 2007 20:54:59 +0000</pubDate>
		<dc:creator>Aleksandar</dc:creator>
				<category><![CDATA[aplus]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://www.aplus.co.yu/personal/photographs/</guid>
		<description><![CDATA[I have added a new link under About section in the navigation – ‘My photographs’. I have used Flickr in the past (and still visit frequently) but never could get ...]]></description>
			<content:encoded><![CDATA[<p>I have added a new link under About section in the navigation – <a href="/photos/">‘My photographs’</a>. I have used Flickr in the past (and still visit frequently) but never could get myself to pay for a Pro account. I’m just not into this social networking stuff.</p>
<p>I prefer to keep the photos on my own server. I will be slowly adding more and more photos there. Currently Aleksa rules that space and probably always will :)<br />
Aside from his shots, I uploaded 233 images from our Paris trip in April – hope you like them.</p>
]]></content:encoded>
			<wfw:commentRss>http://aplus.rs/personal/photographs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Realigned</title>
		<link>http://aplus.rs/aplus/realigned/</link>
		<comments>http://aplus.rs/aplus/realigned/#comments</comments>
		<pubDate>Wed, 04 Jul 2007 21:06:31 +0000</pubDate>
		<dc:creator>Aleksandar</dc:creator>
				<category><![CDATA[aplus]]></category>
		<category><![CDATA[AdSense]]></category>

		<guid isPermaLink="false">http://www.aplus.co.yu/aplus/realigned/</guid>
		<description><![CDATA[I got tired of the old design and changed it a bit. A bit. :) Apart from really small font (Calibri, if you have it), graphic-pen tones and narcissistic bit ...]]></description>
			<content:encoded><![CDATA[<p>I got tired of the old design and changed it a bit. A bit. :)</p>
<p>Apart from really small font (Calibri, if you have it), graphic-pen tones and narcissistic bit on the right, I changed <em>how the ads are presented</em>. Now, all of you visiting this site more than 5 times, will not see any ads, at all. This is of course due to <a href="http://fortuito.us/2007/05/how_ads_really_work_superfans_1">Howie’s post on how ads really work</a>.</p>
<p>Adsense, <a href="http://www.text-link-ads.com/?ref=65183">TextLinkAds</a> and <a href="http://www.auctionads.com/refer_61f4dc8fdda9aa65d15b">AuctionAds</a> is the trio I’m using at the moment. Will see how it goes.</p>
<p><small>I have a feeling that design will be tweaked in the following weeks…</small></p>
]]></content:encoded>
			<wfw:commentRss>http://aplus.rs/aplus/realigned/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Donations. Custom work</title>
		<link>http://aplus.rs/aplus/donations-custom-work/</link>
		<comments>http://aplus.rs/aplus/donations-custom-work/#comments</comments>
		<pubDate>Tue, 13 Feb 2007 09:29:44 +0000</pubDate>
		<dc:creator>Aleksandar</dc:creator>
				<category><![CDATA[aplus]]></category>

		<guid isPermaLink="false">http://www.aplus.co.yu/aplus/donations-custom-work/</guid>
		<description><![CDATA[I actually had the donations page for few months now, but only recently added the PayPal option. As the page says, scripts and techniques are free to use. If however, ...]]></description>
			<content:encoded><![CDATA[<p>I actually had the <a href="/about/donate/">donations page</a> for few months now, but only recently added the PayPal option. As the page says, scripts and techniques are free to use. If however, any of the stuff here saved you a day’s work, made the sun shine stronger or generally made your day – consider donating; for a Guinness pint or two or bottle of fine rose wine – it would suffice. :)</p>
<p>There are two options: PayPal, the usual favourite and 2checkout.com. If you have a PayPal account – and it’s getting really hard to find anyone without one – that’s the most convenient option.</p>
<h3>Work hire</h3>
<p>Those two are also equally usable for payments. If you need some specific variation of the code featured on this site or some other small and specific work done – feel free to <a href="/about/contact/">contact me</a>.</p>
<p>In the past, when I had more free time, I was happy to code-in anything. Lately – even though still happy to accept any challenge – I picked up some old interests: <a href="/personal/drawings/">drawing</a>, book reading (Robert Jordan’s Wheel of Time will keep me busy for a long while :)) along with other personal developments which I might write about soon.<br />
Whatever the case, it’s much harder to justify spending few hours a day tweaking CSS code versus a nice tea or coffee and a book.</p>
<p>You send your requirement and I will quickly return with time-frame and quote. At the moment, being fully employed on a demanding job, I’m able to take only rather small stuff. As small is variable matter :) best would be to contact me and we will discuss it.</p>
]]></content:encoded>
			<wfw:commentRss>http://aplus.rs/aplus/donations-custom-work/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced (User agent is rejected)

Served from: aplus.rs @ 2012-05-21 21:55:06 -->
