<?xml version="1.0" encoding="UTF-8"?>

<rss version="2.0"
 xmlns:blogChannel="http://backend.userland.com/blogChannelModule"
>

<channel>
<title>Kirsle.net</title>
<link>http://www.kirsle.net/</link>
<description>The web blog of Kirsle</description>
<language>en</language>
<copyright>Copyright 2012, Kirsle.net</copyright>
<pubDate>Thu, 17 May 2012 12:52:12 GMT</pubDate>
<lastBuildDate>Thu, 17 May 2012 12:52:12 GMT</lastBuildDate>
<webMaster>root@kirsle.net</webMaster>

<image>
<title>Kirsle.net</title>
<url>http://www.kirsle.net/static/avatars/casey.png</url>
<link>http://www.kirsle.net/</link>
<width>96</width>
<height>96</height>
<description>Kirsle&#x27;s Avatar</description>
</image>
<item>
<title>Unix Permissions on Folders</title>
<link>http://www.kirsle.net/blog/kirsle/unix-permissions-on-folders</link>
<description>Unix permissions become somewhat of a tricky thing when they&#x27;re applied to directories instead of files. This post should hopefully clear up any confusion about them (they had me pretty confused so I figured them out by trial-and-error).&#x3C;p&#x3E;

On normal files, the permissions are pretty straightforward:

&#x3C;ul&#x3E;
  &#x3C;li&#x3E;&#x3C;strong&#x3E;Read&#x3C;/strong&#x3E; allows you to read the contents of the file (i.e. open a text file in an editor, open an image in a viewer).&#x3C;/li&#x3E;
  &#x3C;li&#x3E;&#x3C;strong&#x3E;Write&#x3C;/strong&#x3E; allows you to write to a file (make changes and save it, copy a new file over top of an old one, etc.)&#x3C;/li&#x3E;
  &#x3C;li&#x3E;&#x3C;strong&#x3E;Execute&#x3C;/strong&#x3E; allows you to run the file as a program (for a binary or e.g. a Perl script).&#x3C;/li&#x3E;
&#x3C;/ul&#x3E;

On directories, the permissions get a bit trickier.

&#x3C;ul&#x3E;
  &#x3C;li&#x3E;&#x3C;strong&#x3E;Read&#x3C;/strong&#x3E; allows you to &#x3C;em&#x3E;list&#x3C;/em&#x3E; the contents of the directory to see the files inside. This is it. It doesn&#x27;t implicitly allow you to read the contents of the &#x3C;em&#x3E;files&#x3C;/em&#x3E;, or to descend into subdirectories. It only lists them.&#x3C;/li&#x3E;
  &#x3C;li&#x3E;&#x3C;strong&#x3E;Write&#x3C;/strong&#x3E; allows you to create new files in the directory or delete existing ones (even if the files belong to a different user, like root, that you wouldn&#x27;t think you&#x27;d be able to delete). This &#x3C;em&#x3E;only&#x3C;/em&#x3E; works if the Execute bit is also on.&#x3C;/li&#x3E;
  &#x3C;li&#x3E;&#x3C;strong&#x3E;Execute&#x3C;/strong&#x3E; allows you to &#x3C;em&#x3E;interact&#x3C;/em&#x3E; with a file, or to traverse past the directory into a subdirectory (provided that subdirectory has permissions that allow you to do so). Basically, the Execute permission allows the permissions on the file or subdirectory to take effect. If the folder doesn&#x27;t have Execute permissions, any attempt to do anything to a file or subdirectory is automatically denied.&#x3C;/li&#x3E;
&#x3C;/ul&#x3E;

So here&#x27;s a breakdown of the different permission combinations and what they do for you:

