The United Nations : Women’s Shelter Project

Work on The United Nations Women’s Shelter Project for Turkey just started.
Documentation and project plan is in progress…

Share

Easy Accordion with JQuery

This is small script which is like JQuery’s accordion.
Easy, small, do not need to run in $(document).ready()

HTML PART

<div id="cont1">
  <div class="slides">
    <h3>title</h3>
    <div class="content">
      ...
    </div>

    ...

  </div>
</div>

JS PART

$("#cont1 div.content").hide();
$("#cont1 div.content:first").show();
$("#cont1 h3").bind("click", function() {
  if ( $(this).next().css("display") == 'none' ) {
    $("#cont1 div.content").hide();
    $(this).next().slideDown(250);
  }
});

CSS PART

#cont1 div.slides { padding:8px; }
#cont1 div.slides h3 { margin:4px 0px 0px 0px; height:24px; background:url(../img/bg/1.png) repeat-x; border:1px #d3d3d3 solid; -moz-border-radius:0.5ex; -webkit-border-radius:0.5ex; padding:4px 8px 0px 8px; cursor:pointer; }
#cont1 div.slides div.content { border:1px #d3d3d3 solid; -moz-border-radius:0.5ex; -webkit-border-radius:0.5ex; border-top:0px; padding:8px 4px 4px 4px; }

EXAMPLE

Share

Firefox Crashes (1)

I have some crash report for Firefox and I reported them below.

First link: http://www.ustream.tv/channel/final-fantasy-radio-x2
Crashed after some load. Maybe about a flash component.

Second link: http://rgonotsayz.com/video/templates/playindex.html
I tried to drag sound icon and Firefox crashed.

Third link: http://www.funfacecam.com/fun/games/118/blonde-wavy-sculpted-beehive-updo.html
Just crashed.

These crashes are reported and waiting for reply.

Share

Motion Capture Example

It is a motion capture example from my webcam.
It is my first try and goes well.
In this example, I tried “top left” and “top right” points.
Next time, there will be more points…

You can watch a demonstration below;

I used Andrew Kirillov’s motion capture algorithm and he says he used AForge.NET framework.
Point detection matrix is programmed by me.

Share

Inside of a Mobile Internet Device

We prepare a video that you may see inside of a mobile internet device.
This MID is produced by Compal but not sold because of the bad comments I guess.
Thanks to my brother to prepare this small video for us.

Share