Home » Archive

Articles tagged with: nokia

Featured, Hacks »

[3 Feb 2012 | | ]
[How-To] Save up battery by taking down WiFi

If you’re interested in saving up battery, here’s a little how-to on adding a desktop-cmd-exec button that will enable/disable WiFi completely upon being pressed.
First, get desktop command execution widget, if you don’t have it already:
sudo gainroot
apt-get install desktop-cmd-exec
Next you would want to get an enable/disable script. For your convenience, I’ve uploaded it to Pastebin: http://pastebin.com/3ZHx11GZ
Copy the script and save it as wifi.sh in your home directory. Make it executable:
chmod +x wifi.sh
Now, to add the button. Switch to a desktop where you wish to place it, go to edit mode (long tap on the screen or tap on an empty space and tap the gear button that appears on top). Add Desktop Command Execution Widget from the menu, and click the wrench on the widget that appeared. Select the “Add cmd” option on the right. Name the command “Enable/Disable WiFi” or however you’d like, in command put this:
echo “/home/user/wifi.sh” | sudo gainroot | echo “”
Add the command, you’ll be kicked back to the edit mode, so press the wrench again. You’ll see that the new command was already chosen (if it is not, chose it), so you need just to adjust a few options, check the “Update on click” option and uncheck “Update on boot” and “Update on desktop change” buttons. Ta-da! Now you have a button to completely disable the WiFi when you don’t need it and enable it on need, which will save up quite some battery charge.

____________________________________________________
Of course, you can utilize the script otherwise, like adding an Alarmed job to disable/enable wifi on certain times.

Applications, Featured, Maemo 5, Software »

[20 Jan 2012 | | ]
Evopedia: Offline Wikipedia Reader

Check out our new page Funny LOL Pictures (click here) - it brings you daily funny pictures that will make you LOL!
Want to read some of your favorite articles on Wikipedia? But what if you don’t have any internet available for some reason? Or maybe you just want to save up money or battery charge for keeping internet connection.
Evopedia will allow you to download an archive of all Wikipedia articles and read them online, optimized for the N900 screen size.

Archives of Wikipedia for many different languages are available. A few Wiktionary archives can be downloaded as well.  A demo archive with 999 articles is available under the name “small”.
Note: Most archives take up more than 100 mB of space on your MyDocs, make sure you have space.
As soon as you download the archive(s), you can search for any article from the main screen. Since all archives are stored locally, the search is very fast. Pick any article and it will be opened in your Web application, and easy to read, thanks to optimized view.

One and only problem I had with Evopedia is that most archives are downloaded via BitTorrent, which takes up a lot of system resources and sometimes can be very unresponsive. Maemo’s watchdog reboots the phone in such occasions and this sometimes messes up the file system. In case if you get a problem with MyDocs mounted read-only, run this as root and reboot the phone (don’t worry, you won’t lose any files):
  fsck.vfat -a /dev/mmcblk0p1
Apart from that, Evopedia provides a nice and easy way to read Wikipedia articles without having any internet connection whatsoever.

Featured, Hacks, Maemo 5, Uncategorized »

[16 Jan 2012 | | ]
[How-to] Custom symbols in X Terminal

Are you in need of special symbols while in X Terminal? Don’t want to bring up the special characters menu all the time? Well, here’s an easy way to customize the special characters  line on the bottom of your X Terminal window.
 