&#x3C;ul&#x3E;
  &#x3C;li&#x3E;&#x3C;strong&#x3E;---&#x3C;/strong&#x3E; (000): No permissions. Can&#x27;t open the folder, list its contents, or do anything with its contents.&#x3C;/li&#x3E;
  &#x3C;li&#x3E;&#x3C;strong&#x3E;r--&#x3C;/strong&#x3E; (400): You can list the contents. You can&#x27;t open the files, or descend into subdirectories. Can&#x27;t create new files or write to existing ones.&#x3C;/li&#x3E;
  &#x3C;li&#x3E;&#x3C;strong&#x3E;-w-&#x3C;/strong&#x3E; (200): This is the same as ---, or, no permissions at all. The write permission is useless without Execute.&#x3C;/li&#x3E;
  &#x3C;li&#x3E;&#x3C;strong&#x3E;--e&#x3C;/strong&#x3E; (100): You can&#x27;t list the contents of the folder, but if you know of a specific name of a file or subdirectory, you can interact with it (provided it has permissions that allow you to). You can &#x3C;code&#x3E;cd&#x3C;/code&#x3E; into a subdirectory or read/write a file that has permissions for it. But no listing the directory&#x27;s contents.&#x3C;/li&#x3E;
  &#x3C;li&#x3E;&#x3C;strong&#x3E;rw-&#x3C;/strong&#x3E; (600): Same as r--, you can list the contents but nothing more. The Write permission is useless without Execute.
  &#x3C;li&#x3E;&#x3C;strong&#x3E;r-e&#x3C;/strong&#x3E; (500): You can list the contents, access files (subject to their permissions), and descend into subdirectories (subject to their permissions). You can&#x27;t create new files though.&#x3C;/li&#x3E;
  &#x3C;li&#x3E;&#x3C;strong&#x3E;-we&#x3C;/strong&#x3E; (300): This one is interesting. You can not list the contents of the directory, but you can interact with existing files (if you know their names in advance), and you can create new files in the directory and delete existing files. You can also descend into subdirectories.&#x3C;/li&#x3E;
  &#x3C;li&#x3E;&#x3C;strong&#x3E;rwx&#x3C;/strong&#x3E; (700): All permissions for the directory.&#x3C;/li&#x3E;
&#x3C;/ul&#x3E;</description>
<pubDate>Fri,  4 May 2012 23:09:31 GMT</pubDate>
</item>
<item>
<title>Firefox Nightly</title>
<link>http://www.kirsle.net/blog/kirsle/firefox-nightly</link>
<description>If anyone&#x27;s interested, I wrote a Perl script that downloads and installs Firefox Nightly on a Unix-like operating system.&#x3C;p&#x3E;

By default, it installs the application into &#x3C;code&#x3E;/opt/firefox-nightly&#x3C;/code&#x3E;, with a link to run it at &#x3C;code&#x3E;/usr/bin/firefox-nightly&#x3C;/code&#x3E;. This way, it doesn&#x27;t conflict with your already-installed version of Firefox. Furthermore, it will put a launcher item in your Applications/Internet menu.&#x3C;p&#x3E;

You can get it from here: &#x3C;a href=&#x22;http://sh.kirsle.net/ffnightly&#x22;&#x3E;http://sh.kirsle.net/ffnightly&#x3C;/a&#x3E;&#x3C;p&#x3E;

&#x3C;pre&#x3E;$ mkdir ~/bin
$ wget http://sh.kirsle.net/ffnightly -O bin/ffnightly
$ chmod +x bin/ffnightly
$ ffnightly&#x3C;/pre&#x3E;</description>
<pubDate>Mon, 23 Apr 2012 02:01:10 GMT</pubDate>
</item>
<item>
<title>Gnome Predictions</title>
<link>http://www.kirsle.net/blog/kirsle/gnome-predictions</link>
<description>I have a couple of rather cynical predictions about what new problems &#x3C;a href=&#x22;/blog/kirsle/category/Gnome%203&#x22;&#x3E;Gnome 3&#x3C;/a&#x3E; could bring to Linux (or Fedora, in particular) that I feel like writing down here just so I can say &#x22;I told you so!&#x22; as I begrudgingly look into installing Arch Linux on all my computers at some point in the future. [image]&#x3C;p&#x3E;

&#x3C;ul&#x3E;
&#x3C;li&#x3E;&#x3C;strong&#x3E;Obsoleting of the Gnome Sound Applet:&#x3C;/strong&#x3E; this one seems very likely to happen within the next couple releases of Fedora. The &#x3C;code&#x3E;gnome-sound-applet&#x3C;/code&#x3E; isn&#x27;t very useful in the Gnome Shell desktop environment, because the Shell has its own built-in volume control icon on the top panel.&#x3C;p&#x3E;

The reason it&#x27;s still around is &#x3C;em&#x3E;probably&#x3C;/em&#x3E; just for the Gnome 3 fall-back desktop, where you get a two-panel layout similar to Gnome 2, which still has a decent system tray on the top panel. For Gnome 3 users without hardware acceleration, the gnome-sound-applet comes to the rescue to let these users continue adjusting their sound volume.&#x3C;p&#x3E;

