Yes! I know, there’s plenty of top Firefox Add-ons lists floating all over the web. Too bad none of those have my official endorsement :-D. Anyway, I’ll list some of my favorite ones here, just in case any one finds it interesting. I think they are all must haves
Keep reading →
(Yet Another) Useful FireFox Add-ons List
September 17, 2008 · 1 Comment
→ 1 CommentCategories: Firefox
Setting up the S60 SDK for Development
July 6, 2008 · 1 Comment
Ever had a problem where your application was running fine on the emulator, but failed to run on hardware? Ran an application on the emulator, but the application exited, without showing any reason? Or perhaps, you expected to see the emulator logs in the debugger window, but they never appeared?
That’s because of rather aggressive approach taken by the S60 SDK installer in terms of disabling emulator diagnostics (most annoyingly, platform security violations, which go unchecked on the emulator by default) and results in unexpected behavior from applications when run on real hardware.
If you already have the S60 SDK installed, its worth checking if the diagnostics are enabled and even if you don’t want them, at least know what options affects which bits of diagnostics.
→ 1 CommentCategories: S60 · Symbian OS
Symbian OS Networking FAQ
July 5, 2008 · No Comments
Soon to be published. Stay tuned!
→ No CommentsCategories: S60 · Symbian OS
Disconnecting Distractions
July 5, 2008 · No Comments
Paul Graham has an excellent article on factors that create distractions, especially the computer, as he points out:
TV is in decline now, but only because people have found even more addictive ways of wasting time. And what’s especially dangerous is that many happen at your computer. This is no accident. An ever larger percentage of office workers sit in front of computers connected to the Internet, and distractions always evolve toward the procrastinators.
The worst aspect of computer based distractions, whether its just plain old browsing or checking the status of your friends on social networking websites is that, its become a seamless experience, because we can do it right in the middle of anything we were doing and it still doesn’t feel like it, as he explains:
Another reason it was hard to notice the danger of this new type of distraction was that social customs hadn’t yet caught up with it. If I’d spent a whole morning sitting on a sofa watching TV, I’d have noticed very quickly. That’s a known danger sign, like drinking alone. But using the Internet still looked and felt a lot like work.
One thing that Paul doesn’t take on directly is the effect of social networking and video sharing websites on encouraging procrastination. To me, they are the single biggest source of addiction for the masses hooked on to the web. What’s even more scary is that increasingly, social networking sites are becoming defacto start pages compared to search engines.
Oh, did I tell you I’m writing this because the mail/calendering client at work, an universally recognized pathetic piece of $hit called Lotus Notes just hung up, prompting me to discard what I was doing and, guess what? I got distracted enough to write a blog entry about it.
→ No CommentsCategories: Personal
Quick Recipes on Symbian OS Released!
July 1, 2008 · No Comments
As one of the co authors, I’m really exited to announce that Quick Recipes on Symbian OS has just been released by Symbian Press. According to the official literature,
The book tells you how to start developing C++ applications for Symbian smartphones from scratch and includes recipes that are divided by technology, including graphics, multimedia, location-based services, networking and messaging. Each recipe explains the length of time needed to implement it, and its difficulty level. The task is then explained in detail, and provides snippets of example code. The full sample code is provided for future reference and for use as a starting point in your own projects.
Get a copy from Amazon here, while its hot baby
While at it, have a look at the book’s WiKi page, where you’ll find the recepies(code examples) and the errata.
Happy coding!
→ No CommentsCategories: Programming · Symbian OS
35 Useful Source Code Editors Reviewed
July 1, 2008 · No Comments
Smashing magazine has just posted an excellent article reviewing no less than 35 source code editors. Its good to see an article that finally collates the good ones under one roof. Personally, I use Notepad++, which gives you all the facility of UltraEdit(R) and EditPlus(R) for free (open source) and what’s great, its got an extensive collection of plug-ins and an active developer community. And yes, its written in C++ and fast.
Happy coding!
→ No CommentsCategories: Programming
Getting Most out of Carbide.c++ Build System
June 19, 2008 · No Comments
The Carbide.c++ team at Nokia has just published a series of articles that explains the Carbide.c++ build system in-depth and how to get the most out of it. A recommended read for all developing software with Carbide.c++.
- Building a better build system-Part 1: Introduces improvements done in Carbide.c++ 1.3 for detecting MMP file changes and dependency tracking using the compiler
- Building a better build system - Part 2 Concurrent builds: Explains using parallel compilation using Carbide.c++
- Building a better build system - Part 3 Eclipse incremental builder: Explains the benefit of using the Eclipse incremental builder. Note that there’s a small issue/bug with the incremental builder if you are using multiple SDKs, it won’t automatically detect that you’ve switched SDKs and hence fail to build the new target, even if its not built. Only applicable where you have a project that’s been created/imported to use more than a single SDK
- Building a better build system - Part 4 Benchmarking: Puts everything into perspectiva and summerizes by listing the pros/cons of using different build options and how that results into build speed
Happy coding!
→ No CommentsCategories: Programming · Symbian OS
Ever Wondered What Macros are Defined for your Project?
June 19, 2008 · No Comments
A colleague of mine recently popped down at my desk, asking me if there was an easy way to find the macros defined for a Symbian project build configuration. Given that a macro can originate form different places, its not always a easy guess. Of course you can look at the usual suspects, like the HRH file for the platform (\epoc32\include\variant\Symbian_OS_*.hrh) and the MMP file itself for the MACRO directive, but it won’t give you the full list, since the Symbian tool chain will insert its own on top. So how do you get it? Enter Carbide.c++ build configurations.
→ No CommentsCategories: Programming · Symbian OS
Am I Dreaming?
June 8, 2008 · No Comments
Just glancing through today’s Google News headline page reveals the following headlines:
China Withdraws from Tibet, with Apologies
Peace payments to Iraq a “phenomenal success”
Amnesty International reports massive drop in detainments
Gaza-West Bank divisions disappearing
Darfur peace process well underway
Music publishers: DRM has been unprofitable
Long-awaited spray-on solar coating now available
Big Three Unveil Emissions-Free Lineup
Sick of spam? New method stops it for good
Whew! That’s a lot of good news for a day. Can’t remember when was the last time I saw such a positive series of headlines.
There’s hope afterall, maybe…
P.S. There’s even Rowling: “I have heaps more to write about Harry”.
I’m speachless!
→ No CommentsCategories: Personal
Spot the Error
May 2, 2008 · No Comments
Ok here’s a bog standard piece of Symbian C++. What’s wrong? Hint, its all in the status…
void CConnectionProgressObserver::RunL()
{
if (KErrNone == iStatus.Int())
{
iConnection.ProgressNotification(iProgressBuf, iStatus);
SetActive();
}
// OnProgressNotificitionL is
// a callback (void)(TNifProgress, TInt)
iNotify->OnProgressNotificitionL(iProgressBuf(), iStatus.Int());
}
Still didn’t get it? Read on…
→ No CommentsCategories: Programming · Symbian OS