<?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>aegypius://</title> <atom:link href="http://www.aegypius.com/feed/" rel="self" type="application/rss+xml" /><link>http://www.aegypius.com</link> <description>think, experiment &#38; share</description> <lastBuildDate>Wed, 24 Feb 2010 14:13:27 +0000</lastBuildDate> <generator>http://wordpress.org/?v=2.9.2</generator> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <item><title>&#8220;deviantART widgets for WordPress&#8221; 0.1.6 released</title><link>http://www.aegypius.com/2010/02/deviantart-widgets-for-wordpress-0-1-6-released/</link> <comments>http://www.aegypius.com/2010/02/deviantart-widgets-for-wordpress-0-1-6-released/#comments</comments> <pubDate>Wed, 24 Feb 2010 14:11:37 +0000</pubDate> <dc:creator>aegypius</dc:creator> <category><![CDATA[Development]]></category> <category><![CDATA[News]]></category> <category><![CDATA[plugin]]></category> <category><![CDATA[wordpress]]></category><guid isPermaLink="false">http://www.aegypius.com/?p=90</guid> <description><![CDATA[&#8220;deviantART widgets for Wordpress&#8221; 0.1.6 is out !What&#8217;s this ? After some infructuous searches, I started to develop this plugin for myself to help me share my interest on graphism and art in general. So here it is ! You can now promote your favorites artists, your art or simply your journal into your blog. Built-in FeaturesSupports Favourites, [...]]]></description> <content:encoded><![CDATA[<p>&#8220;deviantART widgets for Wordpress&#8221; 0.1.6 is out !<br /> <span id="more-90"></span></p><h2>What&#8217;s this ?</h2><p>After some infructuous searches, I started to develop this plugin for myself to help me share my interest on graphism and art in general.</p><p>So here it is ! You can now promote your favorites artists, your art or simply your journal into your blog.</p><h2>Built-in Features</h2><ul><li>Supports Favourites, Galleries and Journal Feeds</li><li>Cache management to preserve performance and bandwidth consumption</li><li>Thumbnail generation</li><li>Unlimited number of widgets</li><li>User folder filtering for Galleries and Favourites</li><li>Custom CSS administration</li><li>Setup checks to avoid incompatibilities</li><li>And more to come &#8230;</li></ul><h2>Prerequisites, Downloads</h2><h3>Requirements</h3><ul><li>WordPress 2.8 or greater.</li><li>PHP 5 with curl</li></ul><h3>Downloads</h3><p>You call go to WordPress hosted site at : <a href="http://wordpress.org/extend/plugins/deviantart-widgets/">http://wordpress.org/extend/plugins/deviantart-widgets/</a> to download stables versions. You can also use the builtin plugin installer provided with WordPress or use <a title="deviantART github downloads" href="http://github.com/aegypius/wp-da-widgets/downloads" target="_blank">github/downloads</a> to get pre-releases (advanced users only).</p><h2>Source</h2><p>Source code is managed on <a title="deviantART git repository" href="http://github.com/aegypius/wp-da-widgets" target="_blank">github/source</a>, feel free to check it out !</p><h2>Support</h2><p>Found an issue ? Please report it on <a title="deviantART widgets issue tracker" href="http://github.com/aegypius/wp-da-widgets/issues" target="_blank">github/issues</a></p> ]]></content:encoded> <wfw:commentRss>http://www.aegypius.com/2010/02/deviantart-widgets-for-wordpress-0-1-6-released/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>How to make your custom Android ROM &#8211; Compiling the system (part 2)</title><link>http://www.aegypius.com/2010/01/how-to-make-your-custom-android-rom-compiling-syste-part-2/</link> <comments>http://www.aegypius.com/2010/01/how-to-make-your-custom-android-rom-compiling-syste-part-2/#comments</comments> <pubDate>Wed, 06 Jan 2010 11:44:13 +0000</pubDate> <dc:creator>aegypius</dc:creator> <category><![CDATA[Development]]></category> <category><![CDATA[android]]></category> <category><![CDATA[how-to]]></category><guid isPermaLink="false">http://www.aegypius.com/?p=70</guid> <description><![CDATA[Part 2 &#8211; The Compilation This post is more generic than the previous one, every linux may work : Let&#8217;s get the sources, Google uses a tool called &#8220;repo&#8221; so you need first to get this tool. mkdir ~/bin cat &#62;&#62; ~/.bashrc # set PATH so it includes user's private bin if it exists if [ -d ~/bin ] ; then [...]]]></description> <content:encoded><![CDATA[<h2>Part 2 &#8211; The Compilation</h2><p>This post is more generic than the previous one, every linux may work :</p><p>Let&#8217;s get the sources, Google uses a tool called &#8220;repo&#8221; so you need first to get this tool.</p><pre class="brush:bash">mkdir ~/bin
cat &gt;&gt; ~/.bashrc
# set PATH so it includes user's private bin if it exists
if [ -d ~/bin ] ; then
  PATH=~/bin:"${PATH}"