But, with &#x3C;a href=&#x22;https://fedoraproject.org/wiki/Features/Gnome_shell_software_rendering&#x22;&#x3E;Gnome Shell software rendering&#x3C;/a&#x3E; coming in Fedora 17, the need to maintain the system tray sound applet will quickly vanish, since even Gnome 3 users without hardware acceleration will be seeing the same shell desktop with its own built-in sound applet. This sucks a lot for XFCE and other desktop users. One of my favorite things about the Gnome sound applet is the ability to increase the volume higher than 100%, which XFCE&#x27;s clunky old sound mixer applet still can&#x27;t do.&#x3C;/li&#x3E;

&#x3C;li&#x3E;&#x3C;strong&#x3E;Obsoleting of the Network Manager applet:&#x3C;/strong&#x3E; &#x3C;em&#x3E;I strongly hope not.&#x3C;/em&#x3E; But at the same time I could see this being something the Gnome developers would consider seriously. The argument would probably go a little something like this:&#x3C;p&#x3E;

&#x3C;em&#x3E;&#x22;There are currently hacks in place in Gnome Shell that allows us to run the NetworkManager applet, but place its icon in the shell panel instead of the normal system tray. So, it makes sense to just program the NetworkManager to go directly to the Gnome panel instead, and no longer support the system tray version anymore. This is good for Gnome, and anybody using XFCE or some other desktop that will have objections to this change, well they can just switch to some other distro. We don&#x27;t care.&#x22;&#x3C;/em&#x3E;&#x3C;p&#x3E;

On this one, I hope I&#x27;m wrong. [image] But due to Gnome&#x27;s short-sightedness with some of their recent design decisions (&#x3C;a href=&#x22;/blog/kirsle/zenity-and-gnome-3&#x22;&#x3E;ruining Zenity, anyone?&#x3C;/a&#x3E;) I wouldn&#x27;t be shocked to see them come up with such an idea.&#x3C;/li&#x3E;
&#x3C;/ul&#x3E;

So, there they are. Obsoleting the sound applet? Very likely. The NetworkManager? I really don&#x27;t know how likely they are to do this, but this would probably be the thing that finally pushes me to abandon Fedora entirely.</description>
<pubDate>Fri, 13 Apr 2012 23:39:05 GMT</pubDate>
</item>
<item>
<title>Turn off monitor from Linux CLI</title>
<link>http://www.kirsle.net/blog/kirsle/turn-off-monitor-from-linux-cli</link>
<description>I keep looking up this information and then losing track of it, so I&#x27;m posting it here for my own reference.&#x3C;p&#x3E;

This command will turn off the monitor on a Linux box from the command line (sorta like what happens when you have your power saving options configured to do this automatically after a length of time):&#x3C;p&#x3E;

&#x3C;pre&#x3E;xset dpms force off&#x3C;/pre&#x3E;

The monitor turns off until you hit a keyboard button or move the mouse. With this info you could set up a keyboard shortcut to run this command and have something like a &#x22;lock screen button&#x22; on your netbook, to turn off the display on command and conserve battery life for a little bit longer than usual.&#x3C;p&#x3E;

For a &#x22;lock screen button&#x22; that also locks the screen in addition to turning it off, a pair of commands like this may be handy:&#x3C;p&#x3E;

&#x3C;pre&#x3E;xset dpms force off; xscreensaver-command --lock&#x3C;/pre&#x3E;</description>
<pubDate>Wed, 21 Mar 2012 17:31:37 GMT</pubDate>
</item>
<item>
<title>Install Chromium OS Lime</title>
<link>http://www.kirsle.net/blog/kirsle/install-chromium-os-lime</link>
<description>This information is ridiculously hard to find on the Internet.&#x3C;p&#x3E;

I was playing with Chromium OS using the Lime build provided by &#x3C;a href=&#x22;http://chromeos.hexxeh.net/&#x22;&#x3E;Hexxeh&#x3C;/a&#x3E;. The Lime build is the same as the Vanilla build (i.e. upstream Chromium source code built daily), but it has more driver support, and it&#x27;s the only build that works with the wifi on my Dell Mini 9.&#x3C;p&#x3E;

