Thursday, 3. December 2009, 21:20:44
Nowadays, I am re-coding some part of game. I will update to 1.0 release with all Chess Game rules after coding completed. There are a lot of ideas to develop Unite Application in list.
Friday, 27. November 2009, 02:15:19
new project, developer, unite team
I know, I am working hard but I love my works

There are more web projects to develop.
- Tabbed page Twitter client
- Home Economy (Income and Expense for home)
- MyVille (Require advanced database system, so this is the next-gen game for Unite Application

)
There are a lot more private web projects on my todo list. I am searching Unite developer's to give a chance to improve their skills with our project crew. We will announce our "Evolve" named project when it is completed. We know, we are working hard
Thursday, 26. November 2009, 12:38:22
I am working on three different project. I released 0.8 Chess practice game but It wasn't bug-free. Now working on Chess Unite Application again. At this time, I will fix all bug before I release.

Other project can wait a bit more.
Thursday, 26. November 2009, 09:33:33
unite application, chess unite app, chess
Finally, I finished my Unite Application, Single player Chess game. Chess is one of the most popular board game. It improves your skill, mind. With my Unite Application, play against your skill. There is small errors but this is 0.8 version. I canceled multi-player function because of busy days. This feature will ve ready with next release.
I hope, you like it:up:
Screenshot:
Thursday, 19. November 2009, 14:24:53
unite application, chess, chess unite game, chess game
I started this project about 1 week ago and it is going more smoothly than I expected. Clean, Understandable GUI and yes this game is between you and your friend (: . We can say that it is a multiplayer game but this feature is not implemented yet. The game which is being developed is going to be ready with all features within a week.
If you are interested in Unite Application development, join us. (Not active for now, but you can join)
Unite Development Group
Friday, 26. June 2009, 13:11:01
fix, widgetize blogger support, widgetize autodiscovery, widgetize blogspot support
If you aren't using HTML template in Blogger, you can get an error in Blogger while adding Auto discovery code. To fix this problem just edit your Widgetize code a bit.
Go to end of code. You will see ">" character. Change it into this "/>" and that works.
My example Widgetize code that not working with Blogger;
<link rel="alternate" type="application/x-opera-widgets" title="PCoder"
href="http://widgets.opera.com/widgetize/Feed%20Reader/Advanced/?serve&skin=
skin3&widgetname=PCoder&url=http%3A%2F%2Fpcoder.blogspot.com
%2Ffeeds%2Fposts%2Fdefault%3Falt%3Drss&rel=myopera&ref=">
After edit, It should work;
<link rel="alternate" type="application/x-opera-widgets" title="PCoder"
href="http://widgets.opera.com/widgetize/Feed%20Reader/Advanced/?serve&skin=
skin3&widgetname=PCoder&url=http%3A%2F%2Fpcoder.blogspot.com
%2Ffeeds%2Fposts%2Fdefault%3Falt%3Drss&rel=myopera&ref="/>
-------------------------------------------
Türkçe forum başlığı :
http://my.opera.com/community/forums/findpost.pl?id=3031052
Thursday, 4. June 2009, 22:11:47
wbb, color palette fix, 2.3.3 version, Woltlab Burning Board
There is a bug or lack or anything but user can not set color with color palette. Here is fix for this issue If you are using wBB 2.3.x
1- Open your
acp/templates/designpack_colorchooser.htm file with your text editor
2- Find this block;
x = 4 * ((document.all ? event.offsetX : e.layerX)-2);
y = 4 * ((document.all ? event.offsetY : e.layerY)-2+5);
3- Replace with this code;
e=window.event; //added
e.layerX=e.offsetX; //added
e.layerY=e.offsetY; //added
x = 4 * ((document.all ? event.offsetX : e.layerX)-2);
y = 4 * ((document.all ? event.offsetY : e.layerY)-2+5);
4- Do the same things for
Cache/templates/acp/designpack_colorchooser.htm file
-------------------------------------------------------------------------------------
Woltlab Burning Board 2.3.3 admin panelinde kullanılan Renk paleti Opera ile düzgün çalışması için yapılmış küçük bir güncelleme.
1-
acp/templates/designpack_colorchooser.htm dosyasını Text editörü ile açın
2- Bu kod satırını bulun;
x = 4 * ((document.all ? event.offsetX : e.layerX)-2);
y = 4 * ((document.all ? event.offsetY : e.layerY)-2+5);
3- Bu kod ile değiştirin;
e=window.event; // eklendi
e.layerX=e.offsetX; // eklendi
e.layerY=e.offsetY; // eklendi
x = 4 * ((document.all ? event.offsetX : e.layerX)-2);
y = 4 * ((document.all ? event.offsetY : e.layerY)-2+5);
4- Aynı şeyi
Cache/templates/acp/designpack_colorchooser.htm dosyası içinde yapın. Artık renk paletini Opera tarayıcısı ile birlikte rahatlıkla kullanabilirsiniz.