fi</pre><pre class="brush:bash">source ~/.bash_profile</pre><p>This step allow you to have your own bin directory so you don&#8217;t mess your system with binaries that are not managed by emerge.</p><pre class="brush:bash">curl http://android.git.kernel.org/repo &gt; ~/bin/repo
chmod a+x ~/bin/repo</pre><p>Let&#8217;s try :</p><pre class="brush:bash">repo --version
repo version v1.6.8.8
        (from git://android.git.kernel.org/tools/repo.git)
git version 1.6.5.6
Python 2.6.4 (r264:75706, Dec  7 2009, 12:35:13)
[GCC 4.1.2 (Gentoo 4.1.2 p1.3)]</pre><p>Now we will initialize android repository.</p><pre class="brush:bash">mkdir -p ~/src/android
cd ~/src/android
repo init -u git://android.git.kernel.org/platform/manifest.git -b donut</pre><p>After a while you will be able to synchronize your repository</p><pre class="brush:bash">repo sync
export ANDROID_JAVA_HOME=$JAVA_HOME
make</pre><p>Now compile is running &#8230;</p><p>272 minutes later, compilation completed  (on my AMD Athlon XP 3200+) !</p><p>In the next part we will test our fresh build !</p><p>See You !</p> ]]></content:encoded> <wfw:commentRss>http://www.aegypius.com/2010/01/how-to-make-your-custom-android-rom-compiling-syste-part-2/feed/</wfw:commentRss> <slash:comments>7</slash:comments> </item> <item><title>deviantART widgets plugin for Wordpress</title><link>http://www.aegypius.com/2009/12/deviantart-widgets-plugin-for-wordpress/</link> <comments>http://www.aegypius.com/2009/12/deviantart-widgets-plugin-for-wordpress/#comments</comments> <pubDate>Mon, 28 Dec 2009 14:07:57 +0000</pubDate> <dc:creator>aegypius</dc:creator> <category><![CDATA[Development]]></category> <category><![CDATA[plugin]]></category> <category><![CDATA[wordpress]]></category><guid isPermaLink="false">http://www.aegypius.com/?p=54</guid> <description><![CDATA[This is the end of the sad &#8220;text-only&#8221; sidebars ! This plugin allows to display deviantART feeds into your WordPress blog. What&#8217;s this ? After some infructuous searches, I started to develop this plugin for myself to help me share my interest on graphism and art in general. So here it is ! You can now promote [...]]]></description> <content:encoded><![CDATA[<p>This is the end of the sad &#8220;text-only&#8221; sidebars ! This plugin allows to display deviantART feeds into your WordPress blog. <span id="more-54"></span></p><h2>What&#8217;s this ?</h2><p>After some infructuous searches, I started to develop this plugin for myself to help me share my interest on graphism and art in general.</p><p>So here it is ! You can now promote your favorites artists, your art or simply your journal into your blog.</p><h2>Built-in Features</h2><ul><li>Supports Favourites, Galleries and Journal Feeds</li><li>Cache management to preserve performance and bandwidth consumption</li><li>Thumbnail generation</li><li>Unlimited number of widgets</li><li>And more to come &#8230;</li></ul><h2>Prerequisites, Downloads</h2><h3>Requirements</h3><ul><li>WordPress 2.8 or greater.</li><li>PHP 5 with curl</li></ul><h3>Downloads</h3><p>You call go to WordPress hosted site at : <a href="http://wordpress.org/extend/plugins/deviantart-widgets/">http://wordpress.org/extend/plugins/deviantart-widgets/</a> to download stables versions. You can also use the builtin plugin installer provided with WordPress or use <a title="deviantART github downloads" href="http://github.com/aegypius/wp-da-widgets/downloads" target="_blank">github/downloads</a> to get pre-releases (advanced users only).</p><h2>Source</h2><p>Source code is managed on <a title="deviantART git repository" href="http://github.com/aegypius/wp-da-widgets" target="_blank">github/source</a>, feel free to check it out !</p><h2>Updates</h2><h3>Version 0.1.5</h3><ul><li>Issue #1: Fixed</li><li>Added an option to enable debugging in global options</li><li>Added the possibility to customize CSS styles for the widget in global options</li><li>Fixing locale calls to allow string translation in differents languages (help granted !)</li></ul><h3>Version 0.1.4</h3><ul><li>Issue #1 : Adding an &#8220;Empty cache&#8221; button to clean the plugin cache</li><li>Issue #1 : Adding more tests to check if the plugin is usable</li><li>Issue #1 : Updating thumbnail generation for Gallery mode</li></ul><h3>Version 0.1.3</h3><ul><li>Issue #1: Safe Mode problem</li><li>Prevents &#8220;litteratures&#8221; to show in Favourites and Galleries</li></ul><h3>Version 0.1.2</h3><ul><li>Changing readme.txt tags</li><li>Fixing cache issues when wp-content/cache is not writeable.</li></ul><h3>Version 0.1.1</h3><ul><li>Removes useless settings</li><li>Fix url to thumbnails to uses Wordpress url instead of absolute one</li></ul><h3>Version 0.1</h3><ul><li>Initial release</li><li>Cache support (default: wp-content/cache)</li><li>Thumbnails generation support (default: 80&#215;80/png)</li><li>Supports deviantArt Journals, Galleries and Favourites</li></ul><h2>Support</h2><p>Found an issue ? Please report it on <a title="deviantART widgets issue tracker" href="http://github.com/aegypius/wp-da-widgets/issues" target="_blank">github/issues</a></p> ]]></content:encoded> <wfw:commentRss>http://www.aegypius.com/2009/12/deviantart-widgets-plugin-for-wordpress/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>How to make your custom Android ROM &#8211; The Prerequisites (part 1)</title><link>http://www.aegypius.com/2009/12/how-to-make-your-custom-android-rom-under-gentoo-part-1/</link> <comments>http://www.aegypius.com/2009/12/how-to-make-your-custom-android-rom-under-gentoo-part-1/#comments</comments> <pubDate>Tue, 15 Dec 2009 18:03:28 +0000</pubDate> <dc:creator>aegypius</dc:creator> <category><![CDATA[Development]]></category> <category><![CDATA[android]]></category> <category><![CDATA[gentoo]]></category> <category><![CDATA[how-to]]></category><guid isPermaLink="false">http://www.aegypius.com/?p=14</guid> <description><![CDATA[First of all, this is an experiment tutorial explaining how i complete compilation of Android source on a gentoo. The purpose of this serie of article is to provide a step-by-step way to create your own custom ROM for android. I own a HTC Magic 32B (Google branded) so the tests i will perform is intended [...]]]></description> <content:encoded><![CDATA[<p>First of all, this is an experiment tutorial explaining how i complete compilation of Android source on a gentoo. The purpose of this serie of article is to provide a step-by-step way to create your own custom ROM for android.</p><p>I own a HTC Magic 32B (Google branded) so the tests i will perform is intended to work on this specific platform.</p><p>As you know, it can be risky to modify your Android ROM with a custom one. You&#8217;re warn ! I am not responsible of possible deterioration of your terminal !</p><p>So, let&#8217;s begin !<span id="more-14"></span></p><h2>Part 1 &#8211; The Prerequisites (for Gentoo)</h2><p>You may read the Official documentation located here : <a href="http://source.android.com/download">http://source.android.com/download</a>.</p><p>Let&#8217;s start with dependencies installation,</p><pre class="brush:bash">emerge git gnupg
emerge "&lt;dev-java/sun-jdk-1.6"
emerge flex bison gperf libsdl esound wxGTK
emerge zip unzip curl zlib readline</pre><p>Android does not compile with JDK-1.6 so we have merged a JDK-1.5, let&#8217;s configure your system to use it.</p><pre class="brush:bash">eselect java-vm list
  [1]   sun-jdk-1.5
  [2]   sun-jdk-1.6  system-vm
eselect java-vm set user sun-jdk-1.5</pre><p>or</p><pre class="brush:bash">eselect java-vm set user 1</pre><p>Now you need to refresh your environment :</p><pre class="brush:bash">sudo env-update &amp;&amp; source /etc/profile
</pre><p>Environment is now ready let&#8217;s try to compile android system : <a title="Part 2 - Compiling the system" href="http://wp.me/pyvUI-18">How To make your custom Android ROM &#8211; Compiling the system (part 2)</a></p> ]]></content:encoded> <wfw:commentRss>http://www.aegypius.com/2009/12/how-to-make-your-custom-android-rom-under-gentoo-part-1/feed/</wfw:commentRss> <slash:comments>3</slash:comments> </item> <item><title>First steps with Android SDK</title><link>http://www.aegypius.com/2009/06/first-steps-with-android-sdk/</link> <comments>http://www.aegypius.com/2009/06/first-steps-with-android-sdk/#comments</comments> <pubDate>Tue, 23 Jun 2009 19:57:55 +0000</pubDate> <dc:creator>aegypius</dc:creator> <category><![CDATA[News]]></category> <category><![CDATA[android]]></category><guid isPermaLink="false">http://www.aegypius.com/?p=8</guid> <description><![CDATA[I&#8217;ve just started looking at Android SDK. Java isn&#8217;t my first choice but the project is quite interesting. So here some simple ideas, I will attempt to realize :an upnp client to browse medias on local network another worpress editor via XmlRpc that the one I am using (30 minutes to write this post)]]></description> <content:encoded><![CDATA[<p>I&#8217;ve just started looking at Android SDK. Java isn&#8217;t my first choice but the project is quite interesting.</p><p>So here some simple ideas, I will attempt to realize :</p><ul><li> an upnp client to browse medias on local network</li><li> another worpress editor via XmlRpc that the one I am using (30 minutes to write this post)</li></ul> ]]></content:encoded> <wfw:commentRss>http://www.aegypius.com/2009/06/first-steps-with-android-sdk/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Back online !</title><link>http://www.aegypius.com/2009/06/back-online/</link> <comments>http://www.aegypius.com/2009/06/back-online/#comments</comments> <pubDate>Thu, 18 Jun 2009 07:46:19 +0000</pubDate> <dc:creator>aegypius</dc:creator> <category><![CDATA[News]]></category> <category><![CDATA[general]]></category><guid isPermaLink="false">http://www.aegypius.com/?p=3</guid> <description><![CDATA[After a(nother) long silence aegypius.com is back. This a first strike for the twelfth version of aegypius.com, the purpose of this site is to provide feedback on my reflexion on software developpement, website conceptions &#8230; I will try to post about once a month, so see you soon ! ]]></description> <content:encoded><![CDATA[<p>After a(nother) long silence aegypius.com is back.</p><p>This a first strike for the twelfth version of aegypius.com, the purpose of this site is to provide feedback on my reflexion on software developpement, website conceptions &#8230;</p><p>I will try to post about once a month, so see you soon !</p> ]]></content:encoded> <wfw:commentRss>http://www.aegypius.com/2009/06/back-online/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> </channel> </rss>
<!-- This site's performance optimized by W3 Total Cache. Dramatically improve the speed and reliability of your blog!

Learn more about our WordPress Plugins: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Page Caching using disk (user agent is rejected)
Database Caching 2/12 queries in 0.003 seconds using disk
Content Delivery Network via static.aegypius.com

Served from: cleia.org @ 2010-03-11 22:41:22 -->