February 2, 2010

Red5 0.9.0 stable version

We are very happy to post about a good news:

Red5, the open source Flash Media Server, is now at its 0.9.0 version!

We already installed this version and it’s now under our microscopes (Ubuntu 9.04).

Happy streaming hacking!

January 27, 2010

How to personalize your Status.Net developing your own theme!

From the Status.Net wiki pages:

How to create your own theme

There are several ways to theme StatusNet. You may choose one of the methods below:

  1. If you just want to change the text, link, background, content, sidebar colours, background image:
    • Do this from the Admin->Design settings (recommended!). You could also create a directory and a file structure like the default theme, search and replace with your own values. This is more work, but, you can do this if you plan to make additional minimal changes.
  2. If you want to change the background images and colours:
    1. Create a directory and a file structure like the default theme. Key files are listed at the end of this page.
    2. Have your stylesheet import base/css/display.css and add your own styles below. It is okay to add minimal changes here.
  3. If you want to create a different layout, typography, background images and colours:
    1. Create your own theme directory (like base or default) with stylesheets and images like.
    2. Enable your theme by selecting it from the Admin->Design interface. You can set site’s logo from here as well.

Location of key paths and files

base/css/
base/css/display.css                #layout, typography rules
base/images/                        #common icons, illustrations
base/images/icons/icons-01.png      #main icons file (combined into a single file)

default/css/
default/css/display.css             #imports the base stylesheet for layout and adds background images and colour rules
default/logo.png                    #default site logo for this theme
default/mobilelogo.png              #default logo for the mobile output
default/default-avatar-mini.png     #24x24 default avatar for minilists
default/default-avatar-stream.png   #48x48 default avatar for notice timelines
default/default-avatar-profile.png  #96x96 default avatar for the profile page

January 26, 2010

Big Blue Button new version 0.63 released!

We are informed by the BigBlueButton blog that the 0.63 version is ready! :-)

In a few hours we will try the virtual machine using qemu… stay tuned!Big Blue Button 0.63

January 26, 2010

MISA an electric guidar with Linux inside

Really a cool device!

January 24, 2010

FreeMind vs XMind

We are using FreeMind as our mind mapping software. We are now testing XMind. Who will win? :-)

FreeMind is a premier free mind-mapping software written in Java. The recent development has hopefully turned it into high productivity tool. We are proud that the operation and navigation of FreeMind is faster than that of MindManager because of one-click “fold / unfold” and “follow link” operations.

With XMind, you can just double-click to create and edit topics anywhere on the map. Drag-and-drop for reorganizing topics, moving markers, taking a mapshot, and adding attachments. You can even search on topic with Google and drag images into your map without leaving the working window.

January 24, 2010

Cool “music videogame” running well on Ubuntu: UltraStar Deluxe, Frets on Fire and StepMania

UltraStar Deluxe

UltraStar Deluxe is an open source karaoke game inspired by the Singstar™ game available on the Playstation®. It allows up to six players to sing along with music using microphones in order to score points, depending on the pitch of the voice and the rythm of singing.

Frets on Fire

Frets on Fire is a game of musical skill and fast fingers. The aim of the game is to play guitar with the keyboard as accurately as possible.

Step Mania

StepMania is an open source and cross-platform rhythm video game and engine. It was originally developed as a simulator of Konami’s popular arcade game series Dance Dance Revolution, and has since evolved into an extensible rhythm game engine capable of supporting a wide variety of rhythm-based game types. Released under the MIT License, StepMania is free software.

December 14, 2009

Error with attachments and images on changing a Wordpress blog’s domain

A friend had to change domain for her WP blog and after doing that all images and attachments links were broken :-(

How to fix this? As stated by an old page of My Digital Life:

If you have linked internally within blog posts or pages with absolute URLs, these links will point to wrong locations after you move the blog location. Use the following SQL commands to fix all internal links to own blog in all WordPress posts and pages:

UPDATE wp_posts SET post_content = replace(post_content, 'http://www.old-domain.com', 'http://www.new-domain.com');

This SQL instruction still works in WP 2.8.6 but remeber to change the wp_ prefix :-)

December 10, 2009

A cool way media player are used…

What he is going to do?

What he is going to do?

I love to see how people uses a callback function available in flash media player… but why they have always to use a sexist context to promote not related things?

Anyway those commercials demonstrate how interesting is this kind of interactivity!!!

Source: Nixie Pixel’s Blog

December 6, 2009

Eclipse Trac Plugin: how to keep track of your bug/issues in a smart way

Eclipse Trac Plugin

Eclipse Trac Plugin

Eclipse is great tool and its plugins system seems to provide an infinity quantity of possibility. Let’s find out how to use a plugin that let you keep under control your bug directly in your favorite IDE (in its last incarnation Ganymede)!

First of all be sure your version of Eclipse include the Mylyn.

At the moment, if you have the “Classic” version of Eclipse or you experiments dependency problems, you need to add the Mylyn update site:

http://eclipse.org/mylyn/downloads/

Then you simply have to add a Trac site as new Task Repository:

Window->Show View->Other

Now you have to select Task Repositories to add a list of Local and Remote tasks lists.

Click on the Add Task Repository icon and Eclipse will ask you which kind of task repository you want to use. You may use much issue tracking systems as you wish but you will have to install the relative “connector”: click on Install More Connectors … and you will have new, unexpected, panorama of bug tracking system.

You can use Gmail and, among many others, the Eclipse Trac Plugin!

Choose your Task Repository type...

Choose your Task Repository type...

Source: Squadra Informatica 2V

December 2, 2009

How to fix the GTK+ related bug in Eclipse 3.5.x (Ganymede)

Eclipse is a great software and we use it for Java, J2ME, C/C++, PHP, Javascript and Perl. Everything!

Now, with the new version of GTK+ 2.18, there is a know bug that break the buttons of your Eclipse (and others software). It’s not a GTK+ bug, it’s due to a wrong usage of the new version of this library by Eclipse so we have to wait for this issue to be solved.

In the meanwhile you can workaround this problem creating a simple bash script:

#!/bin/sh
export GDK_NATIVE_WINDOWS=1
/ECLIPSE_DIRECTORY/eclipse

And then use this script to run your Eclipse installation!