Post on November 16th, 2008
by francisco athens

I’ve been working on a game for my Web Art class and I think it’s far enough along to share. It’s basically an interactive, but randomly generated story coupled with the classic game of Knights Tour on a very tiny board. Mad Knight’s Tour is made in a single page (plus a file for CSS and some images) with JavaScript. Enjoy!
Category
Uncategorized |
No Comments →
Post on October 12th, 2008
by francisco athens
I must say that Ubuntu 8.10 is really shining on my tablet. I made a live USB stick of 8.10 with the slick usb-creator app (works from 8.04 too) and booted up with correct resolution (1280×800), perfectly working wireless (intel4965agn adapter) that could connect with my university TTLS/PAP wifi network. Even the SDHC card reaader is working with my 16GB card! Suspend also worked flawlessly and faster as well (2 or 3 seconds instead of 4 or 5). Wireless comes back quickly too. In Hardy I had to wait about 10 seconds before wireless came back online, now it reconnects almost instantly.

The only major snag was having to manually futz with the xorg.conf to get my tablet to work. Once configured, I played with GIMP, recently updated to 2.6! GIMP is much improved for tablet support and has some nice options for changing brushstokes with not only pen pressure, but also velocity! This is as close to painting on a real surface that I’ve seen in any non-custom paint program.

GNOME desktop configuration is much tighter with the Appearance preferences. The new, darker, human theme is great for those who work in the late hours with lights low or in dimly lit cafes. I eventually switched back to XFCE for desktop, because of fast rock solid panels (GNOME panels are still relatively sluggish, even with animation turned off and low delay settings). GNOME does have a very nice way of altering the display settings though.
The main reason for trying 8.10 was the new kernel and wireless stack, and I must say that the increased hardware compatability is well worth it!
Category
Ubuntu, gnu-fu |
No Comments →
Post on September 18th, 2008
by francisco athens
Been busy with work and family lately. I did finally upgrade all the machines to Ubuntu Hardy, I must say its been great, and am look forward to 8.10. Intrepid Ibex is compelling with its updated wifi stack and hardware support in general.
It’s nice to not have to worry much about the OS I’m using. I think GNU/Linux has several distros with mature desktop user design that will enable it to become ubiquitous on the desktop. It’s fun to pop in a Ubuntu CD or USB stick a boot a modern, well equipped desktop into a machine that is not functioning with its original and often outdated system, and have everything working without an additional download!
I think we are getting back all the fun and sharing community that existed back in the earlier Amiga, C64 and neighborhood BBS days, but with added accessibility for newcomers, an atmosphere of conscientious freedoms, and a neighborhood that transcends not only distance but culture. By conscientious freedom, I mean the awareness of responsibility we begin to feel as we understand the nature of Free Open Source Software. Putting these beliefs in context with increasing endangerment and loss of our personal freedoms might make us more aware of what we need to do to restore hope and foster change. Every bit helps.
Category
Uncategorized |
No Comments →
Post on July 10th, 2008
by francisco athens
So today I went to Khyber with a couple work buddies. On the way back we went down into the pedway and through the Millenium Park parking lots. From 222E Wacker to Monroe and Michigan underground. It was a very THX1138 feeling though at times I could swear there were Morlocks (Time Machine) peering at us through cracks in side doors..
Development of the Pedway began in 1951, when the City of Chicago built one-block tunnels connecting the Red Line and Blue Line subways at Washington Street and Jackson Boulevard. Since then, both public and private investment have expanded the Pedway, and the system now connects more than 50 buildings.
Chicago Pedway information at Chicago Walks
Category
visual culture |
No Comments →
Post on July 5th, 2008
by francisco athens
The list is clouded by the use of sudo, hiding my most heinous acts of administration of my tablet from tender souls.
$ history | awk '{a[$2]++ } END{for(i in a){print a[i] " " i}}'|sort -rn|head
117 sudo
67 xrandr
33 ls
26 more
26 cd
19 apt-cache
11 top
11 irc
11 dmesg
10 wine
I thought “man” would be in the list, and I’m a bit surprised how often wine comes up!
Category
Uncategorized |
No Comments →
Post on June 28th, 2008
by francisco athens
Wow, what a nice surprise! (This has actually been in development since December of last year
) The OLPC Sugar desktop environment is available in the Ubuntu Hardy repository! You can use the emulator to run it in a window or login as a full blown desktop through GDM (the default login screen for (X)Ubuntu users)! I had trouble with connecting to my WPA network, but I think if I stop Network-Manager before loging in with Sugar, it will work. The turtle-art application worked very nicely and it was fun to browse networks. I would love to have Sugars network browser in a little box, or as a desktop background in XFCE. Now I have to find a way to make Sugar happy on a 800×600 screen so my kids can use it on their machines.
Available activities (in Hardy Universe) are:
- sugar-calculate-activity
- sugar-chat-activity
- sugar-connect-activity
- sugar-logviewer-activity
- sugar-memorize-activity
- sugar-pippy-activity
- sugar-terminal-activity
- sugar-turtleart-activity
- sugar-web-activity
Many of the missing applications (measure, newsreader,analyze) can be found by adding the Sugar PPA repository! It looks as though Paint and Record may be available before long as well. You may also be able to run the Gutsy versions from the debs in Jani’s PPA archive. SimCity/Micropolis is in there too!
Visit Jani Monoses blog for other related developments.
(I just could not resist changing the title)
Category
OLPC, Ubuntu, gnu-fu |
No Comments →
Post on June 14th, 2008
by francisco athens

