<?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/"
	xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule"
>

<channel>
	<title>Aral Balkan &#187; Jobs</title>
	<atom:link href="http://aralbalkan.com/category/development/jobs/feed" rel="self" type="application/rss+xml" />
	<link>http://aralbalkan.com</link>
	<description>Passionate geekisms.</description>
	<lastBuildDate>Wed, 01 Feb 2012 18:53:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<creativeCommons:license>http://creativecommons.org/licenses/by-nc/2.0/uk/</creativeCommons:license>
		<item>
		<title>A little Bash script for speeding up Ad Hoc iPhone distribution builds</title>
		<link>http://aralbalkan.com/2527</link>
		<comments>http://aralbalkan.com/2527#comments</comments>
		<pubDate>Tue, 17 Nov 2009 11:04:39 +0000</pubDate>
		<dc:creator>Aral</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Jobs]]></category>
		<category><![CDATA[ad hoc]]></category>
		<category><![CDATA[beta]]></category>
		<category><![CDATA[build]]></category>
		<category><![CDATA[distribution]]></category>
		<category><![CDATA[ipa]]></category>
		<category><![CDATA[itunes]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[testing]]></category>

		<guid isPermaLink="false">http://aralbalkan.com/?p=2527</guid>
		<description><![CDATA[Check out the Ad Hoc Packager script I released that is far better than the old bash script. When deploying beta builds of your iPhone apps, you make what is known is an Ad Hoc distribution. Apple's instructions tell you that you should zip up the Ad Hoc distribution and send it to your testers [...]]]></description>
			<content:encoded><![CDATA[<p id="top" />Check out the <a href="http://aralbalkan.com/2590">Ad Hoc Packager script</a> I released that is far better than the old bash script.</p>
<p><strike>When deploying beta builds of your iPhone apps, you make what is known is an Ad Hoc distribution. Apple's instructions tell you that you should zip up the Ad Hoc distribution and send it to your testers along with your .mobileprovision file. As <a href="http://twitter.com/LongJohnnyE">John Hartzog</a> discovered, however, <a href="http://johnehartzog.com/2009/04/iphone-app-ad-hoc-gotchas/">using the Compress option in Finder for Ad Hoc distribution has drawbacks</a> so you should use the command line to package up your Ad Hoc distributions.</p>
<p><span id="more-2527"></span></p>
<p>John provides a few simple commands that let you do this in his blog post and I've been using this for the beta builds of <a href="http://avitapp.com">'avit</a> but I soon got bored of manually typing these in. So, instead, I wrote up a quick re-usable Bash script, building on John's, that makes packing up an Ad Hoc distribution very easy. </p>
<p>Here's the script: </p>
<pre class="bash"><span style="color: #808080; font-style: italic;">#!/bin/bash</span>
<span style="color: #000000; font-weight: bold;">if</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span> <span style="color: #ff0000;">&quot;$1&quot;</span> == <span style="color: #ff0000;">&quot;&quot;</span> <span style="color: #7a0874; font-weight: bold;">&#93;</span> ; <span style="color: #000000; font-weight: bold;">then</span>
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;Usage: adhoc &lt;NameOfApp&gt;&quot;</span>
<span style="color: #000000; font-weight: bold;">else</span>
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;Deploying $1…&quot;</span>
<span style="color: #c20cb9; font-weight: bold;">mkdir</span> Payload
<span style="color: #c20cb9; font-weight: bold;">cp</span> -rp <span style="color: #ff0000;">&quot;$1&quot;</span>.app Payload/
<span style="color: #c20cb9; font-weight: bold;">zip</span> -r <span style="color: #ff0000;">&quot;$1&quot;</span>.ipa iTunesArtwork Payload
<span style="color: #000000; font-weight: bold;">fi</span>
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;Done! Send your .mobileprovision and $1.ipa file to your beta testers.&quot;</span></pre>
<p>Either save the above code in a file called adhoc (and don't forget to <code>chmod +x adhoc</code>) or </p>
<h3>Download the script</h3>
<p><a href="/downloads/adhoc.zip">adhoc.zip</a> (352 bytes) </p>
<h3>Usage instructions</h3>
<ol>
<li>Create a folder for your distribution, e.g., "MyApp Beta X"</li>
<li>Download the <a href="http://developer.apple.com/iphone/manage/provisioningprofiles/index.action">mobile provisioning file</a> you created in the <a href="http://developer.apple.com/iphone/manage/overview/index.action">iPhone Developer Program Portal</a> and make sure that it includes all the <a href="">Devices</a> you want this build to run on (i.e., the Device IDs of your beta testers' iPhones, iPods, etc.)</li>
<li>Copy the AdHoc script into the "MyApp Beta X" folder</li>
<li>Create a 512x512 PNG or JPEG of your icon, name it iTunesArtwork (without an extension; this is important) and place that in the "MyApp Beta X" folder also.</li>
<li>In XCode, create a new Distribution build of your app, making sure to select the correct mobile provisioning profile in the Code Signing Identity section of your Project Settings.</li>
<li>Under the Products section of the Groups & Files pane in XCode, right-click the name of your app (e.g., MyApp) and select Reveal in Finder. Copy this executable to your "MyApp Beta X" folder also.</li>
<li>Finally, in Terminal, switch to your "MyApp Beta X" folder (tip: you can drag the folder into the Terminal window to get its path)</li>
<li>Type: <code>./adhoc MyApp</code>, substituting the name of your application's executable with MyApp.</li>
<li>That's it! When the script is done, you will find MyApp.ipa in the "MyApp Beta X"</li>
</ol>
<p>When distributing your Ad Hoc build, make sure you send both the MyApp.ipa and your .mobileprovision file to your testers. </p>
<p>I hope this little script helps speed up your process.</strike></p>
]]></content:encoded>
			<wfw:commentRss>http://aralbalkan.com/2527/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-nc/2.0/uk/</creativeCommons:license>
	</item>
		<item>
		<title>New Flash and Flex jobs</title>
		<link>http://aralbalkan.com/1316</link>
		<comments>http://aralbalkan.com/1316#comments</comments>
		<pubDate>Fri, 18 Apr 2008 12:37:37 +0000</pubDate>
		<dc:creator>Aral</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[Jobs]]></category>
		<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[job board]]></category>

		<guid isPermaLink="false">http://aralbalkan.com/1316</guid>
		<description><![CDATA[Here are the new Flash and Flex jobs from the OSFlash job board for this week: Web Developer, The Magazine Network - Conde Nast Publications, Inc., New York, NY Flash Developer, CondéNet Creative Service - Condé Nast Publications, New York, NY]]></description>
			<content:encoded><![CDATA[<p id="top" />Here are the new <a href="http://jobs.osflash.org/" title="Flash and Flex Jobs">Flash and Flex jobs from the OSFlash job board</a> for this week:</p>
<p><span id="more-1316"></span></p>
<ul>
<li><a href="http://jobs.osflash.org/job/e48b0fa1784dc2f6e87a42aad9f18c88/?d=1&amp;source=post_to_site">Web Developer, The Magazine Network</a> - Conde Nast Publications, Inc., New York, NY</li>
<li><a href="http://jobs.osflash.org/job/9e06105934fa8aebb200e75d3b9b766e/?d=1&amp;source=post_to_site">Flash Developer, CondéNet Creative Service</a> - Condé Nast Publications, New York, NY</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://aralbalkan.com/1316/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-nc/2.0/uk/</creativeCommons:license>
	</item>
		<item>
		<title>New Flash and Flex jobs</title>
		<link>http://aralbalkan.com/1289</link>
		<comments>http://aralbalkan.com/1289#comments</comments>
		<pubDate>Sat, 05 Apr 2008 21:20:35 +0000</pubDate>
		<dc:creator>Aral</dc:creator>
				<category><![CDATA[Jobs]]></category>
		<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false">http://aralbalkan.com/1289</guid>
		<description><![CDATA[At the end of every week, I plan to make a short entry highlighting the new jobs posted on the OSFlash Job Board. Here's the first one! Flash / Actionscript 3.0 Game Developer - Confidential, Chicago, IL and Raleigh, NC Lead Flash Developer - LocaModa, Cambridge, MA Lead Actionscript developer - NDi Media, Montreal, QC, [...]]]></description>
			<content:encoded><![CDATA[<p id="top" />At the end of every week, I plan to make a short entry highlighting the new jobs posted on the <a href="http://jobs.osflash.org/" title="Flash and Flex Jobs">OSFlash Job Board</a>. Here's the first one!</p>
<ul>
<li><a href="http://jobs.osflash.org/job/c9c9f41673b7fdd48855558ec1bde676/?d=1">Flash / Actionscript 3.0  Game Developer</a> - Confidential, Chicago, IL and Raleigh, NC</li>
<li><a href="http://jobs.osflash.org/job/257e8ba8437333e691fef6efc3165bb9/?d=1">Lead Flash Developer</a> - LocaModa, Cambridge, MA</li>
<li><a href="http://jobs.osflash.org/job/9328b6a14e74b08dc1fbfc6c75968c55/?d=1">Lead Actionscript developer</a> - NDi Media, Montreal, QC, Canada</li>
<li><a href="http://jobs.osflash.org/job/0d6d083f517c708cfc49e062aa52be69/?d=1">ActionScript 3 Engineer</a> - DigiDeal Corporation, Spokane Valley, WA</li>
<li><a href="http://jobs.osflash.org/job/67fb3160fc3e3b47682b1d2f0dda575b/?d=1">Flash Developer</a> - Confidential, Santa Monica, CA</li>
<li><a href="http://jobs.osflash.org/job/1b4d9b11ba5ddf45c498e79fb54010c1/?d=1">Sr Flash AS3 Engineer/Developer</a> - Confidential, Palo Alto, CA (telecommute)</li>
</ul>
<p><span id="more-1289"></span></p>
<p>Find these jobs and more at the <a href="http://jobs.osflash.org/" title="Flash and Flex Jobs">OSFlash Job Board</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://aralbalkan.com/1289/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-nc/2.0/uk/</creativeCommons:license>
	</item>
		<item>
		<title>OSFlash Job Board relaunch: Flash, Flex, and ActionScript job listings at half price</title>
		<link>http://aralbalkan.com/1270</link>
		<comments>http://aralbalkan.com/1270#comments</comments>
		<pubDate>Tue, 25 Mar 2008 11:24:52 +0000</pubDate>
		<dc:creator>Aral</dc:creator>
				<category><![CDATA[Community]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Jobs]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[actionscript jobs]]></category>
		<category><![CDATA[Adobe]]></category>
		<category><![CDATA[AIR]]></category>
		<category><![CDATA[designer]]></category>
		<category><![CDATA[developer]]></category>
		<category><![CDATA[flash jobs]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[flex jobs]]></category>
		<category><![CDATA[job board]]></category>
		<category><![CDATA[job listings]]></category>
		<category><![CDATA[OSFlash]]></category>

		<guid isPermaLink="false">http://aralbalkan.com/1270</guid>
		<description><![CDATA[Do you have a Flash, Flex, or ActionScript job to post? Post it on the OSFlash Job Board. I've just relaunched the OSFlash Job Board and all jobs listings are 50% off this week if you use the coupon code RELAUNCH. This expires on April 1st, 2008 (no joke!) :) If you want to get [...]]]></description>
			<content:encoded><![CDATA[<p id="top" /><a href="http://jobs.osflash.org/" title="Open Source Flash Jobs"><img src="http://aralbalkan.com/wp-content/uploads/2008/03/flash_flex_actionscript_job_board.gif" title="Flash, Flex, ActionScript Job Board"></a></p>
<p>Do you have a <a href="http://jobs.osflash.org/" title="Open Source Flash Jobs">Flash, Flex, or ActionScript job</a> to post? Post it on the <a href="http://jobs.osflash.org/" title="Flash, Flex, and ActionScript Jobs">OSFlash Job Board</a>.</p>
<p><span id="more-1270"></span></p>
<p>I've just relaunched the OSFlash Job Board and all jobs listings are 50% off this week if you use the coupon code RELAUNCH. This expires on April 1st, 2008 (no joke!) :)</p>
<p>If you want to get notified of new jobs, you can <a href="http://jobs.osflash.org/jt/jobs/addedit_alert.php">get job alerts by email</a> or <a href="http://jobs.osflash.org/feeds/rss20" title="Flash, Flex, and ActionScript jobs RSS feed">subscribe to the RSS feed</a>.</p>
<p>The OSFlash Job Board initially launched last year using the <a href="http://joard.com/" title="Joard BETA. It's a job board. You put it on your site and make money.">Joard</a> system that my friend and business partner <a href="http://builtbydave.co.uk/" title="BuiltByDave.co.uk, by David Stone">Dave Stone</a> was developing. Dave decided to discontinue Joard at the start of this year so we were left without a job board. </p>
<p>It has taken a little while to get everything set up again but the job board is now back up and running using the excellent <a href="http://www.jobthread.com/" title="JobThread - EasyPost">JobThread</a> system. </p>
<p><a href="http://osflash.org" title="Open Source Flash">OSFlash</a> gets over 120,000 unique visitors every month. We also have a new job board widget that is featured on the OSFlash.org home page and here on my blog (I get around 70,000 unique visitors a month on this blog). By putting your job listing on the OSFlash Job Board, you'll thus be reaching a very tightly-focussed group of close to 200,000 Flash, Flex, and ActionScript developers, designers, and creatives. </p>
<p>Check out the OSFlash Job Board for <a href="http://jobs.osflash.org/" title="Flash Jobs">Flash jobs</a>, <a href="http://jobs.osflash.org/" title="Flex Jobs">Flex jobs</a>, and <a href="http://jobs.osflash.org/" title="ActionScript Jobs">ActionScript jobs</a> and don't forget to use the RELAUNCH coupon code to get 50% off your job listing until April 1st, 2008.</p>
<p>If you want to help support OSFlash, tell your friends about the OSFlash Job Board by adding the OSFlash Job Board widget to your site. </p>
<h4>OSFlash Job Board Widget (JavaScript)</h4>
<pre class="javascript">&lt;script type=<span style="color: #3366CC;">&quot;text/javascript&quot;</span>&gt;
&lt;!-- 
<span style="color: #003366; font-weight: bold;">var</span> jobthread_jobroll_title = <span style="color: #3366CC;">&quot;Jobs&quot;</span>;
<span style="color: #003366; font-weight: bold;">var</span> jobthread_jobroll_outer_style = <span style="color: #3366CC;">&quot;background-color:#dddddd;border:1px solid #999999;width:160px;&quot;</span>;
<span style="color: #003366; font-weight: bold;">var</span> jobthread_jobroll_inner_style = <span style="color: #3366CC;">&quot;background-color:#ffffff;color:#666666;border:1px solid #999999;margin-left:10px;margin-right:10px;padding:10px 10px 2px 8px;font:11px Arial, Helvetica, Sans-serif;line-height:16px;&quot;</span>;
<span style="color: #003366; font-weight: bold;">var</span> jobthread_jobroll_title_style = <span style="color: #3366CC;">&quot;color:#313131;font-weight:bold;&quot;</span>;
<span style="color: #003366; font-weight: bold;">var</span> jobthread_jobroll_link_style = <span style="color: #3366CC;">&quot;color:#0464bb;font-size:11px;font-weight:bold;text-decoration:none;border:none;&quot;</span>;
<span style="color: #003366; font-weight: bold;">var</span> jobthread_jobroll_featured_style = <span style="color: #3366CC;">&quot;&quot;</span>;
<span style="color: #003366; font-weight: bold;">var</span> jobthread_jobroll_featured_link_style = <span style="color: #3366CC;">&quot;&quot;</span>;
<span style="color: #003366; font-weight: bold;">var</span> jobthread_jobroll_top_style = <span style="color: #3366CC;">&quot;padding-top:8px;&quot;</span>;
<span style="color: #003366; font-weight: bold;">var</span> jobthread_jobroll_bottom_style = <span style="color: #3366CC;">&quot;padding-bottom:4px;&quot;</span>;
<span style="color: #009900; font-style: italic;">//--&gt;</span>
&lt;/script&gt;
&lt;script type=<span style="color: #3366CC;">&quot;text/javascript&quot;</span> src=<span style="color: #3366CC;">&quot;http://jobs.osflash.org/feeds/jobroll/?num_jobs=5&amp;num_featured_jobs=1&amp;display_method=default&amp;version=2.0&quot;</span>&gt;&lt;/script&gt;</pre>
<h4>OSFlash Job Board WordPress widget</h4>
<p>I also made a simple WordPress Widget that you can use to add the Job Board to your WordPress blog's sidebar. Download the OSFlash Job Board WordPress widget. </p>
<p>Once you've downloaded it, simply extract it into your wp-content/plugins folder, activate it, and add it to your sidebar from the Widgets section of the WordPress administration tool. (Note: The CSS positioning is set for my site, you may need to modify it to make it display correctly for yours.)</p>
<p>Here's the source for the OSFlash Job Board WordPress plugin. It's released under the open source MIT license, so please feel free to use and adapt it to make your own WordPress plugins too. </p>
<pre class="php"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #808080; font-style: italic;">/*
Plugin Name: OSFlash Job Board Badge
Plugin URI: http://aralbalkan.com
Description: Displays the OSFlash Job Board Badge on your WordPress blog. Released under the MIT License. Copyright (c) 2008 Aral Balkan. http://aralbalkan.com.
Author: Aral Balkan
Version: 1.0
Author URI: http://aralbalkan.com
*/</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">function</span> osflash_job_board_widget_init<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>
<span style="color: #66cc66;">&#123;</span>
	<span style="color: #b1b100;">if</span> <span style="color: #66cc66;">&#40;</span> !<a href="http://www.php.net/function_exists"><span style="color: #000066;">function_exists</span></a><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">'register_sidebar_widget'</span><span style="color: #66cc66;">&#41;</span> || !<a href="http://www.php.net/function_exists"><span style="color: #000066;">function_exists</span></a><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">'register_widget_control'</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#41;</span>
		<span style="color: #b1b100;">return</span>; 
&nbsp;
	<span style="color: #000000; font-weight: bold;">function</span> osflash_job_board_widget<span style="color: #66cc66;">&#40;</span><span style="color: #0000ff;">$args</span><span style="color: #66cc66;">&#41;</span>
	<span style="color: #66cc66;">&#123;</span>
		<a href="http://www.php.net/extract"><span style="color: #000066;">extract</span></a><span style="color: #66cc66;">&#40;</span><span style="color: #0000ff;">$args</span><span style="color: #66cc66;">&#41;</span>; 
&nbsp;
		<a href="http://www.php.net/echo"><span style="color: #000066;">echo</span></a> <span style="color: #0000ff;">$before_widget</span>; 
&nbsp;
		<span style="color: #000000; font-weight: bold;">?&gt;</span>
&lt;div <span style="color: #000000; font-weight: bold;">class</span>=<span style="color: #ff0000;">&quot;osflashJobBoard&quot;</span>&gt;
				&lt;script type=<span style="color: #ff0000;">&quot;text/javascript&quot;</span>&gt;
				&lt;!-- 
				<span style="color: #000000; font-weight: bold;">var</span> jobthread_jobroll_title = <span style="color: #ff0000;">&quot;Jobs&quot;</span>;
				<span style="color: #000000; font-weight: bold;">var</span> jobthread_jobroll_outer_style = <span style="color: #ff0000;">&quot;background-color:#dddddd;border:1px solid #999999;width:160px;&quot;</span>;
				<span style="color: #000000; font-weight: bold;">var</span> jobthread_jobroll_inner_style = <span style="color: #ff0000;">&quot;background-color:#ffffff;color:#666666;border:1px solid #999999;margin-left:10px;margin-right:10px;padding:10px 10px 2px 8px;font:11px Arial, Helvetica, Sans-serif;line-height:16px;&quot;</span>;
				<span style="color: #000000; font-weight: bold;">var</span> jobthread_jobroll_title_style = <span style="color: #ff0000;">&quot;color:#313131;font-weight:bold;&quot;</span>;
				<span style="color: #000000; font-weight: bold;">var</span> jobthread_jobroll_link_style = <span style="color: #ff0000;">&quot;color:#0464bb;font-size:11px;font-weight:bold;text-decoration:none;border:none;&quot;</span>;
				<span style="color: #000000; font-weight: bold;">var</span> jobthread_jobroll_featured_style = <span style="color: #ff0000;">&quot;&quot;</span>;
				<span style="color: #000000; font-weight: bold;">var</span> jobthread_jobroll_featured_link_style = <span style="color: #ff0000;">&quot;&quot;</span>;
				<span style="color: #000000; font-weight: bold;">var</span> jobthread_jobroll_top_style = <span style="color: #ff0000;">&quot;padding-top:8px;&quot;</span>;
				<span style="color: #000000; font-weight: bold;">var</span> jobthread_jobroll_bottom_style = <span style="color: #ff0000;">&quot;padding-bottom:4px;&quot;</span>;
				<span style="color: #808080; font-style: italic;">//--&gt;</span>
				<span style="color: #000000; font-weight: bold;">&lt;/script&gt;</span>
				&lt;script type=<span style="color: #ff0000;">&quot;text/javascript&quot;</span> src=<span style="color: #ff0000;">&quot;http://jobs.osflash.org/feeds/jobroll/?num_jobs=5&amp;num_featured_jobs=1&amp;display_method=default&amp;version=2.0&quot;</span>&gt;&lt;/script&gt;
			&lt;/div&gt;
&nbsp;
		<span style="color: #000000; font-weight: bold;">&lt;?php</span>
&nbsp;
		<a href="http://www.php.net/echo"><span style="color: #000066;">echo</span></a> <span style="color: #0000ff;">$after_widget</span>;
	<span style="color: #66cc66;">&#125;</span>
&nbsp;
	<span style="color: #808080; font-style: italic;">// Register widget</span>
	register_sidebar_widget<span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">'OSFlash Job Board'</span>, <span style="color: #ff0000;">'osflash_job_board_widget'</span><span style="color: #66cc66;">&#41;</span>;
<span style="color: #66cc66;">&#125;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">function</span> osflash_job_board_style<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>
<span style="color: #66cc66;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">?&gt;</span>	
&lt;style type=<span style="color: #ff0000;">&quot;text/css&quot;</span>&gt;
		.osflashJobBoard
		<span style="color: #66cc66;">&#123;</span>
			position: absolute;
			left: 20px;
		<span style="color: #66cc66;">&#125;</span>
		&lt;/style&gt;
&nbsp;
	<span style="color: #000000; font-weight: bold;">&lt;?</span>
<span style="color: #66cc66;">&#125;</span>
&nbsp;
<span style="color: #808080; font-style: italic;">// Add widget once plugins are loaded.</span>
add_action<span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">'plugins_loaded'</span>, <span style="color: #ff0000;">'osflash_job_board_widget_init'</span><span style="color: #66cc66;">&#41;</span>;
&nbsp;
<span style="color: #808080; font-style: italic;">// Add the badge's CSS to the head.</span>
add_action<span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">'wp_head'</span>, <span style="color: #ff0000;">'osflash_job_board_style'</span><span style="color: #66cc66;">&#41;</span>;
&nbsp;
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre>
<p><strong>Update:</strong> There was a small hiccup right after the blog announcement. If you couldn't reach OSFlash.org or jobs.osflash.org, please try again. It's back up and running! Thanks!</p>
]]></content:encoded>
			<wfw:commentRss>http://aralbalkan.com/1270/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-nc/2.0/uk/</creativeCommons:license>
	</item>
		<item>
		<title>SWX Jobs</title>
		<link>http://aralbalkan.com/1022</link>
		<comments>http://aralbalkan.com/1022#comments</comments>
		<pubDate>Mon, 03 Sep 2007 10:39:31 +0000</pubDate>
		<dc:creator>Aral</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[Jobs]]></category>
		<category><![CDATA[SWX]]></category>

		<guid isPermaLink="false">http://aralbalkan.com/1022</guid>
		<description><![CDATA[Intercasting Corporation has a job opening for a Flash/Flash Lite Handset Developer and they list knowledge of SWX as a nice-to-have skill on the job description. Another OSFlash project, Red5, is also listed in the same section. It's really cool to see development houses adopting SWX for Flash and Flash Lite development. If you have [...]]]></description>
			<content:encoded><![CDATA[<p id="top" /><a href="http://seeker.dice.com/jobsearch/servlet/JobSearch?op=302&amp;dockey=xml/2/6/264c57c683f779abb2bb6dc07332eb50" title="Dice - Advanced JobSearch"><img src="http://aralbalkan.com/wp-content/uploads/2007/09/intercasting_corp_swx_job.png" alt="Intercasting Corp swx job" height="150" width="500"></a></p>
<p>Intercasting Corporation has <a href="http://seeker.dice.com/jobsearch/servlet/JobSearch?op=302&amp;dockey=xml/2/6/264c57c683f779abb2bb6dc07332eb50" title="Dice - Advanced JobSearch">a job opening for a Flash/Flash Lite Handset Developer</a> and they list knowledge of <a href="http://swxformat.org/" title="SWX: SWF Data Format">SWX</a> as a nice-to-have skill on the job description. Another <a href="http://osflash.org" title="Recent News Open Source Flash">OSFlash</a> project, <a href="osflash.org/red5">Red5</a>, is also listed in the same section. </p>
<p><span id="more-1022"></span></p>
<p>It's really cool to see development houses adopting SWX for Flash and Flash Lite development. If you have any relevant job openings that you want to advertise, please feel free to contact me via the comments or send an email to the <a href="http://osflash.org/mailman/listinfo/swx_osflash.org" title="swx Info Page">SWX mailing list</a>. </p>
<p>There's also a <a href="http://jobs.osflash.org/">Flash and Flex job board on OSFlash</a> if you want to reach a more targeted audience of open source Flash developers.</p>
<p>Also, if you're making things with SWX and want to get exposure for them, feel free to leave a link at the <a href="http://swxformat.org/showcase/">SWX Showcase</a> and I will feature them there.</p>
<p><em>Thanks go to Alex Tur of <a href="http://www.sonopia.com/">Sonopia</a> for bringing this to my attention. Thanks, man!</em></p>
]]></content:encoded>
			<wfw:commentRss>http://aralbalkan.com/1022/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-nc/2.0/uk/</creativeCommons:license>
	</item>
		<item>
		<title>OSFlash Job Board: Now affordable! :)</title>
		<link>http://aralbalkan.com/944</link>
		<comments>http://aralbalkan.com/944#comments</comments>
		<pubDate>Wed, 23 May 2007 22:43:10 +0000</pubDate>
		<dc:creator>Aral</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[Jobs]]></category>
		<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://aralbalkan.com/944</guid>
		<description><![CDATA[We've reduced the cost of posting a job on the OSFlash job board to a far more affordable $50 per job. It used to be $200 per job, which I personally thought was really excessive! Thankfully, Dave updated his Joard job board engine so that job board owners can now set their own prices so [...]]]></description>
			<content:encoded><![CDATA[<p id="top" />We've reduced the cost of posting a job on the <a href="http://jobs.osflash.org/">OSFlash job board</a> to a far more affordable $50 per job.</p>
<p>It used to be $200 per job, which I personally thought was really excessive! Thankfully, Dave updated his <a href="http://joard.com">Joard</a> job board engine so that job board owners can now set their own prices so I've lowered it to the lowest it allows. </p>
<p><span id="more-944"></span></p>
<p>Dave, can you believe it, I'm actually blogging the price reduction finally -- will miracles ever cease? (And there's 20 minutes to go to midnight so I theoretically could have put this off for at least another quarter of an hour without breaking my word!) :P </p>
<p>Oh yeah, and $50 US actually means £26.40 or so (depending on the current exchange rate) in the UK. not something ridiculous like £50. See, Adobe, it <em>can</em> be done! (And I <em>live</em> in the UK for goodness sake!)</p>
<p>OK, that's it for the word from our sponsors, now back to late-night <a href="http://swxformat.org">SWX</a> hacking in preparation for the Beta. This must be what prolonged childbirth must be like... I really want this beta to pop out now. Come on baby, o-n-e &nbsp; m-o-r-e  &nbsp; p-u-s-h !</p>
]]></content:encoded>
			<wfw:commentRss>http://aralbalkan.com/944/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-nc/2.0/uk/</creativeCommons:license>
	</item>
		<item>
		<title>Free Flash/Flex job postings in April</title>
		<link>http://aralbalkan.com/908</link>
		<comments>http://aralbalkan.com/908#comments</comments>
		<pubDate>Mon, 09 Apr 2007 09:54:49 +0000</pubDate>
		<dc:creator>Aral</dc:creator>
				<category><![CDATA[Jobs]]></category>

		<guid isPermaLink="false">http://aralbalkan.com/908</guid>
		<description><![CDATA[For the rest of this month, you can add your Flash, Flex and ActionScript jobs for free to the OSFlash job board using the promo code freeffas. Enjoy! :)]]></description>
			<content:encoded><![CDATA[<p id="top" />For the rest of this month, you can add your <a href="http://jobs.osflash.org/">Flash, Flex and ActionScript jobs</a> for free to the <a href="http://jobs.osflash.org/">OSFlash job board</a> using the promo code <strong>freeffas</strong>. </p>
<p>Enjoy! :)</p>
]]></content:encoded>
			<wfw:commentRss>http://aralbalkan.com/908/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-nc/2.0/uk/</creativeCommons:license>
	</item>
		<item>
		<title>Flash, Flex and ActionScript jobs at OSFlash</title>
		<link>http://aralbalkan.com/883</link>
		<comments>http://aralbalkan.com/883#comments</comments>
		<pubDate>Tue, 20 Mar 2007 07:45:03 +0000</pubDate>
		<dc:creator>Aral</dc:creator>
				<category><![CDATA[Jobs]]></category>

		<guid isPermaLink="false">http://aralbalkan.com/883</guid>
		<description><![CDATA[There's now a new job board on OSFlash for Flash, Flex and ActionScript jobs. Posting your jobs on there is a great way to reach an audience of over 100,000 Flash and Flex developers and support OSFlash at the same time :) (We had 110,000 unique visitors last month and that number is currently growing [...]]]></description>
			<content:encoded><![CDATA[<p id="top" /><a href="http://jobs.osflash.org"><img src="http://aralbalkan.com/wp-content/uploads/2007/03/osflash_job_board.jpg" alt="OSFlash Job Board" height="354" width="500"></a></p>
<p>There's now a new job board on <a href="http://osflash.org">OSFlash</a> for <a href="http://jobs.osflash.org">Flash, Flex and ActionScript jobs</a>.</p>
<p><span id="more-883"></span></p>
<p>Posting your jobs on there is a great way to reach an audience of over 100,000 Flash and Flex developers and support OSFlash at the same time :) (We had 110,000 unique visitors last month and that number is currently growing by about 10,000 each month.) </p>
<p>I announced the OSFlash Job Board last night on the <a href="http://osflash.org/mailman/listinfo/osflash_osflash.org">OSFlash mailing list</a>. Here's an excerpt from that email:</p>
<blockquote><p>I'm setting up a job board on OSFlash for posting Flash, Flex and ActionScript positions. I've been trying to find a way to make OSFlash self-sustaining for a while so I can devote more time to it and this<br />
seems like a non-intrusive way of doing that. Of course you're all more than welcome to keep sending job announcements to the mailing list but please do mention the job board to your companies, etc., as it would be a great way for them to get more exposure on the web site and support OSFlash at the same time.</p>
<p>You can view the job board at:</p>
<p><a href="http://jobs.osflash.org">http://jobs.osflash.org</a></p>
<p>To kick things off, please feel free to send me your job announcements (you can reply to this post or email me directly) and I'll put up the first ten myself without charge. (I'd do more but I added a few jobs just a few moments ago and remembered how much I hate data entry -- I don't think I could take any more manual labor!) :) Of course, if you'd like to support the effort, please feel free to put in a job announcement yourself :)</p>
<p>To help me out, please provide the following info:</p>
<p>Company, URL, Title: (of job position), Location, Category (Design, Development, Animation, or Management), Type (Full Time, Part Time, or Contract), Description (a longer textual description of the job, no HTML), Contact Information (who should they contact to apply and how; email, phone, etc.)</p></blockquote>
<p>The job board itself is powered by <a href="http://joard.com/">Joard</a> -- a "web 2.0" job board application by my good friend Dave, whom you may know better as <a href="http://builtbydave.co.uk">builtbydave</a>. I'm so happy that OSFlash is the first live Joard job board and I'm sure that Joard is going to be hugely successful -- great stuff, Dave!</p>
<p>Feel free to send me your comments, suggestions, etc. or just reply to this post.</p>
]]></content:encoded>
			<wfw:commentRss>http://aralbalkan.com/883/feed</wfw:commentRss>
		<slash:comments>11</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-nc/2.0/uk/</creativeCommons:license>
	</item>
	</channel>
</rss>