Getting it onto a flash drive and booting from it was easy enough just following the directions on Hexxeh&#x27;s site, but actually installing it to the hard drive was a bit more difficult. It was hard to find any up-to-date information online; most bloggers were talking about Hexxeh&#x27;s old &#x22;Flow&#x22; builds, so the instructions were outdated. When I specifically googled how to install the Lime build, I was still finding outdated instructions.&#x3C;p&#x3E;

Everyone was saying that you just hit &#x3C;code&#x3E;Ctrl-Alt-T&#x3C;/code&#x3E; to get a shell prompt, and run the &#x3C;code&#x3E;install&#x3C;/code&#x3E; command. Not that easy. The only way I could get into any form of text mode was by hitting &#x3C;code&#x3E;Ctrl-Alt-F2&#x3C;/code&#x3E; (which I only knew to try because I&#x27;m a Linux user). But this got me into a text mode login prompt and it took me a while to figure out the right username/password combination.&#x3C;p&#x3E;

The username is &#x3C;code&#x3E;chronos&#x3C;/code&#x3E; and the password is &#x3C;code&#x3E;facepunch&#x3C;/code&#x3E;. After that, I was stuck in a really primitive shell that doesn&#x27;t support anything I&#x27;m used to (not even &#x3C;code&#x3E;ls&#x3C;/code&#x3E;), so I went out on a limb and tried running the command &#x3C;code&#x3E;bash&#x3C;/code&#x3E; (which got me into a more familiar Bash shell).&#x3C;p&#x3E;

But the &#x3C;code&#x3E;install&#x3C;/code&#x3E; command was no good in Bash -- it was running the GNU install command instead of the one to install Chromium to the disk. After some more tinkering, I found that if I ran &#x3C;code&#x3E;crosh&#x3C;/code&#x3E; (Chrome shell) and then run the install command from &#x3C;em&#x3E;there&#x3C;/em&#x3E;, it did what I want. So, I was finally able to install it to disk.&#x3C;p&#x3E;

It didn&#x27;t end up working out though. The system doesn&#x27;t boot after installation. Oh well. But hopefully this blog post will help others find out &#x3C;em&#x3E;how&#x3C;/em&#x3E; to install the darn thing.&#x3C;p&#x3E;

&#x3C;strong&#x3E;tl;dr:&#x3C;/strong&#x3E; here&#x27;s how I figured out to install Chromium OS to disk:

&#x3C;ol&#x3E;
  &#x3C;li&#x3E;Boot it from the USB drive.&#x3C;/li&#x3E;
  &#x3C;li&#x3E;Push Ctrl-Alt-F2 to get to the text mode login.&#x3C;/li&#x3E;
  &#x3C;li&#x3E;Log in as &#x3C;code&#x3E;chronos&#x3C;/code&#x3E; / &#x3C;code&#x3E;facepunch&#x3C;/code&#x3E;&#x3C;/li&#x3E;
  &#x3C;li&#x3E;Type &#x3C;code&#x3E;crosh&#x3C;/code&#x3E;, hit enter.&#x3C;/li&#x3E;
  &#x3C;li&#x3E;Type &#x3C;code&#x3E;install&#x3C;/code&#x3E;, hit enter.&#x3C;/li&#x3E;
&#x3C;/ol&#x3E;

&#x3C;strong&#x3E;Update (Mar 6):&#x3C;/strong&#x3E; It turns out Dell has their own semi-official builds of Chromium OS for the Dell Mini 9 and 10v laptops. They can be downloaded from &#x3C;a href=&#x22;http://linux.dell.com/files/cto/&#x22;&#x3E;Dell&#x27;s site here&#x3C;/a&#x3E;. I downloaded the Jan 3 2012 image. Following their instructions was easy enough, but I found a few differences that I&#x27;ll note here:

&#x3C;ul&#x3E;
  &#x3C;li&#x3E;On the first boot from the USB, wifi drivers weren&#x27;t installed, so I couldn&#x27;t get past the first screen. &#x3C;code&#x3E;Ctrl-Alt-T&#x3C;/code&#x3E; doesn&#x27;t work here, so I had to use &#x3C;code&#x3E;Ctrl-Alt-F2&#x3C;/code&#x3E; to get to the text mode login prompt.&#x3C;/li&#x3E;
  &#x3C;li&#x3E;The text mode log-on is &#x3C;code&#x3E;chronos&#x3C;/code&#x3E; / &#x3C;code&#x3E;dell1234&#x3C;/code&#x3E; (the &#x22;dell&#x22; user didn&#x27;t work). Then I was able to start &#x3C;code&#x3E;bash&#x3C;/code&#x3E; and then execute &#x3C;code&#x3E;/etc/install_wl.sh&#x3C;/code&#x3E; to install the wifi.&#x3C;/li&#x3E;
  &#x3C;li&#x3E;On the second boot from USB, wifi worked and I went through the setup process. Once logged in, &#x3C;code&#x3E;Ctrl-Alt-T&#x3C;/code&#x3E; works. [image]&#x3C;/li&#x3E;
&#x3C;/ul&#x3E;

The &#x3C;code&#x3E;install&#x3C;/code&#x3E; from Dell&#x27;s image did the trick too, and I now have Chromium installed on the internal hard drive on my Dell Mini 9. [image]&#x3C;p&#x3E;

Interestingly, the UI of Dell&#x27;s image looks different to the Lime and Vanilla builds. The Lime and Vanilla builds had what looked like a sort of primitive desktop (complete with a wallpaper), and the Chromium browser windows could be resized and moved around the screen. Where you&#x27;d expect the task bar to be on a Windows system, was what looked more like the Mac dock, with icons representing all your opened Chromium windows (plus a couple other icons, one that brings up a menu and one that has the Chromium icon and didn&#x27;t appear to do anything).&#x3C;p&#x3E;

Screenshots of UI differences:&#x3C;p&#x3E;

&#x3C;a href=&#x22;/creativity/articles/chromium-lime.png&#x22;&#x3E;[image]&#x3C;/a&#x3E;&#x3C;br&#x3E;
Chromium Lime (and Vanilla)&#x3C;p&#x3E;

&#x3C;a href=&#x22;/creativity/articles/chromium-dell.png&#x22;&#x3E;[image]&#x3C;/a&#x3E;&#x3C;br&#x3E;
Dell&#x27;s Chromium build&#x3C;p&#x3E;

Dell&#x27;s build looks more like the Chrome OS I&#x27;ve always seen screenshots of, so I think maybe the Lime and Vanilla builds are customized a bit (or else it&#x27;s just a super new UI change and Dell&#x27;s January image isn&#x27;t up-to-date enough).</description>
<pubDate>Tue,  6 Mar 2012 04:06:15 GMT</pubDate>
</item>
<item>
<title>Video Thumbnails on Fedora XFCE</title>
<link>http://www.kirsle.net/blog/kirsle/video-thumbnails-on-fedora-xfce</link>
<description>This post is mostly for my own reference but if Google sends anybody here, hopefully it&#x27;ll help them too.&#x3C;p&#x3E;

&#x3C;strong&#x3E;tl;dr version:&#x3C;/strong&#x3E; it seems that the &#x3C;code&#x3E;gstreamer-ffmpeg&#x3C;/code&#x3E; package is required for Thunar (or tumblerd, specifically) to render thumbnails of video files on the XFCE desktop for Fedora 16. This package is provided by &#x3C;a href=&#x22;http://rpmfusion.org&#x22;&#x3E;RPM Fusion&#x3C;/a&#x3E; yum repository (&#x3C;code&#x3E;rpmfusion-free-updates&#x3C;/code&#x3E; specifically).&#x3C;p&#x3E;

