<?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/"
	>

<channel>
	<title>blog.ryara.net</title>
	<atom:link href="http://blog.ryara.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.ryara.net</link>
	<description>new Random(tobbez).Next();</description>
	<pubDate>Mon, 27 Apr 2009 20:09:02 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Ebuild for libsummer</title>
		<link>http://blog.ryara.net/2009/03/28/ebuild-for-libsummer/</link>
		<comments>http://blog.ryara.net/2009/03/28/ebuild-for-libsummer/#comments</comments>
		<pubDate>Sat, 28 Mar 2009 17:48:36 +0000</pubDate>
		<dc:creator>tobbez</dc:creator>
		
		<category><![CDATA[Random stuff]]></category>

		<guid isPermaLink="false">http://blog.ryara.net/?p=93</guid>
		<description><![CDATA[I wrote an ebuild for the broadcatching library libsummer, that recently released version 0.1.0:


# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

DESCRIPTION="A broadcatching library"
SRC_URI="http://flukkost.nu/libsummer/${P}.tar.bz2"
HOMEPAGE="http://wrya.net/services/trac/summer/"
KEYWORDS="~x86 ~amd64"
SLOT="0"
LICENSE="LGPL-2"
IUSE="bittorrent doc python"

DEPEND=">=dev-libs/glib-2.18.4
        >=net-libs/libsoup-2.24.3
        dev-libs/libxml2
    [...]]]></description>
			<content:encoded><![CDATA[<p>I wrote an ebuild for the broadcatching library <a href="http://wrya.net/services/trac/summer/">libsummer</a>, that recently <a href="http://wrya.net/services/mailman/pipermail/summer/2009-March/000001.html">released</a> version 0.1.0:<br />
<code>
<pre>
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

DESCRIPTION="A broadcatching library"
SRC_URI="http://flukkost.nu/libsummer/${P}.tar.bz2"
HOMEPAGE="http://wrya.net/services/trac/summer/"
KEYWORDS="~x86 ~amd64"
SLOT="0"
LICENSE="LGPL-2"
IUSE="bittorrent doc python"

DEPEND=">=dev-libs/glib-2.18.4
        >=net-libs/libsoup-2.24.3
        dev-libs/libxml2
        python? ( >=dev-python/pygobject-2.15.4 )
        bittorrent? ( >=net-libs/rb_libtorrent-0.14.1 )
        doc? ( dev-util/gtk-doc )"

RDEPEND="${DEPEND}"

RESTRICT="mirror"

src_compile() {
        econf $(use_enable bittorrent) $(use_enable python) $(use_enable doc gtk-doc) || die "econf failed"
        emake || die "emake failed"
}

src_install() {
        emake install DESTDIR="${D}" || die "Install failed"
        dodoc ChangeLog NEWS README AUTHORS
}</pre>
<p></code><br />
Download available <a href='http://blog.ryara.net/files/libsummer-0.1.0-ebuild.tar.bz2'>here</a>. To use unpack directly to your portage overlay.</p>
<p>Note: If you want the bittorrent functionaliy you will have to unmask net-libs/rb_libtorrent-0.14.1. It&#8217;s hard masked because it breaks a lot of packages relying on 0.13. Libsummer, however, was built on 0.14.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.ryara.net/2009/03/28/ebuild-for-libsummer/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Mailman with lighttpd and Postfix on Gentoo</title>
		<link>http://blog.ryara.net/2009/03/27/mailman-with-lighttpd-and-postfix-on-gentoo/</link>
		<comments>http://blog.ryara.net/2009/03/27/mailman-with-lighttpd-and-postfix-on-gentoo/#comments</comments>
		<pubDate>Fri, 27 Mar 2009 00:38:41 +0000</pubDate>
		<dc:creator>tobbez</dc:creator>
		
		<category><![CDATA[Computers]]></category>

		<category><![CDATA[gentoo]]></category>

		<category><![CDATA[lighttpd]]></category>

		<category><![CDATA[mailman]]></category>

		<category><![CDATA[postfix]]></category>

		<guid isPermaLink="false">http://blog.ryara.net/?p=67</guid>
		<description><![CDATA[This post details how to setup mailman using lighttpd and postfix on gentoo.
Before starting I assume that you have:
* Lighttpd setup and working
* Postfix setup to handle mail from one domain
* MX records setup for the subdomain you want to use for lists
First, we need to install mailman, but before we do that we need [...]]]></description>
			<content:encoded><![CDATA[<p>This post details how to setup mailman using lighttpd and postfix on gentoo.</p>
<p>Before starting I assume that you have:<br />
* Lighttpd setup and working<br />
* Postfix setup to handle mail from one domain<br />
* MX records setup for the subdomain you want to use for lists</p>
<p>First, we need to install mailman, but before we do that we need to make sure it uses the right UID and GID (lighttpd) instead of apache, which is the default. To do this append </p>
<p><code>
<pre>MAILMAN_CGIGID="lighttpd"
MAILMAN_CGIUID="lighttpd"
</pre>
<p></code><br />
to <strong>/etc/make.conf</strong> and then proceed to install mailman:</p>
<p><code>
<pre># emerge mailman</pre>
<p></code></p>
<p>Now it&#8217;s time to configure lighttpd. This we do by adding the following to <strong>/etc/lighttpd/lighttpd.conf</strong>:</p>
<p><code>
<pre>alias.url += (
          "/services/mailman/mailman-icons" => "/usr/lib64/mailman/icons/",
          "/services/mailman/pipermail" => "/var/lib/mailman/archives/public/",
          "/services/mailman" => "/usr/lib64/mailman/cgi-bin/",
)

$HTTP["url"] =~ "^/services/mailman" {
        cgi.assign = (
                "/admin" => "",
                "/admindb" => "",
                "/confirm" => "",
                "/create" => "",
                "/edithtml" => "",
                "/listinfo" => "",
                "/options" => "",
                "/private" => "",
                "/rmlist" => "",
                "/roster" => "",
                "/subscribe" => "")
        server.indexfiles = ("listinfo", "index.html")
}
$HTTP["url"] =~ "^/services/mailman/pipermail/" {
             dir-listing.activate = "enable"
             dir-listing.hide-dotfiles = "enable"
             server.follow-symlink = "enable"
}
</pre>
<p></code><br />
I choose not to serve mailman from a vhost, if you want to do that you&#8217;ll need to change the above accordingly. Otherwise you&#8217;ll just have to change the url matches and aliases to reflect from where you want to host mailman. You will also need to make sure that the alias and cgi modules are enabled (located at the top of <strong>lighttpd.conf</strong>).</p>
<p>The next thing to configure is mailman itself. Append the following to <strong>/etc/mailman/mm_cfg.py</strong>:</p>
<p><code>
<pre>MTA = 'Postfix'
DEFAULT_EMAIL_HOST = 'lists.example.tld'
DEFAULT_URL_HOST = 'example.tld'
DEFAULT_URL_PATTERN = 'http://%s/services/mailman/'
add_virtualhost(DEFAULT_URL_HOST, DEFAULT_EMAIL_HOST)
IMAGE_LOGOS = '/services/mailman/mailman-icons/' 

POSTFIX_STYLE_VIRTUAL_DOMAINS = [DEFAULT_EMAIL_HOST]

PUBLIC_ARCHIVE_URL = 'http://%(hostname)s/services/mailman/pipermail/%(listname)s'
</pre>
<p></code><br />
You should set <code>DEFAULT_EMAIL_HOST</code> to the subdomain you want your lists to use, <code>DEFAULT_URL_HOST</code> to the host from which you will serve the mailman web pages, and change <code>DEFAULT_URL_PATTERN</code>, <code>IMAGE_LOGOS</code>, <code>PUBLIC_ARCHIVE_URL</code> so that they are consistent with your settings in <strong>lighttpd.conf</strong>. The call to <code>add_virtualhost</code> is need when you change either of the <code>_HOST</code> variables like this.</p>
<p>Continuing, there is a few things we need to do as the mailman user. First install the cron jobs:</p>
<p><code>
<pre># su - mailman
mailman $ cd cron
mailman $ crontab crontab.in
mailman $ cd ..
</pre>
<p></code><br />
Then set the site password:</p>
<p><code>
<pre>mailman $ bin/mmsitepass
</pre>
<p></code><br />
The site password works instead of any other password in the mailman installation, and is used to adminstrate it.</p>
<p>Next we create the site-wide mailing list, which is needed for proper operation of mailman:</p>
<p><code>
<pre>mailman $ bin/newlist mailman
</pre>
<p></code><br />
And logout from the mailman account and continue&#8230;</p>
<p>&#8230;with configuring postfix. This is as simple as adding the following two lines to <strong>/etc/postfix/main.cf</strong>:</p>
<p><code>
<pre>virtual_alias_domains = lists.example.tld
virtual_alias_maps = hash:/var/lib/mailman/data/virtual-mailman
</pre>
<p></code></p>
<p>Once again replacing lists.example.tld with the subdomain you want your lists to use.</p>
<p>Now we only need to reload postfix, start mailman and add it to the default runlevel:</p>
<p><code>
<pre># /etc/init.d/postfix reload
# /etc/init.d/mailman start
# rc-update add mailman default
</pre>
<p></code><br />
Congratulations, you should now have a working mailman install!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.ryara.net/2009/03/27/mailman-with-lighttpd-and-postfix-on-gentoo/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Quake Live</title>
		<link>http://blog.ryara.net/2009/02/27/quake-live/</link>
		<comments>http://blog.ryara.net/2009/02/27/quake-live/#comments</comments>
		<pubDate>Fri, 27 Feb 2009 02:01:41 +0000</pubDate>
		<dc:creator>tobbez</dc:creator>
		
		<category><![CDATA[Games]]></category>

		<guid isPermaLink="false">http://blog.ryara.net/?p=56</guid>
		<description><![CDATA[So today I got around to trying out Quake Live, which went into open beta the other day. If you didn&#8217;t know already, Quake Live is very similiar to Quake 3, with the exception that it&#8217;s played in a browser.
My first impression is that it seems to have quite some potential, however I won&#8217;t be [...]]]></description>
			<content:encoded><![CDATA[<p>So today I got around to trying out <a href="http://www.quakelive.com/">Quake Live</a>, which went into open beta the other day. If you didn&#8217;t know already, Quake Live is very similiar to Quake 3, with the exception that it&#8217;s played in a browser.</p>
<p>My first impression is that it seems to have quite some potential, however I won&#8217;t be playing it in the near future, as there&#8217;s too many bugs left to be able to enjoy it properly. For example, I couldn&#8217;t even play through the &#8220;warmup match&#8221;<sup>[1]</sup> without QL crashing several times (in both Firefox and IE7, which are the only supported browsers at the moment).</p>
<p>So now I&#8217;m looking forward to trying it again in a couple of months or so.</p>
<ol class="footnotes"><li id="footnote_0_56" class="footnote">You play against a bot to estimate your skill level, so QL can set you up against opponents with a similiar skill level.</li></ol>]]></content:encoded>
			<wfw:commentRss>http://blog.ryara.net/2009/02/27/quake-live/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Ebuild for yubikey pam auth</title>
		<link>http://blog.ryara.net/2009/01/13/ebuild-for-yubikey-pam-auth/</link>
		<comments>http://blog.ryara.net/2009/01/13/ebuild-for-yubikey-pam-auth/#comments</comments>
		<pubDate>Tue, 13 Jan 2009 20:09:49 +0000</pubDate>
		<dc:creator>tobbez</dc:creator>
		
		<category><![CDATA[Computers]]></category>

		<category><![CDATA[gentoo]]></category>

		<category><![CDATA[yubikey]]></category>

		<guid isPermaLink="false">http://blog.ryara.net/2009/01/13/ebuild-for-yubikey-pam-auth/</guid>
		<description><![CDATA[(If you don&#8217;t know what a yubikey is, have a look here)
So I wrote up ebuilds for yubico-pam and its dependency yubico-c-client. You can get them here.
Just extract the tarball into your portage overlay and emerge pam_yubico. If you don&#8217;t have an overlay, then just do this (as root):

mkdir /usr/local/portage/
echo 'PORTDIR_OVERLAY="/usr/local/portage/"' >> /etc/make.conf
tar xvzf pam_yubico-ebuildstar.gz [...]]]></description>
			<content:encoded><![CDATA[<p>(If you don&#8217;t know what a yubikey is, have a look <a href="http://yubico.com/products/yubikey/">here</a>)</p>
<p>So I wrote up ebuilds for <a href="http://code.google.com/p/yubico-pam/">yubico-pam</a> and its dependency <a href="http://code.google.com/p/yubico-c-client/">yubico-c-client</a>. You can get them <a href='http://blog.ryara.net/wp-content/uploads/2009/01/pam_yubico-ebuildstar.gz' title='Yubico PAM ebuilds'>here</a>.</p>
<p>Just extract the tarball into your portage overlay and emerge pam_yubico. If you don&#8217;t have an overlay, then just do this (as root):<br />
<code>
<pre>mkdir /usr/local/portage/
echo 'PORTDIR_OVERLAY="/usr/local/portage/"' >> /etc/make.conf
tar xvzf pam_yubico-ebuildstar.gz -C /usr/local/portage/
emerge pam_yubico
</pre>
<p></code></p>
<p>For myself I configured sshd to be able to login using either my yubikey or a normal password. I will describe how to do that - if you need some other configuration have a look at the PAM module&#8217;s site (mentioned above).</p>
<ol>
<li>You will need to get your yubico client id. The only way I know of to do this is through the <a href="https://api.yubico.com/yms/index.php">YMS</a>.
</li>
<li>Configure PAM to make ssh use the newly installed module. This by prepending <code>auth sufficient pam_yubico.so id=16 try_first_pass</code> to <code>/etc/pam.d/sshd</code>. Be sure to change 16 to the ID you aquired in step 1.
</li>
<li>Add your yubikey id to the file pam_yubico looks in, namely <code>~/.yubico/authorized_yubikeys</code>. Create the file with and add the line <code>user:yubikey_id</code>. The yubikey id is the first 12 characters from the OTPs it generates.</li>
</ol>
<p>And that&#8217;s it. You should now be able to log in over SSH using either your regular password or your yubikey.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.ryara.net/2009/01/13/ebuild-for-yubikey-pam-auth/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Compiling SDL_gfx (2.0.17) on Visual Studio 2008 (VS9)</title>
		<link>http://blog.ryara.net/2008/07/12/compiling-sdl_gfx-2017-on-visual-studio-2008-vs9/</link>
		<comments>http://blog.ryara.net/2008/07/12/compiling-sdl_gfx-2017-on-visual-studio-2008-vs9/#comments</comments>
		<pubDate>Fri, 11 Jul 2008 23:47:07 +0000</pubDate>
		<dc:creator>tobbez</dc:creator>
		
		<category><![CDATA[Computers]]></category>

		<guid isPermaLink="false">http://blog.ryara.net/2008/07/12/compiling-sdl_gfx-2017-on-visual-studio-2008-vs9/</guid>
		<description><![CDATA[
IMPORTANT: Turns out I was wrong about why SDL_gfx doesn&#8217;t compile - thanks to sweetlilmre for pointing it out.
I strongly suggest using his suggestions for steps 2 and 8, whereas step 4 merely is a matter of preference. You should probably skip step 10 as well, since static_cast() is not C, but C++.

Sadly there are [...]]]></description>
			<content:encoded><![CDATA[<p><ins datetime="2008-11-01T21:33:15+00:00"><br />
<strong>IMPORTANT:</strong> Turns out I was wrong about why SDL_gfx doesn&#8217;t compile - thanks to <a href="http://blog.ryara.net/2008/07/12/compiling-sdl_gfx-2017-on-visual-studio-2008-vs9/#comment-15186">sweetlilmre</a> for pointing it out.</p>
<p>I strongly suggest using his suggestions for steps 2 and 8, whereas step 4 merely is a matter of preference. You should probably skip step 10 as well, since static_cast() is not C, but C++.<br />
</ins></p>
<p>Sadly there are no officially provided binaries for <a href="http://www.ferzkopp.net/joomla/content/view/19/14/">SDL_gfx</a> (unlike most other SDL_* libraries), and so I had to compile it myself. SDL_gfx, however has just about no documentation telling you how to do this - and the methods provided doesn&#8217;t even work.</p>
<p>Since it took me a while to get this working, so I thought I&#8217;d write it down for future reference. </p>
<p>1. Download and unpack the source package.<br />
2. Rename *.c to *.cpp. This is to solve what seems to be <a href="http://support.microsoft.com/kb/166513">this bug</a>, that supposedly was fixed in VS6.<br />
3. Extract sdlgfx.vcproj from &#8216;Other Builds\VisualC7.zip&#8217; into the source directory and open it, and go through the Conversion Wizard.<br />
4. Remove the source files from the project, and then add the *.cpp files and the *.h files to the project. This is needed because the paths in the original project file are incorrect.<br />
5. Change target to Release.<br />
6. Add SDL.lib to Linker -> Input -> Additional Dependencies in the project properties.<br />
7. Add BUILD_DLL to C/C++ -> Preprocessor -> Preprocessor Definitions.<br />
8. In SDL_gfxPrimitives, replace<br />
<code><br />
#ifdef WIN32</p>
<p>__inline long int<br />
lrint (double ftl)<br />
{<br />
  int intgr;<br />
  _asm<br />
  {<br />
    fld flt<br />
    fistp intgr<br />
  };<br />
  return intgr;<br />
}</p>
<p>#endif<br />
</code><br />
with<br />
<code><br />
#define lrint(x) (floor(x+(x>0) ? 0.5 : -0.5))<br />
</code><br />
(As per <a href="http://www.wormux.org/wiki/howto/en/compile_under_visual.php#SDL_gfx">this site</a>)<br />
9. Compile, and save the solution somewhere when asked to.<br />
10. There should be 4 compilation errors, all of which can be solved by using static_cast&lt;&gt;():<br />
SDL_rotozoom.cpp (Line 501) becomes:<br />
<code>pc = static_cast&lt;tColorRGBA*&gt;(dst->pixels);</code><br />
SDL_rotozoom.cpp (Line 657) becomes:<br />
<code>pc = static_cast&lt;tColorY*&gt;(dst->pixels);</code><br />
SDL_gfxPrimitives.cpp (Line 3105) becomes:<br />
<code>sab = sqrt(static_cast&lt;double&gt;(a2 + b2));</code><br />
SDL_gfxPrimitives.cpp (Line 4289) becomes:<br />
<code>currentFontdata = static_cast&lt;const unsigned char*&gt;(fontdata);</code><br />
11. Compile. The project should now compile correctly, and you will find sdlgfx.dll and sdlgfx.lib in the Release sub-folder of your source directory.</p>
<p>Now, this is all good, but I would really prefer either official binaries, *or* fixes to the code problems, and instructions that are actually up to date.</p>
<p><ins datetime="2008-10-14T15:42:55+00:00"><br />
Since there was interest I&#8217;ve now uploaded my binaries as well. It&#8217;s SDL_gfx-2.0.17 compiled against SDL-1.2.13, and can be downloaded <a href="http://blog.ryara.net/wp-content/uploads/2008/10/sdl_gfx-2017.zip">here</a>.<br />
</ins></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.ryara.net/2008/07/12/compiling-sdl_gfx-2017-on-visual-studio-2008-vs9/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Flash cycler</title>
		<link>http://blog.ryara.net/2008/06/15/flash-cycler/</link>
		<comments>http://blog.ryara.net/2008/06/15/flash-cycler/#comments</comments>
		<pubDate>Sat, 14 Jun 2008 23:22:14 +0000</pubDate>
		<dc:creator>tobbez</dc:creator>
		
		<category><![CDATA[Computers]]></category>

		<guid isPermaLink="false">http://blog.ryara.net/2008/06/15/flash-cycler/</guid>
		<description><![CDATA[Since I had a some time on my hands I decided to make a web page that cycles through a collection of flash movies and shows each one for a specified amount of time.
It should work in most modern browsers - I&#8217;ve verified with Opera and Firefox (Internet Explorer doesn&#8217;t work).
You can find the source [...]]]></description>
			<content:encoded><![CDATA[<p>Since I had a some time on my hands I decided to make a web page that cycles through a collection of flash movies and shows each one for a specified amount of time.</p>
<p>It should work in most modern browsers - I&#8217;ve verified with Opera and Firefox (Internet Explorer doesn&#8217;t work).</p>
<p>You can find the source of the page <a href='http://blog.ryara.net/wp-content/uploads/2008/06/flash-cycle.zip' title='Flash cycle'>here</a>, and a sample of it in use <a href="http://wrya.net/flash-cycle.php">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.ryara.net/2008/06/15/flash-cycler/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Super smash bros: Brawl (USA) on PAL Wii</title>
		<link>http://blog.ryara.net/2008/04/17/super-smash-bros-brawl-usa-on-pal-wii/</link>
		<comments>http://blog.ryara.net/2008/04/17/super-smash-bros-brawl-usa-on-pal-wii/#comments</comments>
		<pubDate>Thu, 17 Apr 2008 11:48:21 +0000</pubDate>
		<dc:creator>tobbez</dc:creator>
		
		<category><![CDATA[Computers]]></category>

		<guid isPermaLink="false">http://blog.ryara.net/2008/04/17/super-smash-bros-brawl-usa-on-pal-wii/</guid>
		<description><![CDATA[I finally got SSBB working, and here&#8217;s how. But let&#8217;s start with what does NOT work.
First, my setup:
PAL Wii with latest firmware (Bought on the release date)
WiiKey (Firmware 1.9s)
Try 1 (No go):
Enabling update blocker on the WiiKey:
Doesn&#8217;t work, from reading a litte on the net I found out that you have to enable dev mode [...]]]></description>
			<content:encoded><![CDATA[<p>I finally got SSBB working, and here&#8217;s how. But let&#8217;s start with what does NOT work.</p>
<p>First, my setup:<br />
PAL Wii with latest firmware (Bought on the release date)<br />
WiiKey (Firmware 1.9s)</p>
<p>Try 1 (No go):<br />
Enabling update blocker on the WiiKey:<br />
Doesn&#8217;t work, from reading a litte on the net I found out that you have to enable dev mode as well.</p>
<p>Try 2 (A bit better):<br />
Enabled dev mode as well as the update blocker on the WiiKey. The disc loads correctly, but when you try to start it you just get a black screen.</p>
<p>Try 3 (Almost there):<br />
Got a tip to try it in 50hz mode. Did that, and&#8230; it works. However the game runs awfully slow, and you get audio artefacts from some sounds which means it&#8217;s not really playable.</p>
<p>Try 4 (Success!):<br />
Decided to try FreeLoader for Wii. I disabled update blocker and dev mode on the WiiKey, and changed back to 60hz.<br />
First I went to the disc screen and inserted the FreeLoader disc and waited for it to load (you may see some graphic artefacts during this time). Then I ejected the FreeLoader disc and inserted my SMBB disc and started it. And it worked fine.</p>
<p>If you get a white screen saying the disc can&#8217;t be read after the &#8220;Loading&#8230;&#8221; message you&#8217;re propably suffering from a bad burn.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.ryara.net/2008/04/17/super-smash-bros-brawl-usa-on-pal-wii/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Self Injury</title>
		<link>http://blog.ryara.net/2008/03/05/self-injury/</link>
		<comments>http://blog.ryara.net/2008/03/05/self-injury/#comments</comments>
		<pubDate>Wed, 05 Mar 2008 00:51:20 +0000</pubDate>
		<dc:creator>tobbez</dc:creator>
		
		<category><![CDATA[Life]]></category>

		<category><![CDATA[Society]]></category>

		<guid isPermaLink="false">http://blog.ryara.net/2008/03/05/self-injury/</guid>
		<description><![CDATA[Posting this since it&#8217;s relevant to past experiences, and because I think it&#8217;s important to know about it. I strongly encourage you to read it.
]]></description>
			<content:encoded><![CDATA[<p>Posting <a href="http://www.enotalone.com/article/3002.html">this</a> since it&#8217;s relevant to past experiences, and because I think it&#8217;s important to know about it. I strongly encourage you to read it.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.ryara.net/2008/03/05/self-injury/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Ruby&#8217;s GNU readline module</title>
		<link>http://blog.ryara.net/2008/02/25/rubys-gnu-readline-module/</link>
		<comments>http://blog.ryara.net/2008/02/25/rubys-gnu-readline-module/#comments</comments>
		<pubDate>Mon, 25 Feb 2008 18:36:23 +0000</pubDate>
		<dc:creator>tobbez</dc:creator>
		
		<category><![CDATA[Computers]]></category>

		<guid isPermaLink="false">http://blog.ryara.net/2008/02/25/rubys-gnu-readline-module/</guid>
		<description><![CDATA[One thing I really don&#8217;t like is libraries that lacks documentation. Which, incidentally, is exactly what ruby&#8217;s readline module does.
Happily, however, I found this post which explains at least the basic usage - thank you, Adam!
]]></description>
			<content:encoded><![CDATA[<p>One thing I really don&#8217;t like is libraries that lacks documentation. Which, incidentally, is exactly what ruby&#8217;s readline module does.</p>
<p>Happily, however, I found <a href="http://adam.blog.heroku.com/past/2008/1/22/using_rubys_readline_library/">this post</a> which explains at least the basic usage - thank you, <a href="http://adam.blog.heroku.com/">Adam</a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.ryara.net/2008/02/25/rubys-gnu-readline-module/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Bits and pieces</title>
		<link>http://blog.ryara.net/2008/02/07/bits-and-pieces/</link>
		<comments>http://blog.ryara.net/2008/02/07/bits-and-pieces/#comments</comments>
		<pubDate>Thu, 07 Feb 2008 14:43:10 +0000</pubDate>
		<dc:creator>tobbez</dc:creator>
		
		<category><![CDATA[Random stuff]]></category>

		<guid isPermaLink="false">http://blog.ryara.net/2008/02/07/bits-and-pieces/</guid>
		<description><![CDATA[These are some interesting links I&#8217;ve picked up during the past months. Some of them are quite old, so don&#8217;t be surprised if you&#8217;ve already seen some of them.
Let&#8217;s begin with how robots could be looking at humans.
And then a pair of personality related articles: a few things you should know about introverts (that&#8217;s me). [...]]]></description>
			<content:encoded><![CDATA[<p>These are some interesting links I&#8217;ve picked up during the past months. Some of them are quite old, so don&#8217;t be surprised if you&#8217;ve already seen some of them.</p>
<p>Let&#8217;s begin with how robots could be <a href="http://baetzler.de/humor/meat_beings.html">looking at humans</a>.</p>
<p>And then a pair of personality related articles: a few things you should know about <a href="http://briankim.net/blog/2007/10/top-5-things-every-extrovert-should-know-about-introverts/">introverts</a> (that&#8217;s me). And also <a href="http://blog.eod.com/post/18462877">a comparison</a>, if you will, of the Wide/Deep personality types.</p>
<p>I found <a href="http://www.holyjuan.com/2007/05/10-attributes-of-really-lazy-people.html">10 Attributes of Really Lazy People</a> quite entertaining.</p>
<p>And <a href="http://benbrown.com/says/2008/01/02/if-all-your-friends-jumped-off-of-a-bridge/">some reasons</a> as to why I will never get an facebook account. Another, less serious, but still valid <a href="http://www.little-gamers.com/2007/12/21/1825/">view</a> on the same topic.</p>
<p>If you feel like you have too much time on your hans you could always do what this guy did: write a <a href="http://www.superjer.com/pixelmachine/">ray-tracing renderer</a> from scratch.</p>
<p><a href="http://www.stsc.hill.af.mil/CrossTalk/2008/01/0801DewarSchonberg.html">Here</a>&#8217;s some interesting views on today&#8217;s CS education, though I&#8217;ve not personally seen all those changes where I&#8217;m studying. It also presents a few things that are important for CS students to learn (more specifically in the programming area).</p>
<p>And at last, a nice <a href="http://www.shirky.com/writings/situated_software.html">explanation</a> as to why writing general applications isn&#8217;t always the right choice.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.ryara.net/2008/02/07/bits-and-pieces/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 24.532 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2009-07-04 02:41:31 -->