Open up your XTerm and use those commands to modify the characters line:
Note: Run these commands as a regular user, not root.
Modify the key labels:
gconftool-2 -s /apps/osso/xterm/key_labels -t list –list-type=string “[keylabels]“
Replace keylabels with the set of labels you want to use, separated by colons without any whitespaces. You’re free to use any text, just don’t use labels too long. The maximum safe amount of labels you can use is 7, if you use more, they will all go to a side-menu.  For example, if we are to add pipe, input and tilde symbols you can use this:  Tab,Esc,PgUp,PgDn,|,>,~
Next, set the characters that those labels will correspond to:
gconftool-2 -s /apps/osso/xterm/keys -t list –list-type=string “[character values]“
Replace character values with the corresponding values. You can look up which values respond to which characters by looking at /usr/share/X11/xkb/symbols/nokia_vndr/rx-51 file (do it as a regular user, so you don’t modify it by accident)
If we follow the example for pipe, input and tilde characters, we shall use these values: Tab,Escape,Page_Up,Page_Down,bar,greater,asciitilde
Restart your X Terminal, so the fullscreen button goes where it should go and enjoy!

Featured, Hacks »

[13 Jan 2012 | | ]
[How-To] Customizing your SMS and Chat interface

Getting bored with the old look of your SMS and chat screens? If so, open nature of Maemo allows you to tweak the look to your own preference.

Configuration files for Conversations And Contacts themes reside under the /usr/share/rtcom-messaging-ui/html/ directory. Backup the files if necessary.
First make your own theme with html-css-javascript or find one that suits you made by other enthusiasts on Talk Maemo or here.
In case if you downloaded the theme, unpack the downloaded archive to any directory, for example, ~/MyDocs/theme
cd ~/MyDocs
mkdir theme
Then, copy all files in the archive to the directory mentioned above:
cd ~/MyDocs/theme
sudo gainroot
cp -f * /usr/share/rtcom-messaging-ui/html
Because many downloaded themes include only files for SMS interface, copy them for chat interface:
sudo gainroot
cd /usr/share/rtcom-messaging-ui/html
cp -f MessagingWidgetsSMSConversation.css MessagingWidgetsChatConversation.css
cp -f MessagingWidgetsSMSConversation.js MessagingWidgetsChatConversation.js
cp -f MessagingWidgetsSMSConversation.html MessagingWidgetsChatConversation.html
Finally, reboot your phone,
sudo gainroot
reboot
Or kill the process:
sudo gainroot
killall rtcom-messaging-ui
 
Enjoy your new interface!

Featured, Hacks »

[12 Jan 2012 | | ]
[How-To] Adding a “Reboot” button to your powerkey menu

Ever wanted to have a graphical button to reboot your beloved device? Well, today I’ll show you how to add one to your powerkey menu!
Note: the tips we go through involve editing a low-level system file and imply that readers know what they are doing.
Adding the Reboot button:
First, we would want to go root:
  sudo gainroot
Next, let’s modify the sudoers file to allow us running reboot:
echo “user ALL = NOPASSWD: /sbin/reboot” > /etc/sudoers.d/reboot.sudoers
Update sudoers:
update-sudoers
Now, we would want to create a d-bus service.
[editor] /usr/share/dbus-1/services/reboot.service
Replace [editor] with whatever editor you prefer, for example, leafpad.
Paste the following into the file:
  [D-BUS Service]
  Name=com.misc.reboot
  Exec=/usr/bin/sudo reboot
Save the file and exit the editor. Change current directory:
cd /etc/systemui
Open up systemui.xml file in your preferred editor:
[editor] systemui.xml
Paste the following anywhere between the <powerkeymenu> and </powerkeymenu> tags:
<menuitem priority=”750″ name=”Reboot”>
   <icon>general_refresh</icon>
   <callback service=”com.misc.reboot” path=”/com/misc/reboot” interface=”com.misc.reboot” method=”reboot” bus=”session”   autostart=”true”>
   <argument type=”boolean”>true</argument>
  </callback>
</menuitem>
Note: some of you may notice that a reboot entry is already defined in systemui.xml. However, it utilizes osso-powerup-shutdown and preforms a very brutal shutdown. Rebooting with sudo reboot will gently shutdown all software and sync your filesystems, which is safer. Let’s just say that there  was probably a reason that the default entry was commented out.
Save the file, exit the editor and reboot your N900.
reboot
Enjoy your newly added Reboot button which will perform a safe reboot once pressed!

 

