Skip to content

Qt installers for S60 5th edition

I found out that the ftp.nokia.com do not host the Qt installer sis files anymore, so I decided to try to find them and host them in here.

Here are the installers Qt 4.6.3 (gpsp needs these):

I’m not sure if the installer for SE satio is the ‘official one’ or modded, but it should work.

Continue reading ‘Qt installers for S60 5th edition’ »

Playing with Boundary’s Application Monitors

Boundary offered free Rasberry Pis for testing their Application Monitors. https://twitter.com/boundary/status/316529581274308608

The Boudanry’s service provides monitors for network traffic. It’s really handy service, if you have a big service with  10+ servers at production, and you’re wondering where the bottlenecks are. Then the monitoring service could save you a lot of trouble. You can instantly see that “Machine X” has big latency, so it hast to be the bottleneck for the service, and it should be fixed. I really like statistics, so I might still continue using these with some of my servers, even while I don’t have that much network traffic.

Boundary Application Monitors

Boundary’s Application Monitors

I had an Ubuntu Server installation on VirtualBox, so I thought that cloning the image would be an easy way to get free Rasberry Pi, and it was ;-)  Just right-click on the server installation, and click “Clone”, and then choose “Linked Clone” in the cloning configuration.

cloning in virtual box

cloning in virtual box

Continue reading ‘Playing with Boundary’s Application Monitors’ »

Using the same users in SMF Forum and WordPress

Lately I have developed our climbing club’s website. My goal was to use the same users in Simple Machines Forum (SMF) and WordPress, so no one would have to remember multiple passwords for one site.

For the SMF to WordPress integration I strongly recommend smf2wp plugin https://github.com/jwall149/smf2wp. It creates new WordPress users for every SMF user who goes to the WordPress site while logged into the SMF. Now the WordPress admin can add access rights to the selected users, so they can add and edit content in WordPress site too!

We also had some custom pages for certain SMF user groups which shouldn’t be visible for basic users, so we needed a method to check the SMF groups in the WordPress side. That feature didn’t exist in the smf2wp plugin, so I committed a small update to the smf2wp plugin to get the SMF user group check working on the WordPress side.

Here’s an example how to do the access rights check (currently works only with the latest git-version)

global $smf_user_info;
/*The SMF groups that can access the content*/
$accessRights = array(1,2,3);
foreach ($smf_user_info['smf_groups'] as $i =----> $v) {
	$user_groups[$i] = (int) $v;
}

if(array_intersect($user_groups,$accessRights)) {
	echo "<a href="secret_pages">Secret pages for groups 1,2 and 3</a>";
}

ParkMeeCrazy for BlackBerry 10

ParkMeeCrazy is A “Rush Hour”/”Traffic Jam” game clone written in Qt+QML.

ParkMeeCrazy is licensed under GPLv2 license. You can find the source code for BlackBerry 10 port from https://github.com/Summeli/BlackBerry-10-Port-A-Thon

Download

Heebo for BlackBerry 10

Heebo is an adaptation of the classic Match-3 genre puzzle game for the BlackBerry 10. Align the quirky Heebos into lines of three or more to turn the background into golden tiles. When all the background tiles are changed you win the level! Simple but highly addictive!

Heebo is free software, licensed under the GPLv3. You can find the source code for BlackBerry 10 port from github: https://github.com/Summeli/Heebo

Download