Jūs esatenetbeans
netbeans
How to calculate lines of code in Linux?
I have a C++ project on NetBeans IDE. I would like to count the lines of code. So, how to count the lines of code in Ubuntu Linux?
Well, you can install additional software like sloccount (sudo apt-get install sloccount): http://manpages.ubuntu.com/manpages/natty/man1/sloccount.1.html, or you can use wc command like this:
wc -l + `find . -name \* -print`
My first JavaME program aka Hello, World on Mobile phone
I wanted to try the JavaME framework. And I tried it.
The first program I made was a simple program which shows an alert box with the text you entered.
Interesting point is that the menu buttons look different then in my "Sony Ericsson K550i". In the emulator - the "Exit" is on the right, but in my mobile phone it's on the left. At the moment I don't have any idea why, but...