Source: Talk Maemo

Featured, Release Info »

[14 Aug 2011 | | ]
Nokia showing off Windows Phone devices soon?

They say history repeats itself, and in the coming weeks and months in particular we will all find out how true that is.  Nokia, a company which went from a simple goods supplier of the Finnish Army, to the most dominant mobile phone company in the world may just come full circle.
Nokia showing off Windows Phones isn’t anything new, after all we have already had a glimpse at the Sea Ray, a Nokia N9 which simply runs on Windows Phone.  But if you are to believe Stephen Elop’s ignorance when he asked everyone to put away their cameras before he showed it, it was not an official unveiling.

 
 
 
 
 
 
 
 
 
Well, that all changes soon, the good people over at Techie-Buzz have found an invitation for a joint Nokia-Microsoft party on August 17th.  Reports also state that this event will be held at GamesCon in Cologne, Germany.
Looks like all of the hard work on Nokia’s part has come down to this, all of the flip flopping, double backing and confusion.  The fruition of a plan beginning with a burning platform, and the future of a company has come down to this.  Soon we will see if Microsoft really is the future of Nokia.

Featured, Headline, News, Release Date, Release Info »

[14 Aug 2011 | | ]
N9 Australian release date?

So I’ve just had a delightful trip into Nokia Care, where I’m told most people don’t like much.  I do wonder why, and upon noticing that the ‘please don’t abuse our staff’ signs are no longer up from last visit, perhaps things are becoming more fun?
Anyway, during my visit I was served by a fella who was also interested in the N9, and planned on getting one as soon as it was released.  What I learned from my visit, is that according to order records, the store will be receiving a whole bunch of NFC ready accessories around mid September.  This is one such link to inevitable release of the N9, having NFC itself, but isn’t anything solid.  It’s not unheard of for companies to release accessories well before the release of the device in which they are made, look at AMD for instance.  The good part is that after a bit more of a chat, I was able to find something far more promising.

After some innocent questions, I eventually stumbled upon the answer.  The Nokia N9 will be released in Australia on the 15th of September, according to internal files.
Now, that’s not helpful information for the rest of the world, but it is a start.  Once it comes to us people in the land of the future, it shouldn’t take too long to spread to everyone else.  I am still surprised that Australia isn’t getting the N9 six months later then the rest of the world like usual, but I’m not complaining.  Now to start counting down the days.

Featured, Headline, News, Software »

[2 Mar 2011 | | ]
Nokia is not with us, but Qt still lives

We all know the decisions of Nokia and Microsoft, we know that MeeGo is not main Nokia smartphone operating system anymore. I was also thinking that Nokia will abandon Qt at all and it will become one of many forgotten mobile technologies. Apparently I was wrong, at least a bit.

I’m aware that porting libraries between platforms is quite common. Programmers want to have their favourite tools in palm of the hand, so that we have for example java and icedtea on N900. This time Qt (currently owned by Nokia) is going to Android. I’ve seen few projects trying to make this port but none of them was big success. Finally I’ve found ?Necessitas, you can check it out on Qt labs blog.
This makes me feel better, when Nokia-MS fusion (I know, cooperation not fusion) came to reality I was a bit confused what to do with my newly acquired Qt certificate. but maybe with Necessitas I can move (as programmer) to another platform without need to develop bunch of new skills and maybe soon we will have more Qt applications ported to Android and some of Nokia products will prove itself useful.
I’m waiting for something more than recently released alpha version, which still may be buggy, but I have great hopes related to this port.

MJ

Featured, Headline, News »

[13 Feb 2011 | | ]
Nokia strategy – what about N900 and MeeGo?

