Malcolm

653
reputation
63 views

Registered User

name Malcolm
member for 12 months
seen 4 hours ago
website
location Moscow, Russia
age 19
Developer for Java ME. It is my hobby, all of my applications are freeware, and my goal is to show that Java ME can be as suitable for powerful programs as Symbian.
Nov
14
comment Recursive function to generate all combinations of capitals in a word
You forgot BEn, by the way
Sep
26
comment Should UTF-16 be considered harmful?
If BMP is that far from having enough capacity to write normally in Chinese, how do they manage to write in such encodings as GBK or GB 2312? It is clear that support of other planes would be useful, but nonetheless.
Aug
20
comment asp:GridView is not loading inside asp:Content
I don't think this thing needs an answer since there's no question. :-)
Aug
16
answered j2me - How to create image in jpg format?
Aug
12
comment Should UTF-16 be considered harmful?
It does, but characters outside BMP are not for everyday use, they can be used, for example, for old texts or to write names with rare hieroglyphs in them. And all characters that are commonly used fit into BMP.
Aug
8
awarded  Nice Answer
Jul
12
comment J2ME app Vs browser on a handset
A few corrections. First of all midlets are not required to be signed, and this is a great advantage over such platforms as BREW. Secondly, smartphones usually share the same JVMs, so developing an app that runs everywhere is not that complicated. BTW, if you target browsers, you'll leave mobile phones out of the scope. And thirdly, Java ME with MSA can do almost everything that native apps do, if JVM is fast enough. The major problem is that WM support for Java ME is... Well, woefully bad, and iPhone doesn't support it at all. Symbian, however shouldn't have problems with Java ME.
Jul
11
comment Java - Working with Date/Time in J2ME
Not a problem, call Calendar.getInstance(TimeZone zone) with any parameter you need.
Jul
11
answered Java - Working with Date/Time in J2ME
Jul
7
comment ignored files in the netbeans
Bugs should be fixed by NetBeans developers.
Jul
7
comment ignored files in the netbeans
Could be a bug, then. There's no other reason IDE would ignore files.
Jul
7
answered ignored files in the netbeans
Jul
6
comment Best API/LIB for encoding/decoding base64/quoted-printable in Java
It is small and completely free of any licenses. Commons codec is more like an all-purpose library, and this tiny library does only one thing and does it very well.
Jul
6
answered Best API/LIB for encoding/decoding base64/quoted-printable in Java
Jul
6
answered IE8 Big Problem! Not displaying site properly.
Jul
3
accepted How to change the Dimensions of the Applet Viewer in NetBeans 6.7
Jul
3
comment Trouble stopping a loop
Good example! Well, I do this automatically, but it may be not obvious and some people forget to add this rare modificator.
Jul
3
accepted Trouble stopping a loop
Jul
2
comment Trouble stopping a loop
Mark this post as a solution, then. :)
Jul
2
comment Trouble stopping a loop
Well, there are some optimizations that assume that the variables are only modified within the current thread. This allows to work not with the real variable, but with its copy in the thread and update the real variable (master-copy) from time to time. But in your case the flag variable can be modified by other code, so you have to mark this variable as volatile, and the thread will become aware that it has to take into account such possibility.
Jul
2
answered Trouble stopping a loop
Jul
2
comment Should UTF-16 be considered harmful?
There is, but it's not really a problem specific for Unicode since standart encodings also don't include this characters. People use homophones and other ways to write such names, and that can be done in any encoding, including Unicode. Probably there are serious difficulties even with inputting rare symbols, so the situation doesn't happen all of a sudden and users won't be surprised to find out the program is refusing to accept them correctly if it does.
Jul
1
comment How to replace text in a powerpoint (.ppt) document?
You could also make use of OpenOffice, I've added information to my post.
Jun
30
revised How to replace text in a powerpoint (.ppt) document?
Created a list of possible options
Jun
30
comment How to change the Dimensions of the Applet Viewer in NetBeans 6.7
What if this is just a NetBeans bug? You should report it then.
Jun
30
answered Random Number Between 2 Double Numbers
Jun
30
answered How to change the Dimensions of the Applet Viewer in NetBeans 6.7
Jun
30
answered J2ME TextField Exception
Jun
30
comment Website not rendering correctly in IE7?
Everything looks fine in IE8...
Jun
30
answered Object doesn’t do anything after instantiation - bad code smell?
Jun
30
answered Extend Notepad++
Jun
30
comment zlib on z/OS USS
This is exactly why I dislike C/C++ preprocessor.
Jun
29
answered Software quality metrics
Jun
29
comment Should UTF-16 be considered harmful?
And what did I write wrong? All characters of plane 2 contain only rare or historic symbols and all other characters fit into BMP and thus don't need surrogate pairs.
Jun
29
answered Do I need a lawyer to run a website?
Jun
29
answered Counting the number of occurrences of each item in a list
Jun
29
comment Placing the right content into the right place
Okay, but why does its idea of layout not suit your needs?
Jun
29
comment Everything showed good, except the tabs. (HTML,CSS,JS)
Everything works perfectly fine in my Opera. By the way, you write that you have valid XHTML, and it's not, so I advice you to check it.
Jun
29
comment Multiple instances of j2me midlet problem
If the application is put to background, pauseApp() should be called in first place. In this case the bug would be not calling pauseApp() method, but it's still a bug anyway.
Jun
29
revised Is it worth learning C to get a deeper understanding of OS’es and computers in general?
added 4 characters in body
Jun
29
answered Placing the right content into the right place
Jun
29
answered Is it worth learning C to get a deeper understanding of OS’es and computers in general?
Jun
29
comment How to replace text in a powerpoint (.ppt) document?
Well, I have seen different libraries to work with .ppt files on the Web, but when it comes to changing the documents, they are useless. Another solution is probably using OpenOffice or PowerPoint APIs for changing the documnets, I don't know, whether this solution suits you or not.
Jun
28
answered How to replace text in a powerpoint (.ppt) document?
Jun
27
comment Should UTF-16 be considered harmful?
Not true, Asian scripts like Japanese, Chinese or Arabic belong to BMP also. BMP itself is actually very large and certainly large enough to include all the scripts used nowadays, it's not like it includes only European scripts or something. No, if you are really going to encounter non-BMP characters, you'll almost definitely know it.
Jun
26
answered Multiple instances of j2me midlet problem
Jun
26
revised Should UTF-16 be considered harmful?
added 8 characters in body
Jun
26
comment Language features you should never use?
@divideandconquer.se In Java that could be simply avoided by using try-finally block.
Jun
26
comment Is there any relation between the class that implements interface and that interface???
If it includes participating in some kind of operations, then this is OK. Maybe you should clarify it a bit, but that's, of course, up to you.
Jun
26
revised Should UTF-16 be considered harmful?
added 249 characters in body