Skip navigation.

Log in | Sign up

photo of Mustafa OĞUZ

Life With Opera

Stylish

Update for Chess

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.

Next Unite Application : Twitter Client

, ,

I know, I am working hard but I love my works :yes: 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 :devil: )

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 :yes:

Busy Days

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. :yes: Other project can wait a bit more.

Chess Practice game is ready

, ,

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:

Chess Unite Application (Game) is work-in-progress

, , ,

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

Blogger and Opera Widgetize fix

, , ,

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&amp;skin=
skin3&amp;widgetname=PCoder&amp;url=http%3A%2F%2Fpcoder.blogspot.com
%2Ffeeds%2Fposts%2Fdefault%3Falt%3Drss&amp;rel=myopera&amp;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&amp;skin=
skin3&amp;widgetname=PCoder&amp;url=http%3A%2F%2Fpcoder.blogspot.com
%2Ffeeds%2Fposts%2Fdefault%3Falt%3Drss&amp;rel=myopera&amp;ref="/>


-------------------------------------------

Türkçe forum başlığı : http://my.opera.com/community/forums/findpost.pl?id=3031052

Woltlab Burning Board 2.3.3 Color Palette Fix for Opera

, , ,

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.