Open Governance Index – measuring openness
This is an interesting report and info-graphic by the folks at VisionMobile on a new way of measuring the openness of some mobile open source projects.
The Open Governance Index measures the true openness of eight open source projects – Android, Qt, Symbian, MeeGo, Mozilla, WebKit, Linux and Eclipse – and analyses how governance, and not licenses, tell the full story of a project’s openness, across transparency, influence and control.
Installing MySQL Workbench on Ubuntu 11.10
Thanks to Olivier Berten for providing this package via his PPA Repo !
sudo add-apt-repository ppa:olivier-berten/misc
sudo apt-get update
sudo apt-get install mysql-workbench-gplEDIT: this has been confirmed to work on Ubuntu 12.04 (Precise Pangolin) as well).
Facebook - good riddance !
Finally I made the effort to completely get rid of my Facebook Account. After initially getting a Facebook Account in the very early days (as an ‘occupational hazard’ to investigate the potential of Facebook Applications) I have always been suspicious of the companies motives and decided not to use such a closed system as a base for application development.
Recent developments have only confirmed this suspision:
- http://en.wikipedia.org/wiki/Criticism_of_Facebook
- http://www.forbes.com/sites/chunkamui/2011/08/08/facebooks-privacy-issues-are-even-deeper-than-we-knew/
- http://www.reddit.com/r/technology/comments/ln2e0/facebook_patent_to_track_users_even_when_they_are/
Instead I will concentrate all of my content inside this blog (including as a backup for other social services I create). I believe the control over my own content is important enough for me to warrant the extra effort.
Google Docs - custom styles
One of the most annoying things in the recent ‘upgrade‘ of the Google Docs editor was the removal of the ‘Edit CSS’ and ‘Edit HTML’ functionality without any replacement (such as a Custom Styles Editor).
Thanks to a discussion on the Google Help forum (where 100’s of people wonder how this could have been called ‘upgrade’) I discovered this hack.
- Create an empty document in LibreOffice or OpenOffice (MS Office is also reported to work)
- Change the default styles (using Format –> Styles and Formatting (F11))
- Upload the resulting document to Google Apps (Note: you will need to convert to GoogleDocs) and use as a template
To get the ARIAL font on Ubuntu I also had to do install the MS Fonts package
Install Microsoft Fonts on Ubuntu
If you have kids going to school you will know these questions:
- Why can’t you have Microsoft Office ?
- I can not find ‘xyz’ font on this …. – why ?
I have managed (after some time) to convince my kids that there is no need for having a particular Word Processing Software and they are much better off knowing the concepts of text processing rather than some particular office package. Unfortunately I have had no look convincing many teachers that they should follow a similar principle ….
Virtualbox 4 install on Ubuntu
Since the default Ubuntu repository does not have the current version of VirtualBox (currently 4.1.x) here is the installation procedure via apt-get
echo "deb http://download.virtualbox.org/virtualbox/debian $(lsb_release -sc) contrib" | sudo tee /etc/apt/sources.list.d/virtualbox.list
wget -q http://download.virtualbox.org/virtualbox/debian/oracle_vbox.asc -O- | sudo apt-key add -
sudo apt-get update
sudo apt-get install virtualbox-4.1To use USB devices on the clients you need to install the Extension Pack from the Oracle Site and install via the File –> Preferences.
Google Adsense - or when is big TOO big ?
I am not generally one for writing blog entries about customer support failures. Thanks to my technical work I have had my fair share of dealing with call queues and help-desk systems over the last 20 years. But compared with my experience with Google AdSense over the last weeks all of these just pale into funny memories. I have never experienced the outright refusal to acknowledge an issue and blanket denial of communications.
Alternatives to Google Adsense
Due to a recent absolute Customer Service failure with Google Adsense I have done some research on the alternative to Google Adsense as a content-sensitive mobile and web advertisements.
We are currently reviewing the following services:
- http://www.adbrite.com/
- http://chitika.com
- http://www.admob.com/
- https://pubcenter.microsoft.com/Login
- http://advertisingcentral.yahoo.com/publisher/index
- http://www.clicksor.com/
- http://www.infolinks.com/
- http://adhitz.com/en
- http://buysellads.com/
Once we have some results I will update this post. Please add your comments should you have any (good or bad) experiences with similar services.
Using Blackboard Collaborate (Elluminate) on Ubuntu
Like it or not (personally I am in the second category) Blackboard Collaborate or Elluminate (as it is still more commonly referred to) is something you have a hard time avoiding if you work in online education.
I discovered that I have audio issues on some Ubuntu Linux machines and found the following to fix the issues.
1) Install alsa-aoss
apt-get install alsa-oss2) Save the Elluminate Java Webstard (.JNLP) file to a local folder – DO NOT OPEN IN BROWSER
3) Launch Elluminate using this command (in the folder you saved the JNLP)
Setting up TV channels for DVB tuner cards in Ubuntu
Just some memory aid to help remember how to set up DVB cards in Ubuntu:
apt-get install dvb-apps dvbstream w-scan
w_scan -c AU -X > channels.confYou can use this channels.conf with a number of TV players (MeTV, MythTV,…) however I prefer the no-nonsense interface of VLC
vlc channels.confHere is the example output (for those in Adelaide, South Australia you can just save this into channels.conf):
Ubuntu - create manual application launcher (Unity)
With every new release of Ubuntu I am becoming more resigned to the fact that the effort to revert back to the Ubuntu Classic (Gnome 2) interface is getting harder and sooner or later I will have to bite the bullet and learn to live with the ugly and more cumbersome Unity interface (specially since Gnome 3 seems to be even worse). One of the first issues I found is that there seems to be no easy way to manually add programs to the “Launcher” (as well as to the applications list).
Installing Java6 JDK on Ubuntu 11.10
UPDATE: To install on 12.04 (Precise Pangolin) you need a different PPA.
Since sun-java6-jdk has been removed from the default Ubuntu 11.10 (Oneiric Ocelot) repositories you need to add a PPA repository (unless you want to install by hand)
sudo add-apt-repository ppa:ferramroberto/java
sudo apt-get update
sudo apt-get install sun-java6-jdk sun-java6-plugin