Hello Interweb,
during work I saw the add-on going live and tomgreen.com actually flipped the switch. I noticed a small bug in the Windows version, which got fixed now.
And, well, I forgot to post -> 1.0 was not only released a while back, but also surpased by 1.1 now.
After some extra hours, days of recoding the whole thing, implementing and testing new features, Mozilla finally approved version 0.8.5 of Tom Green Live! Firefox extension. Thanks to all that helped me write better code!
Coding standards for Firefox extensions were set up a notch, and I had to rewrite quite everything, additionally i wanted to add new features. This all resulted in i think four or five rejections in a row from Mozilla Addons Team. ( what a hassle that was รด_0 )
It works like this : You code an update version, you send it to addons.mozilla.org and they finally approve or deny it.
Well , since i really only code JavaScript for this application I had to learn some new tricks here and there (anti namespace pollution with JSON and better preference handling in Firefox but finally it turned out to be good and worth it.
Learning new stuff is always fun and even if this extensions only use would be to educate me, it has served it’s purpose very well.
The people from frictionalgames offer the full Penumbra Series which features 3 full games of classic survival horror paired with an awesome physics engine for only -> 5 $ < -!
The series is available as Mac, Windows and GNU/Linux version and download size of the full series is about 893 MB.
I was noticed by this slashdot article and bought it instantly via paypal which worked like a charm.
Penumbria features a well introduction into the game for beginners and the graphics and the sounds are high quality also.
The control of the gameplay itself is remarkable and makes full use of an outstanding physics engine.
This means for opening a drawer in a desk you have to grab it and pull it out of the desk in the correct direction with your mouse. The same goes for doors that you have to swing open or wheels that have to be turned. This puts you in the game one step further.
I couldn’t decide which high-res picture to set as my desktop background and I wanted to see all images from a specific directory from time to time, so I wrote this script that helps me to chose which sportscar to look at. In fact the brand is always the same ^_^
randWallpaper.sh takes a directory with pictures as a parameter.
It will then read those files in an array and set one of those files as your background wallpaper randomly.
Dependencies : hsetroot
randWallpaper.sh :
#!/bin/bash
IFS=$'\n'
NUM=0
for NAME in $(find $1 -type f)
do
array[$NUM]=$NAME
((NUM++))
done
RAND=$RANDOM
let "RAND %= $NUM"
echo ${array[$RAND]}
hsetroot -center ${array[$RAND]}
Usage in OpenBox:
Edit your
~/.config/openbox/autostart.sh
and add this line to it :
randWallpaper.sh path_to_folder_with_images
On every start of X you will have one of the images in that folder set as your background.
I removed Google from my FF quick search bar for some odd reason and then wanted to reload it later. Obviously no one at Mozilla ever removed Google from the quick search bar, because you will not get it back the way it was before.
The build in search manager in Firefox now redirects to addons.mozilla.com and you won’t find google there !
So back to mycroft.mozdev.org, the original search engine database from Firefox.
However this google search plugin has the new google favicon built in :
original
older-ladies’-soap logo
Much people like the original one more apparently.
I took the original Icon from http://code.google.com/favicon.ico ,
obviously the “coders” at google like the old one better =) , cause it’s still there ! edit: doh, they found & changed it but i have a backup ^_^
Now, find my new Google search plugin below: mycroft.mozdev.org
On that site click the named link to install.
This has the US website as target , without redirect ( you might change this in the XML file, or just add another search plugin by yourself) and a pretty decent logo ! edit : My searchplugin got deleted on mycroft.mozdev.org and you shouldn’t need to use it in the first place, instead I’ll explain the steps necessary to change the favicon in the search plugin from mycroft.mozdev.org.
Our goal is to get rid of the search bar look without deleteing ~/.mozilla or creating a new profile :
Having switched to Exaile recently from Amarok i was wondering about the small covers Exaile uses. These are resizeable in the GUI of Amarok, not so in Exaile. I finally found the two lines of code that specify the album’s preview size.
original
tweaked
First backup these two files:
/usr/lib/exaile/xl/covers.py
/usr/share/exaile/exaile.glade
( /usr/local/share… and /usr/local/lib… if you did compile from source .. ).
Now we will change the GUI to be able to hold a bigger image :
Close any instance of Exaile and as root open
/usr/share/exaile/exaile.glade
with your favourite editor and find the line with :
<widget class="GtkHBox" id="top_box"></widget>
this is line 1546 on my file. Change the height_request property to 250:
<property name=”height_request”>250</property>
The result should be something like this :
In the second step open:
/usr/lib/exaile/xl/covers.py
to tell Exaile what size the covers should be displayed in the GUI:
Find the line with
COVER_WIDTH = 100
and change it to
COVER_WIDTH = 250
This should be line 24 :
You can experiment with any reasonable sizes but be sure to match the GUI size with the incoming cover size.
I bought this phone the Sony Ericsson w200i to finally replace my SL45i. I know it is nearly a century old, but not that alone makes it a classic.
To full fill my open mind of software on a “closed” system and have a little bit of GNU everywhere i go i put up a little theme for this device featuring the latest logo for Archlinux which you can find in detail here I was pleased to see Sony puplished not only a Theme Creator Software but also a Linux version which i tried but totally failed to bring to life ( it is optimized for the bigger distros like ubuntu and such, having an older gstreamer plugin version as a dependency which i couldnt solve).
Having in mind and tested a lot i used wine to just run the M$ binary of this Theme Creator since the gui looked so basic i thought it should work flawlessly , which it did.
The tool is prety nice and straight forward , being a little annoyed by all the colors i had to set i sticked to the black Archlinux logo, white, black and a light blue as the base colors. It was put together very fast and comes of course with no warranty at all.