Recently, I bought a nearly new HP 2710p. I immediately formatted the HD and installed Ubuntu Hardy! I am very pleased that nearly everything works! Suspend and resume with accelerated graphics and rotation was something I really wanted with my TC1100. I was lucky that this machine was configured with and Intel 4965 AGN card and a WWAN card (which I have not yet activated). The 2710p is very much like a super-charged TC1100 with dual-cores and other modern conveniences like a fingerprint scanner and a smart-card reader. Mine did not come with the webcam though I don’t think I’ll miss the feature much. Battery life is very good and the design is very clean. Removing the annoying palmrest stickers required Goo-Gone, but the finish was unharmed. Here are some notes about getting this bad-boy configured in Ubuntu:
Some things that seem to be missing are:
- Wacom support, which I found HERE (gentoo hardware wiki)
- Screen Rotation: Make a script called rotate.sh
$ nano ~/rotate.sh
with the following contents:
#!/bin/bash
#script by Francisco Athens modified from Gentoo Wiki Intructions:
#http://gentoo-wiki.com/HARDWARE_HP_Compaq_2710p#Brightness_and_Rotation
#get current setting
testrot=`xrandr -q |grep LVDS | awk '{print $3}'`
#test if screen is rotated in protrait mode
if [ "$testrot" = "800x1280+0+0" ];then
#optional kill any old xvkbd instances so that
# fresh one can load in the correct place in the screen
#killall xvkbd
xrandr -o normal
xsetwacom set stylus rotate 0
xsetwacom set eraser rotate 0
else
#killall xvkbd
xrandr --output LVDS --rotate right
xsetwacom set stylus Rotate CW
xsetwacom set eraser Rotate CW
#optional: put xvkbd on the bottom of the screen
#xvkbd -always-on-top -geometry 800x150+0-0
fi
chmod +x ~/rotate.sh
- Kernel Panic on lid close! This is a big issue, but I found the solutution HERE (Ubuntu Forums)
I edited my /etc/rc.local:
first make sure the path is correct
$ ls /proc/acpi/video/
there should be only one folder, so in my case for “C09A” add this line to /etc/rc.local:
echo "1" > /proc/acpi/video/C09A/DOS
before the “exit 0″ line
- Fingerprint Reader Support can be found HERE
- Current Ubuntu Hardy 2.6.24 iwl4965 driver appears to have problems connecting to TTLS/PAP 802.1x networks (sigh) as reported HERE (intel linux wireless forums).
Category
Ubuntu, gnu-fu, hardware |
1 Comment →
Post on May 1st, 2008
by francisco athens
I’ve written a review of Elephants Dream, the first open-source movie and have published it on HyperEd.org. The following is the abstract from the review:
Elephants Dream (2006) is an Open-Source movie that challenges us to think about the way we produce artifacts of culture and the ways in which that culture may exist on our own open terms rather than dictated by proprietary, dominant and oppressive means. This document is a reflection on these ideas and explores the positionality of Elephants Dream, and the tools used and developed in its creation among the dominant media and media production cultures.
Enjoy!
Category
gnu-fu, visual culture |
No Comments →
Post on April 27th, 2008
by francisco athens
Today I just stubled upon Richard M Stallmans Political Notes Archive. It’s a fascinating blog of short comments on happenings with lots of very interesting links related to wars, their proponents and propoganda, environmental, medical and nutritional concerns, privacy and civil liberties. RMS is a very well-rounded geek indeed!
Category
gnu-fu |
1 Comment →
Post on April 25th, 2008
by francisco athens
Hardy Heron, the latest Long Term Support (LTS) version of the Ubuntu GNU/Linux distribution was released the other day and it was the first time I did not install an alpha or beta Ubuntu on my family set of computers. I have to admit that I feel a little guilty in not testing to the usual extent, a new version of Ubuntu, but Gutsy has been working so well that I’m not compelled to update just yet.
For a user to have such a feeling about some version of an OS distribution marks an important milestone. It means I’m not chomping at the bit for some bug to be fixed and that all the applications I use and want are already available and working well.
I use many bluetooth devices such as headphones, keyboards and phones and they integrate well since Gutsy. Graphics are snappy and sound is working with all of the applications I’ve encountered. Configuring Gutsy to do all of these things, however took some time and effort hunting for answers in Ubuntu forums and Gentoo wikis. It seems that the real attraction for Ubuntu 8.04 will be for the new users who should have a smoother ride migrating from Windows or possibly OS X or as a first computing experience on a new computer.
There is some irony that 8.04 has the monikers “Long Term Support” and Hardy Heron. There have been some complaints about the somewhat dramatic changes in 8.04, in response to the way Xorg is configured (an attempt to make the xorg.conf an anachronism) and the inclusion of Wubi (a method for installing Ubuntu from within Windows) and a beta of Firefox 3 (which is yet waiting for some popular extensions to migrate). These are bold new steps for Ubuntu and is reminiscent of 6.06 Dapper (the last LTS release) innovations such as installation from a live CD (which was a chancy operation at first), persistence of a live CD configuration, and preliminary bluetooth support, network and power managers, not to mention the appearance of Xorg7. But such innovations did not become mature until Ubuntu Edgy, Feisty, and Gutsy (marketed as the more innovative releases). Such irony is interesting, but illustrates how the LTS release actually sets the pace of the interim Ubuntu releases. That said, I look forward to Hardy+1, Intrepid Ibex and for the new Ubuntu user, search the Ubuntu forum posts about your hardware and please give Hardy Heron a try!
Category
gnu-fu |
No Comments →