<?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>parhelium.pl</title>
	<atom:link href="http://parhelium.pl/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://parhelium.pl/blog</link>
	<description></description>
	<lastBuildDate>Wed, 28 Sep 2011 21:46:17 +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>AS3 XMLSocket : Cannot receive response from socket server&#8230;</title>
		<link>http://parhelium.pl/blog/2011/09/28/as3-xmlsocket-cannot-receive-response-from-socket-server/</link>
		<comments>http://parhelium.pl/blog/2011/09/28/as3-xmlsocket-cannot-receive-response-from-socket-server/#comments</comments>
		<pubDate>Wed, 28 Sep 2011 21:46:17 +0000</pubDate>
		<dc:creator>parhelium</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[AS3]]></category>
		<category><![CDATA[DataEvent]]></category>
		<category><![CDATA[groovy]]></category>
		<category><![CDATA[problem]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[Socket]]></category>
		<category><![CDATA[SocketServer]]></category>
		<category><![CDATA[XMLSocket]]></category>

		<guid isPermaLink="false">http://parhelium.pl/blog/?p=630</guid>
		<description><![CDATA[In XMLSocket documentation you can find few Events. One of them is DataEvent.DATA. Purpose of it is to inform that data from SocketServer was received. This event will not be dispatch until message from SocketServer ends with special ending string: \0 Message from SocketServer\0 For testing purpose I have used SocketServer &#038;&#038; SocketClient written in [...]]]></description>
			<content:encoded><![CDATA[<p>In <a href="http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/net/XMLSocket.html#event:data" title="as3 XMLSocket documentation">XMLSocket documentation</a> you can find few Events. One of them is DataEvent.DATA.<br />
Purpose of it is to inform that data from SocketServer was received.</p>
<p>This event will not be dispatch until message from SocketServer ends with special ending string: <strong>\0</strong></p>
<pre class="brush: text">
Message from SocketServer\0
</pre>
<p>For testing purpose I have used SocketServer &#038;&#038; SocketClient written in Groovy by author of <a href="http://programmingitch.blogspot.com/2010/04/groovy-sockets-example.html" title="groovy sockets example">this post</a>. Below SocketServer example returns what received. </p>
<p>SocketServer (with little modification):</p>
<pre  class="brush: groovy">
import java.net.ServerSocket
def server = new ServerSocket(6667)

while(true) {
    server.accept { socket ->
        println "processing new connection..."
        socket.withStreams { input, output ->
            def reader = input.newReader()
            def buffer = reader.readLine()
            println "server received: $buffer"
            now = new Date()
            output << "echo-response($now): " + buffer + "\0"
        }
        println "processing/thread complete."
    }
}
</pre>
<p>ClientServer:</p>
<pre class="brush: groovy">
s = new Socket("127.0.0.1", 6667);
s.withStreams { input, output ->
  output << "<test>\n"
  buffer = input.newReader().readLine()
  println "response = $buffer"
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://parhelium.pl/blog/2011/09/28/as3-xmlsocket-cannot-receive-response-from-socket-server/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>OpenTok</title>
		<link>http://parhelium.pl/blog/2011/09/02/opentok/</link>
		<comments>http://parhelium.pl/blog/2011/09/02/opentok/#comments</comments>
		<pubDate>Fri, 02 Sep 2011 18:14:27 +0000</pubDate>
		<dc:creator>parhelium</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://parhelium.pl/blog/?p=627</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><iframe id="basicEmbed" src="http://api.opentok.com/hl/embed/1emb97990a0a005faec4809729526d2feea6b7c7" width="550" height="465" style="border:none"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://parhelium.pl/blog/2011/09/02/opentok/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Scripting: Groovy generates CSS</title>
		<link>http://parhelium.pl/blog/2011/08/12/groovy-css-generation/</link>
		<comments>http://parhelium.pl/blog/2011/08/12/groovy-css-generation/#comments</comments>
		<pubDate>Fri, 12 Aug 2011 08:33:52 +0000</pubDate>
		<dc:creator>parhelium</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[generation]]></category>
		<category><![CDATA[groovy]]></category>
		<category><![CDATA[padding]]></category>
		<category><![CDATA[script]]></category>

		<guid isPermaLink="false">http://parhelium.pl/blog/?p=619</guid>
		<description><![CDATA[Groovy is awesome for creating scripts in 20s : ["top":"to","bottom":"bo","right":"ri","left":"le"].each{ w -> (0..20).each { if(it%2==0) println ".${w.value}-${it}{padding-${w.key}: ${it}px;}" } } In result you retrieve: .to-0{padding-top: 0px;} .to-2{padding-top: 2px;} .to-4{padding-top: 4px;} .to-6{padding-top: 6px;} .to-8{padding-top: 8px;} .to-10{padding-top: 10px;} .to-12{padding-top: 12px;} .to-14{padding-top: 14px;} .to-16{padding-top: 16px;} .to-18{padding-top: 18px;} .to-20{padding-top: 20px;} .bo-0{padding-bottom: 0px;} .bo-2{padding-bottom: 2px;} .bo-4{padding-bottom: 4px;} .bo-6{padding-bottom: 6px;} .bo-8{padding-bottom: [...]]]></description>
			<content:encoded><![CDATA[<p>Groovy is awesome for creating scripts in 20s :</p>
<pre class="brush: groovy">
["top":"to","bottom":"bo","right":"ri","left":"le"].each{ w ->
    (0..20).each {
      if(it%2==0) println ".${w.value}-${it}{padding-${w.key}: ${it}px;}"
    }
}
</pre>
<p>In result you retrieve:</p>
<pre class="brush: css">
.to-0{padding-top: 0px;}
.to-2{padding-top: 2px;}
.to-4{padding-top: 4px;}
.to-6{padding-top: 6px;}
.to-8{padding-top: 8px;}
.to-10{padding-top: 10px;}
.to-12{padding-top: 12px;}
.to-14{padding-top: 14px;}
.to-16{padding-top: 16px;}
.to-18{padding-top: 18px;}
.to-20{padding-top: 20px;}
.bo-0{padding-bottom: 0px;}
.bo-2{padding-bottom: 2px;}
.bo-4{padding-bottom: 4px;}
.bo-6{padding-bottom: 6px;}
.bo-8{padding-bottom: 8px;}
.bo-10{padding-bottom: 10px;}
.bo-12{padding-bottom: 12px;}
.bo-14{padding-bottom: 14px;}
.bo-16{padding-bottom: 16px;}
.bo-18{padding-bottom: 18px;}
.bo-20{padding-bottom: 20px;}
.ri-0{padding-right: 0px;}
.ri-2{padding-right: 2px;}
.ri-4{padding-right: 4px;}
.ri-6{padding-right: 6px;}
.ri-8{padding-right: 8px;}
.ri-10{padding-right: 10px;}
.ri-12{padding-right: 12px;}
.ri-14{padding-right: 14px;}
.ri-16{padding-right: 16px;}
.ri-18{padding-right: 18px;}
.ri-20{padding-right: 20px;}
.le-0{padding-left: 0px;}
.le-2{padding-left: 2px;}
.le-4{padding-left: 4px;}
.le-6{padding-left: 6px;}
.le-8{padding-left: 8px;}
.le-10{padding-left: 10px;}
.le-12{padding-left: 12px;}
.le-14{padding-left: 14px;}
.le-16{padding-left: 16px;}
.le-18{padding-left: 18px;}
.le-20{padding-left: 20px;}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://parhelium.pl/blog/2011/08/12/groovy-css-generation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VirtualBox: Shared folders and permission denied</title>
		<link>http://parhelium.pl/blog/2011/07/29/virtualbox-shared-folders-and-permission-denied/</link>
		<comments>http://parhelium.pl/blog/2011/07/29/virtualbox-shared-folders-and-permission-denied/#comments</comments>
		<pubDate>Thu, 28 Jul 2011 23:15:34 +0000</pubDate>
		<dc:creator>parhelium</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[permissions]]></category>
		<category><![CDATA[shared folders]]></category>
		<category><![CDATA[virtualbox]]></category>

		<guid isPermaLink="false">http://parhelium.pl/blog/?p=609</guid>
		<description><![CDATA[Add group to user: /usr/sbin/usermod -a -G vboxsf user List Groups A User Belongs To In Unix: ubuntu$ groups greys greys : admin www-data]]></description>
			<content:encoded><![CDATA[<p>Add group to user:</p>
<pre>
/usr/sbin/usermod -a -G vboxsf user
</pre>
<p>List Groups A User Belongs To In Unix:</p>
<pre>
ubuntu$ groups greys
greys : admin www-data
</pre>
]]></content:encoded>
			<wfw:commentRss>http://parhelium.pl/blog/2011/07/29/virtualbox-shared-folders-and-permission-denied/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows: List all environment variables</title>
		<link>http://parhelium.pl/blog/2011/07/26/windows-list-all-environment-variables/</link>
		<comments>http://parhelium.pl/blog/2011/07/26/windows-list-all-environment-variables/#comments</comments>
		<pubDate>Tue, 26 Jul 2011 21:56:03 +0000</pubDate>
		<dc:creator>parhelium</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[env]]></category>
		<category><![CDATA[listing]]></category>
		<category><![CDATA[variables]]></category>
		<category><![CDATA[win]]></category>

		<guid isPermaLink="false">http://parhelium.pl/blog/?p=603</guid>
		<description><![CDATA[I have just realized there is simple command for listing all environment variables in win7. Open CMD and type: ENV In result you receive: !::=::\ !C:=C:\Users\USER_NAME !EXITCODE=00000000 ALLUSERSPROFILE=C:\ProgramData AMDAPPSDKROOT=C:\Program Files (x86)\AMD APP\ ANT_HOME=G:\base\apps\ant\apache-ant-1.8.1 APPDATA=C:\Users\USER_NAME\AppData\Roaming CLASSPATH=.;C:\Program Files (x86)\Java\jre6\lib\ext\QTJava.zip COMMONPROGRAMFILES=C:\Program Files (x86)\Common Files COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files COMMONPROGRAMW6432=C:\Program Files\Common Files COMPUTERNAME=DESKTOP COMSPEC=C:\Windows\system32\cmd.exe FIREFOX=C:\Program Files (x86)\Mozilla Firefox FLEX_HOME=G:\base\sdk\flex_sdk_4.0.0.14159 [...]]]></description>
			<content:encoded><![CDATA[<p>I have just realized there is simple command for listing all environment variables in win7.<br />
Open CMD and type:</p>
<pre class="brush: text">
ENV
</pre>
<p>In result you receive:</p>
<pre class="brush: text">
!::=::\
!C:=C:\Users\USER_NAME
!EXITCODE=00000000
ALLUSERSPROFILE=C:\ProgramData
AMDAPPSDKROOT=C:\Program Files (x86)\AMD APP\
ANT_HOME=G:\base\apps\ant\apache-ant-1.8.1
APPDATA=C:\Users\USER_NAME\AppData\Roaming
CLASSPATH=.;C:\Program Files (x86)\Java\jre6\lib\ext\QTJava.zip
COMMONPROGRAMFILES=C:\Program Files (x86)\Common Files
COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files
COMMONPROGRAMW6432=C:\Program Files\Common Files
COMPUTERNAME=DESKTOP
COMSPEC=C:\Windows\system32\cmd.exe
FIREFOX=C:\Program Files (x86)\Mozilla Firefox
FLEX_HOME=G:\base\sdk\flex_sdk_4.0.0.14159
FP_NO_HOST_CHECK=NO
GNUPLOT=D:\apps\gnuplot\binaries\
GRADLE_HOME=G:\base\apps\gradle\gradle-1.0-milestone-3
GRAILS_HOME=G:\base\apps\grails\1.3.3
GROOVY_HOME=C:\Program Files (x86)\Groovy\groovy-1.8.0
HOMEDRIVE=C:
HOMEPATH=\Users\USER_NAME
JAVA_HOME=C:\Program Files (x86)\Java\jdk1.6.0_19
LOCALAPPDATA=C:\Users\USER_NAME\AppData\Local
LOGONSERVER=\\DESKTOP
NUMBER_OF_PROCESSORS=8
OS=Windows_NT
PATH=/c/Program Files/Common Files/Microsoft Shared/Windows Live:/c/Program Files (x86)/Common Files/Microsoft Shared/Windows Live:/c/Program Files (x86)/AMD APP/bin/x86_64:/c/Program Files (x86)/AMD APP/bin/x86:/c/Program Files/ImageMagick-6.6.0-Q16:/c/Windows/system32:/c/Windows:/c/Windows/System32/Wbem:/c/Windows/System32/WindowsPowerShell/v1.0/:/c/Program Files (x86)/Java/jdk1.6.0_19/bin:/c/Program Files (x86)/Groovy/groovy-1.8.0/bin:/d/apps/gnuplot/binaries/:/c/Program Files (x86)/QuickTime/QTSystem/:/c/Program Files (x86)/ATI Technologies/ATI.ACE/Core-Static:/g/base/apps/grails/1.3.3/bin:/c/Program Files/TortoiseSVN/bin:/bin:/d/apps/gnuplot/binaries/:/d/apps/play:/g/base/apps/gradle/gradle-1.0-milestone-3/bin:/g/base/apps/ant/apache-ant-1.8.1/lib:/g/base/apps/grails/1.3.3/bin:/c/Program Files (x86)/Java/jdk1.6.0_19/bin:/g/base/sdk/flex_sdk_4.0.0.14159/bin:/c/Program Files (x86)/Calibre2/:/c/Program Files (x86)/Mozilla Firefox:/c/Program Files (x86)/Windows Live/Shared:/g/base/apps/gradle/gradle-1.0-milestone-3/bin:/c/Program Files (x86)/TortoiseSVN/bin:/c/Program Files (x86)/scala/bin:/c/Program Files/Mercurial
PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC;.groovy;.gy
PLAY=D:\apps\play
PROCESSOR_ARCHITECTURE=x86
PROCESSOR_ARCHITEW6432=AMD64
PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 30 Stepping 5, GenuineIntel
PROCESSOR_LEVEL=6
PROCESSOR_REVISION=1e05
PROGRAMDATA=C:\ProgramData
PROGRAMFILES=C:\Program Files (x86)
PROGRAMFILES(X86)=C:\Program Files (x86)
PROGRAMW6432=C:\Program Files
PROMPT=$P$G
PSMODULEPATH=C:\Windows\system32\WindowsPowerShell\v1.0\Modules\
PUBLIC=C:\Users\Public
QTJAVA=C:\Program Files (x86)\Java\jre6\lib\ext\QTJava.zip
SCALA_HOME=C:\Program Files (x86)\scala
SESSIONNAME=Console
SYSTEMDRIVE=C:
SYSTEMROOT=C:\Windows
TEMP=/tmp
TMP=/tmp
USERDOMAIN=DESKTOP
USERNAME=USER_NAME
USERPROFILE=C:\Users\USER_NAME
VBOX_INSTALL_PATH=C:\Program Files\Oracle\VirtualBox\
WINDIR=C:\Windows
TERM=cygwin
</pre>
]]></content:encoded>
			<wfw:commentRss>http://parhelium.pl/blog/2011/07/26/windows-list-all-environment-variables/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gradle: Copy dir with ant and groovy</title>
		<link>http://parhelium.pl/blog/2011/07/25/gradle-copy-dir-with-ant-and-groovy/</link>
		<comments>http://parhelium.pl/blog/2011/07/25/gradle-copy-dir-with-ant-and-groovy/#comments</comments>
		<pubDate>Mon, 25 Jul 2011 10:14:17 +0000</pubDate>
		<dc:creator>parhelium</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[ant]]></category>
		<category><![CDATA[copy]]></category>
		<category><![CDATA[dir]]></category>
		<category><![CDATA[gradle]]></category>
		<category><![CDATA[groovy]]></category>

		<guid isPermaLink="false">http://parhelium.pl/blog/?p=592</guid>
		<description><![CDATA[Simple gradle task written in groovy which copy one dir into another and list all files matched by extension. Inside task you can find one tiny example of formating date in Groovy. Seems to be obvious, but wasn&#8217;t for me&#8230; task deploy file ==~ /.*?\.swf/ }] as FileFilter ).toList() .each{ f -> println "$f,"+ Math.floor(f.size()/1024); [...]]]></description>
			<content:encoded><![CDATA[<p>Simple gradle task written in groovy which copy one dir into another and list all files matched by extension.<br />
Inside task you can find one tiny example of formating date in Groovy. Seems to be obvious, but wasn&#8217;t for me&#8230;</p>
<pre class="brush: groovy">
task deploy << {
	def today = new Date().format("dd-MM-yyyy");
	def srcPath= "G:/projects/job/2011/PROJECT_NAME/fb-bin"
	def desPath = "X:/My Dropbox/Public/PROJECT_NAME/"+today

	println "date: " + today;
	ant.copy(todir: desPath) {
		fileset(dir : srcPath )
	}
	new File(desPath).listFiles(
		[accept:{file-> file ==~ /.*?\.swf/ }] as FileFilter
	).toList()
	 .each{
		 f -> println  "$f,"+ Math.floor(f.size()/1024);
	 }
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://parhelium.pl/blog/2011/07/25/gradle-copy-dir-with-ant-and-groovy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Path to SharedObject (Flash Player Cookies) in Windows 7</title>
		<link>http://parhelium.pl/blog/2011/07/15/path-to-sharedobject-flash-player-cookies-in-windows-7/</link>
		<comments>http://parhelium.pl/blog/2011/07/15/path-to-sharedobject-flash-player-cookies-in-windows-7/#comments</comments>
		<pubDate>Fri, 15 Jul 2011 17:37:50 +0000</pubDate>
		<dc:creator>parhelium</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[bat]]></category>
		<category><![CDATA[explorer]]></category>
		<category><![CDATA[SharedObject]]></category>
		<category><![CDATA[win7]]></category>

		<guid isPermaLink="false">http://parhelium.pl/blog/?p=585</guid>
		<description><![CDATA[Path to SharedObject in Win: %appdata%\Macromedia\Flash Player\#SharedObjects You can easily create SharedObject.bat file which will open SharedObject directory. See below image:]]></description>
			<content:encoded><![CDATA[<p>Path to SharedObject in Win:</p>
<pre>
%appdata%\Macromedia\Flash Player\#SharedObjects
</pre>
<p>You can easily create SharedObject.bat file which will open SharedObject directory. See below image:<a href="http://parhelium.pl/blog/wp-content/uploads/2011/07/SharedObject.jpg"><img src="http://parhelium.pl/blog/wp-content/uploads/2011/07/SharedObject.jpg" alt="" title="Open sharedObject directory" width="573" height="227" class="aligncenter size-full wp-image-588" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://parhelium.pl/blog/2011/07/15/path-to-sharedobject-flash-player-cookies-in-windows-7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Portable web server in java used for flash/flex development</title>
		<link>http://parhelium.pl/blog/2011/07/08/portable-web-server-in-java-used-for-flashflex-development/</link>
		<comments>http://parhelium.pl/blog/2011/07/08/portable-web-server-in-java-used-for-flashflex-development/#comments</comments>
		<pubDate>Fri, 08 Jul 2011 13:41:22 +0000</pubDate>
		<dc:creator>parhelium</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[jar]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[portable]]></category>
		<category><![CDATA[web server]]></category>

		<guid isPermaLink="false">http://parhelium.pl/blog/?p=577</guid>
		<description><![CDATA[Finally I have found very simple web server, which is portable and easy to run. Hero of the day is Jibble Web Server. It allows me to workaround problems with SecurityError in Flash Player when try to load local file from flash/flex app. The most important features for me are: ZERO installation (JVM) simple configuration [...]]]></description>
			<content:encoded><![CDATA[<p>Finally I have found very simple web server, which is portable and easy to run.<br />
Hero of the day is <a title="Jibble Web Server" href="http://www.jibble.org/jibblewebserver.php" target="_blank">Jibble Web Server</a>.<br />
It allows me to workaround problems with SecurityError in Flash Player when try to load local file from flash/flex app.<br />
The most important features for me are:</p>
<ul>
<li>ZERO installation (JVM)</li>
<li>simple configuration (path + port) </li>
<li>works everywhere (JVM)</li>
</ul>
<p>You can run it by typing:</p>
<pre>
java -jar WebServerLite.jar g:\projects\flex 89
</pre>
<p>Thanks !</p>
]]></content:encoded>
			<wfw:commentRss>http://parhelium.pl/blog/2011/07/08/portable-web-server-in-java-used-for-flashflex-development/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Macros in Flash Develop</title>
		<link>http://parhelium.pl/blog/2011/07/08/macros-in-flash-develop/</link>
		<comments>http://parhelium.pl/blog/2011/07/08/macros-in-flash-develop/#comments</comments>
		<pubDate>Fri, 08 Jul 2011 11:01:44 +0000</pubDate>
		<dc:creator>parhelium</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[flash develop]]></category>
		<category><![CDATA[gradle]]></category>
		<category><![CDATA[macros]]></category>

		<guid isPermaLink="false">http://parhelium.pl/blog/?p=560</guid>
		<description><![CDATA[List all gradle tasks in fast mode (with &#8211;daemon arg) directly: cmd.exe;/k gradle -t --daemon]]></description>
			<content:encoded><![CDATA[<p>List all gradle tasks in fast mode (with &#8211;daemon arg) directly: </p>
<pre class="brush: text">
cmd.exe;/k gradle -t --daemon
</pre>
<p><br/><br/><br />
<img src="http://parhelium.pl/blog/wp-content/uploads/2011/07/FD-Macros-Gradle.png" alt="Flash develop : editing macro which lists gradle tasks" title="Flash develop : editing macro which lists gradle tasks" width="567" height="390class="aligncenter size-full wp-image-561" /></p>
]]></content:encoded>
			<wfw:commentRss>http://parhelium.pl/blog/2011/07/08/macros-in-flash-develop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ImageMagick tips</title>
		<link>http://parhelium.pl/blog/2011/06/21/imagemagick-tips/</link>
		<comments>http://parhelium.pl/blog/2011/06/21/imagemagick-tips/#comments</comments>
		<pubDate>Tue, 21 Jun 2011 07:49:00 +0000</pubDate>
		<dc:creator>parhelium</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[bulk]]></category>
		<category><![CDATA[convert]]></category>
		<category><![CDATA[image]]></category>

		<guid isPermaLink="false">http://parhelium.pl/blog/?p=523</guid>
		<description><![CDATA[convert -resize 300&#215;175 *.jpg convert -delay 40 -loop 0 album.gif mogrify -quality 80% -resize 300&#215;175 *.jpg]]></description>
			<content:encoded><![CDATA[<p>convert -resize 300&#215;175 *.jpg<br />
convert -delay 40 -loop 0 album.gif<br />
mogrify -quality 80% -resize 300&#215;175 *.jpg</p>
]]></content:encoded>
			<wfw:commentRss>http://parhelium.pl/blog/2011/06/21/imagemagick-tips/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