It seems to be pretty hard to find this information online. None of my Fedora XFCE systems were able to render thumbnails of videos, and this caused me some headaches with removable drives (when I&#x27;d be done with the drive and want to unmount it, I wouldn&#x27;t be able to because &#x22;the device is still busy&#x22;... and &#x3C;code&#x3E;lsof /media/Cyro&#x3C;/code&#x3E; would show that tumblerd was the culprit... it was trying to render thumbnails of any video files I may have seen while browsing in Thunar and wasn&#x27;t having much luck with it).&#x3C;p&#x3E;

The usual set of packages that provide all the video codecs for me didn&#x27;t do the job (vlc, smplayer, gstreamer-plugins-{good,bad,ugly}), I even tried installing ffmpegthumbnailer and no luck. Finally I installed gstreamer-ffmpeg, and after doing a &#x3C;code&#x3E;killall thumblerd&#x3C;/code&#x3E; and then visiting a folder full of videos in Thunar, it finally worked and started making thumbnails.</description>
<pubDate>Fri, 10 Feb 2012 18:29:29 GMT</pubDate>
</item>
<item>
<title>Force MSN Messenger to Use a Proxy</title>
<link>http://www.kirsle.net/blog/kirsle/force-msn-messenger-to-use-a-proxy</link>
<description>For anybody wanting to know how to do this, it&#x27;s possible to force Windows Live Messenger to obey your proxy settings.&#x3C;p&#x3E;

In my case I wanted MSN 2011 to connect using a socks proxy (using &#x3C;a href=&#x22;/blog/kirsle/ssh-port-forwarding&#x22;&#x3E;SSH port forwarding&#x3C;/a&#x3E; to use an SSH tunnel as SOCKS 5 proxy).&#x3C;p&#x3E;

To set the proxy settings, go to the &#x22;Connection&#x22; page in the preferences of MSN Messenger, click Advanced Settings and enter your proxy details.&#x3C;p&#x3E;

&#x3C;strong&#x3E;The problem is,&#x3C;/strong&#x3E; MSN will only use your proxy settings if it can&#x27;t normally connect to MSN without them (i.e. if your default TCP internet connection will work, MSN will always use that instead of your proxy settings). This is how you can &#x3C;em&#x3E;force&#x3C;/em&#x3E; MSN to use the proxy settings.&#x3C;p&#x3E;

You have to block MSN from being able to connect to its authentication servers without the proxy. To do this, we have to tamper with the &#x3C;a href=&#x22;http://en.wikipedia.org/wiki/Hosts_%28file%29&#x22;&#x3E;Hosts file&#x3C;/a&#x3E;.&#x3C;p&#x3E;

The Hosts file on Windows is kept at &#x3C;code&#x3E;C:\Windows\System32\drivers\etc\hosts&#x3C;/code&#x3E; (note that it doesn&#x27;t have a file extension). Open this in a text editor like Notepad or the &#x3C;code&#x3E;edit&#x3C;/code&#x3E; command in Command Prompt (I prefer the latter approach because you can open a Command Prompt window as Administrator and then editing the file is a snap without having to deal with permission issues when saving changes).&#x3C;p&#x3E;

Add these lines to the Hosts file:&#x3C;p&#x3E;

&#x3C;pre&#x3E;127.0.0.1       messenger.hotmail.com
127.0.0.1       msgr.hotmail.com
127.0.0.1       gateway.messenger.hotmail.com
127.0.0.1       login.gateway.hotmail.com&#x3C;/pre&#x3E;

And then restart MSN and it should have difficulty connecting without the proxy settings (if using a SOCKS proxy, attempt to sign into MSN before you open the proxy to be sure that it fails to connect. Then start the proxy and see that it successfully signs in).&#x3C;p&#x3E;

This works by routing all the MSN Messenger hostnames to the loopback address and blocks MSN from being able to authenticate. But with the SOCKS proxy, it can connect because it would do the DNS lookups from the SSH server instead of the local system.&#x3C;p&#x3E;

Hope this helps someone!</description>
<pubDate>Fri, 30 Dec 2011 22:33:45 GMT</pubDate>
</item>
<item>
<title>VirtualBox Scale Mode</title>
<link>http://www.kirsle.net/blog/kirsle/virtualbox-scale-mode</link>
<description>&#x3C;strong&#x3E;Updated:&#x3C;/strong&#x3E; added pictures. Bumped the timestamp to make this post new again.&#x3C;p&#x3E;

I don&#x27;t know how I missed this, but apparently &#x3C;a href=&#x22;http://www.virtualbox.org/&#x22;&#x3E;VirtualBox&#x3C;/a&#x3E; &#x3C;em&#x3E;finally&#x3C;/em&#x3E; supports a &#x22;Scale Mode.&#x22;&#x3C;p&#x3E;

I&#x27;ve always wanted this feature. Why, you ask?&#x3C;p&#x3E;

One easy example is for running an old operating system (older than Windows 2000) that isn&#x27;t supported by VirtualBox, so that there are no Guest Additions for it. Guest Additions for supported OS&#x27;s install extra drivers for the virtual machine, so that when you put VirtualBox into &#x22;Full Screen&#x22; mode, the guest OS will automatically increase its screen resolution to fit your display. When it can&#x27;t do that, it will just display the screen at its literal resolution and put a black margin to fill in the extra space.&#x3C;p&#x3E;

Here is an expertly Photoshopped demonstration of what I&#x27;m talking about. If you were running a Windows 3.1 virtual machine at an 800x600 screen resolution, and you put the VM full-screen, this is what it would look like on your 1366x768 monitor:&#x3C;p&#x3E;

[image]&#x3C;p&#x3E;

Another example: even on supported guests, running an older game like Starcraft (which runs in a resolution of 640x480) had this problem too: if the VM is running Full Screen and you start Starcraft... instead of the game&#x27;s display stretching across your whole monitor, it stays at 640x480 pixels and is centered on the screen. This &#x3C;em&#x3E;sucks&#x3C;/em&#x3E;.&#x3C;p&#x3E;

So it seems VirtualBox has finally added Scale Mode (available in the &#x22;Machine&#x22; menu along side Full Screen and Seamless modes). There&#x27;s one quirk to it, though: Scale Mode and Full Screen don&#x27;t work together. On my system, going into Scale Mode put the virtual machine into a window on my screen. This window could be maximized, but it couldn&#x27;t be made full screen. So that sorta sucks.&#x3C;p&#x3E;

Luckily, my Linux window manager (xfwm4, the window manager of the &#x3C;a href=&#x22;http://xfce.org/&#x22;&#x3E;XFCE desktop environment&#x3C;/a&#x3E;) supports putting &#x3C;em&#x3E;any&#x3C;/em&#x3E; window full screen, whether the window wants it or not. This means the window decorations are taken away and the contents of the window are resized to fill the display. Success! I can now run full screen, scaled resolution guest operating systems. [image]&#x3C;p&#x3E;

[image]&#x3C;br&#x3E;
Scale mode with xfwm4&#x27;s full-screen option gives you a &#x22;native&#x22; experience.</description>
<pubDate>Sat, 17 Dec 2011 07:56:42 GMT</pubDate>
</item>
<item>
<title>Xfce for Gnome 2 Refugees</title>
<link>http://www.kirsle.net/blog/kirsle/xfce-for-gnome-2-refugees</link>
<description>Ever since I jumped ship from Gnome to Xfce a few years ago when &#x3C;a href=&#x22;/blog/kirsle/category/Gnome%203&#x22;&#x3E;Gnome 3/Shell&#x3C;/a&#x3E; was first announced, I&#x27;ve configured my Xfce desktops to strongly resemble the standard Gnome 2 panel layout.&#x3C;p&#x3E;

&#x3C;a href=&#x22;/creativity/articles/xfce-gnome2.png&#x22;&#x3E;[image]&#x3C;/a&#x3E;&#x3C;br&#x3E;
&#x3C;small&#x3E;Click the screenshot for the full size version.&#x3C;/small&#x3E;&#x3C;p&#x3E;

Along the top panel I have my Applications and Places menus, app launchers for my commonly used programs, my CPU usage graph, notification area and clock. On the bottom panel are my task bar and workspace switcher. These are all standard Xfce panel applets.&#x3C;p&#x3E;

The details for anyone who&#x27;s interested (the only panel applet options shown are the ones that differ from the default options):

&#x3C;ul&#x3E;
  &#x3C;li&#x3E;&#x3C;strong&#x3E;Top Panel:&#x3C;/strong&#x3E;&#x3C;br&#x3E;
    Orientation: Horizontal&#x3C;br&#x3E;
    Size (pixels): 24&#x3C;br&#x3E;
    Length (%): 100
    &#x3C;ul&#x3E;
      &#x3C;li&#x3E;&#x3C;strong&#x3E;Applications Menu&#x3C;/strong&#x3E;&#x3C;br&#x3E;
        Button title: Applications&#x3C;br&#x3E;
        Icon: a Fedora icon in /usr/share/pixmaps...&#x3C;/li&#x3E;
      &#x3C;li&#x3E;&#x3C;strong&#x3E;Places Menu&#x3C;/strong&#x3E;&#x3C;br&#x3E;
        Show: Label Only&#x3C;br&#x3E;
        Label: Places&#x3C;/li&#x3E;
      &#x3C;li&#x3E;&#x3C;strong&#x3E;Separator&#x3C;/strong&#x3E;&#x3C;/li&#x3E;
      &#x3C;li&#x3E;Many &#x3C;strong&#x3E;Launcher&#x3C;/strong&#x3E; applets for my commonly used programs&#x3C;/li&#x3E;
      &#x3C;li&#x3E;&#x3C;strong&#x3E;Separator&#x3C;/strong&#x3E;&#x3C;br&#x3E;
        Style: Transparent&#x3C;br&#x3E;
        Expand: checked&#x3C;/li&#x3E;
      &#x3C;li&#x3E;&#x3C;strong&#x3E;Brightness plugin&#x3C;/strong&#x3E;&#x3C;/li&#x3E;
      &#x3C;li&#x3E;&#x3C;strong&#x3E;Screenshot&#x3C;/strong&#x3E;&#x3C;/li&#x3E;
      &#x3C;li&#x3E;&#x3C;strong&#x3E;CPU Graph:&#x3C;/strong&#x3E;&#x3C;br&#x3E;
        Background: black&#x3C;br&#x3E;
        Width: 48&#x3C;br&#x3E;
        Show frame: checked&#x3C;br&#x3E;
        Show border: unchecked&#x3C;/li&#x3E;
      &#x3C;li&#x3E;&#x3C;strong&#x3E;Separator&#x3C;/strong&#x3E;&#x3C;/li&#x3E;
      &#x3C;li&#x3E;&#x3C;strong&#x3E;Notification Area&#x3C;/strong&#x3E;&#x3C;/li&#x3E;
      &#x3C;li&#x3E;&#x3C;strong&#x3E;Separator&#x3C;/strong&#x3E;&#x3C;/li&#x3E;
      &#x3C;li&#x3E;&#x3C;strong&#x3E;DateTime:&#x3C;/strong&#x3E;&#x3C;br&#x3E;
        Layout Format: Date Only&#x3C;br&#x3E;
        Date Format: Custom: %a %b %e, %l:%M %p&#x3C;br&#x3E;
        The DateTime applet has a drop-down calendar, unlike the normal Clock applet.&#x3C;/li&#x3E;
    &#x3C;/ul&#x3E;
  &#x3C;/li&#x3E;
  &#x3C;li&#x3E;&#x3C;strong&#x3E;Bottom Panel:&#x3C;/strong&#x3E;&#x3C;br&#x3E;
    Orientation: Horizontal&#x3C;br&#x3E;
    Size (pixels): 24&#x3C;br&#x3E;
    Length (%): 100
    &#x3C;ul&#x3E;
      &#x3C;li&#x3E;&#x3C;strong&#x3E;Window Buttons&#x3C;/strong&#x3E;&#x3C;/li&#x3E;
      &#x3C;li&#x3E;&#x3C;strong&#x3E;Workspace Switcher&#x3C;/strong&#x3E;&#x3C;/li&#x3E;
    &#x3C;/ul&#x3E;
  &#x3C;/li&#x3E;
&#x3C;/ul&#x3E;

So, any Gnome 2 refugees who can&#x27;t stand Gnome 3... Xfce 4.8 is a very good option and you can configure it to look and feel just like Gnome 2. [image] </description>
<pubDate>Mon, 14 Nov 2011 03:42:39 GMT</pubDate>
</item>
<item>
<title>Sequence Breaking</title>
<link>http://www.kirsle.net/blog/kirsle/sequence-breaking</link>
<description>I spent most of the day today toying around with Pokemon FireRed Version - trying to sequence break it, mostly.&#x3C;p&#x3E;

[image]&#x3C;p&#x3E;

Originally, I wanted to see what would happen if you got to Fuchsia City without having taken one of the fossils from Mt. Moon... because in the Fuchsia City Zoo, there will be either an Omanyte or a Kabuto there -- the opposite fossil from the one you chose early in the game. So I wanted to see what the game would do...&#x3C;p&#x3E;

But then I realized that, Fuchsia City is the perfect city to start the game in because, while there&#x27;s a steep difficulty curve to get your bearings, you &#x3C;em&#x3E;can&#x3C;/em&#x3E; actually continue the game from there and get back on track. This can&#x27;t be said of all the other cities (especially Cinnabar Island).&#x3C;p&#x3E;

I&#x27;ve divided my whole quest up into four parts, complete with screenshots. &#x3C;a href=&#x22;/firered&#x22;&#x3E;Read about my sequence breaking quest here.&#x3C;/a&#x3E;</description>
<pubDate>Sun, 30 Oct 2011 04:30:14 GMT</pubDate>
</item>
</channel>
</rss>