During last few days Nokia came up with few interesting, yet disturbing decisions. Cooperation with Microsoft, huge change in smartphone platform plans, sudden change of heart with MeeGo platform, so what can we expect with N900 and Linux smartphones from Nokia?
Let me start with quote from one of my favourite computer games:
The village is dying. The signs are everywhere. Withering crops… dying brahmin… sick children.
There is hope, however. A slim hope that few know of.
First of all I’m having mixed feelings about strategic cooperation with Microsoft. First of all switch in management, new CEO – Stephen Elop, originally president of Microsoft Business division, this was first sign of upcoming changes. I’m not saying that Microsoft is the greatest evil on whole world, but after acquiring such manager it was unavoidable that Nokia and Microsoft will cooperate soon. On the other hand I’ve seen emphasis on MeeGo during conference in Dublin last year, cooperation with Intel and AMD seemed quite steady.
Second thing is status of MeeGo, I feel that it will remain in the same state as Maemo from the very beginning, it will show up on one phone, most probably the one that leaked some time ago in pictures, mostly because of all of Windows Phone 7 strategy for Nokia smartphones. Let me remind you of some old Maemo devices, like Nokia N770 (internet tablet), which came with Maemo 1 and 2, next device Nokia N800/N810 with Maemo 3 and 4. Why this inventions were not continued on other devices? Same thing happened with Maemo 5, in my opinion pretty nice system for mobile phones, if it were continued and furtherly developed it could be really succesfull on newer phones, with more features, it could even compete with other popular platforms. But no, Nokia starts with something new, releaases on small market and finally abandons it.
Now I’m really loosing faith in Nokia. The hope I mean lies in our hands, in what we can do now, I think that giving N900 and Maemo 5 maintenance to community was the best thing that could have happened. Now we have the power …

Featured, Headline, News »

[13 Nov 2010 | | ]
MeeGo status few days before MeeGo Conference

Few days ago Dave Neary, guy involved in MeeGo development, made quite extensive review of current MeeGo status, inside the project and outside on market. For full article read The MeeGo Progress Report, I will shorten to the most vital parts.
All of the commotion around Symbian (that was almost closed down recently and seems to be dying slowly) and MeeGo (still under heavy development) leaded to announcement that Nokia will choose the latter as main system for high-end mobiles. This is good news for MeeGo after recent changes in Nokia management, new CEO (formerly in high ranked at Microsoft) and employment reduction.
On the other hand cooperation between Nokia and Intel is still far from monolithic. Intel bases on it’s GTK+ solutions, while Nokia insists on Qt. There is right on both sides, investing time, money and work in technology and abandoning it later doesn’t seem the best solution for big company. This part is a bit tricky for Nokia and Intel, while Apple released iPhone with it’s iOS quite a while ago, iPad quite recently, in the mean time Google answered with coherent Android platform, MeeGo may meet some difficulties conquering mobile market.
Apart from all of difficulties and doubts, MeeGo looks quite good as for few months old, open source project. Lot of experienced developers are involved, works is going forward every day, even I have my own share. In the next few days I hope some of the secrets will be revealed during MeeGo Conference 2010 in Dublin, I will be there and I will surely share my observations and every news I can reach. Let’s stay in touch, something interesting may come up

MJ

Uncategorized »

[12 Sep 2010 | | ]
MeeGo 1.1 to land in October 2010 and 1.2 in April 2011

First Symbian was told to be coming to an end but it was not confirmed, then the Maemo software was told to become extinct and now it night be true after all.
Let me fill your diary with a few dates. Nokia World is due to take place on September 14th and 15th in London.I am sure that devices will be announced and I am hoping that the leaked N9 is one of them. If not at Nokia World then hopefully at the first ever MeeGo Conference, scheduled to take place exactly 2 months later in Dublin.
According to to the project’s official wiki page, version 1.1 of the Intel-Nokia is due to hit the web between October 21 and October 27 of this year. The next version, 1.2, is rumored to hit the market between April 21 and 27 2011 according to unnamed sources. That’s a 6 month gap.
What will be in MeeGo 1.1? And what about 1.2? No idea, but at least you’ve got a few dates to put into your calendar.

Comparison, Reviews »

[8 Sep 2010 | | ]
Nokia N900 vs Motorola Charm

