IT Help Desk > IT Forum
প্রযুক্তি চশমা আনছে মাইক্রোসফট.
msu_math:
The function NumGCD($A, $B) returns the greatest common divisor (GCD) of the integers contained in $A and $B. The function NumNGCD($A) calls NumGCD() repeatedly and returns GCD of several integers contained in the array $A.
function NumGCD($A, $B)
{
if($A==0 || $B==0) { return NULL;}
if($A<0) $A=-$A;
if($B<0) $B=-$B;
if($A>=$B) { $bigger=$A; $smaller=$B; }
else { $bigger=$B; $smaller=$A; }
while(1)
{
$C = $bigger%$smaller; if($C==0) { $gcd=$smaller.""; return $gcd; }
$bigger = $smaller; $smaller = $C;
}
}
function NumNGCD($A)
{
$ngcd=$A[1]; $i=1;
while($A[$i]!=NULL)
{
$ngcd=NumGCD($ngcd, $A[$i]);
$i++;
}
return $ngcd;
}
tamim_saif:
Blood pressure is the force of blood pushing against the wall of the arteries. Systolic pressure which is the highest blood pressure occurs when our heart is pumping. Diastolic pressure is lowest blood pressure when our heart is resting.
The unit for blood pressure is mmHg and the notation will be systolic followed by diastolic pressure. Normal blood pressure is less than 120/80mmHg. Blood pressure of 140/90mmHg is considered high blood pressure or hypertension.
tamim_saif:
Soy beans (left), extracted from their pods (right), are squeezed to release heart-healthy cooking oil.
Scientists found a way to produce fish oil without harming a single fish
Mohammed Abu Faysal:
ট্যাবলেট, স্মার্টফোনের পাশাপাশি এখন স্মার্ট গ্লাস নামের বিশেষ ধরনের এক প্রযুক্তি-চশমা তৈরির প্রতি নজর দিয়েছে বিশ্বের বৃহত্তম সফটওয়্যার নির্মাতা মাইক্রোসফট। ইতিমধ্যে যুক্তরাষ্ট্রের পেটেন্ট আদালতে স্মার্ট গ্লাসের পেটেন্ট নিবন্ধনের জন্য আবেদনও করেছে প্রতিষ্ঠানটি। এক খবরে এ তথ্য জানিয়েছে বিবিসি অনলাইন।
মাইক্রোসফট জানিয়েছে, স্মার্ট গ্লাস ব্যবহারকারী গ্লাসের কাচে প্রয়োজনীয় তথ্য দেখতে পারবেন। অর্থাত্, নতুন এ প্রযুক্তি ব্যবহার করে খেলা দেখার সময় ব্যবহারকারীরা চশমায় খেলা সংশ্লিষ্ট বিভিন্ন তথ্যও জানতে পারবেন। পাশাপাশি কোন খেলোয়াড় কোনদিকে রয়েছেন, এ চশমায় তাও দেখা যাবে।
জানা গেছে, ২০১৩ সালে মাইক্রোসফট স্মার্ট গ্লাসে ব্যবহার উপযোগী অ্যাপ্লিকেশন তৈরি শুরু করবে। বিবিসি অনলাইন জানিয়েছে, ২০১৪ সাল নাগাদ এ চশমা বাজারে আসতে পারে ।
প্রযুক্তি বিশ্লেষকেরা জানিয়েছেন, মাইক্রোসফট ছাড়াও স্মার্ট গ্লাস তৈরির কাজ করছে গুগল, ভ্যুজিক্স, এক্সপ্লোরার ইং, টিটিপিসহ বেশ কয়েকটি প্রতিষ্ঠান। তবে মাইক্রোসফট স্মার্ট গ্লাসের প্রতিদ্বন্দ্বী হবে গুগলের প্রযুক্তি চশমা। ২০১৩ সাল নাগাদ আধুনিক প্রযুক্তির এমন চশমা বাজারে আনতে পারে গুগল।
Ref: http://www.prothom-alo.com/detail/date/2012-11-25/news/308503
sazirul:
Nice information.
Thanks for Sharing. :)
Navigation
[0] Message Index
[#] Next page
Go to full version