The Nokia N900 was released in November last year while the Motorola Charm was released in August but also released the same month which shows that Nokia is falling behind. The Charm comes with a TFT capacitive touchscreen with the size of  320 x 240 pixels, 2.8 inches and the Nokia N900 also comes with with a TFT but a size of 800 x 480 pixels, 3.5 inches considering the size, the Nokia N900 wins this round.
The Nokia N900 comes with a QWERTY keyboard as well as the Motorola Charm.As usual, both the devices have a 3.5 mm audio jack. The Charm comes with 512 MB internal memory but the Nokia N900 comes with 32GB internal memory. The rival comes with Android OS, v2.1 (Eclair) which is not as good as the Maemo 5. The Nokia N900 is great to capture images with 5 MP, 2576×1936 pixels, Carl Zeiss optics, autofocus, Dual LED flash, video light, the Charm is far behind with 3.15 MP, 2048×1536 pixels.
<
The Nokia N900 comes with 278 h (2G) and 250 h (3G) while the Motorola Charm comes with 267 h (2G) and 334 h (3G) which is a really big issue for me but I don’t know for others.

Featured, Price »

[4 Sep 2010 | | ]
Nokia N900 Price Update

Told to be for 500 euros by some and 700 euros by others. Who is right? None are right. The Nokia N900 with me was bought for 400 euros in Europe and if you convert in into Dollars or Rands, it will be $ 506 and R3.737.

Not so expensive for a Tablet. But if you want to buy the Nokia N900 in South Africa, then it might cost you around R4000 without the usual tax or subsidies.

Multi tasking, Debian Linux abilities and awesome graphics are major contributions to the price of this device.

Nokia was selling the N900 for $489 but it dropped its price to $389. A great deal for the people that wish to buy the Nokia N900.
In the UK, the Nokia N900 Tablet costs 489 pounds with vat so rather buy with Nokia as it is much more reliable and much cheaper and the device already is included with vat but still has delivery charges.
Amazon was selling the Nokia N900 for $689 but then lowered the price very heavily to $489. A big drop of $200.

Firmware, Maemo 5, Reviews, Software »

[4 Sep 2010 | | ]
N900 Maemo Review

The S60 software platform is slowly ageing away with Maemo covering it up. So I have to say, that the S60 users have to now get used to Maemo. You’ll hear me say this a couple of times here at our Nokia N900 blog.
Maemo 5 is currently present on the Nokia N900.
The Maemo OS which is based on Debian Linux and the GUI which is derived from various frameworks and libraries. The software uses the window manager, and GTK-based Hildon as its GUI and application framework..
Maemo 5 actually has nice 3D games cooking up for us with a new Twitter app.
Here is something that you can expect for the Nokia N900 :

So you can see that Maemo is actually better than Symbian but only in a few ways. The best thing is that you have the terminal to fix problems and awesome games e.g the roller coaster game in the video is really testing our patience.
At work/home and your laptop or computer stops working? Then use your Nokia N900, it is a mini computer in your hands.
With (Maemo) Debian Linux based, Mozilla, the internet browser technology and the Nokia N900 deliver a extremely good mobile experience. The device shows where Nokia is going with software and Nokia should continue to work with the community to unlock the new software capabilities.
Maemo is something that is fuses the power of the computer, the internet and the mobile phone, which is great to see that it is evolving marvelously. If you have any different opinions, let us know at the Nokia N900 forum.

Reviews »

[3 Sep 2010 | | ]
Nokia N900 Review

Announced in August, 2009 but available 2 months later? I am surprised. Read on this Nokia N900 review for more.
The Nokia N900 has really big dimensions of 110.9 x 59.8 x 18 mm, 113 cc. But it actually makes sense as the device is a mini computer. with 181 grams, it is heavy. These are the reasons that the Nokia N900.
The huge screen has 800 x 480 pixels, 3.5 inches which makes it great for gaming.