yaikhom.com yaikhom.com

yaikhom.com

Notes

Handling web service requests using C, FastCGI and Lighttpd. December 18, 2014. Simple image server with tiled online viewer. December 01, 2014. Lean web services using C, FastCGI and MySQL. September 13, 2014. August 21, 2014. July 29, 2014. Understanding Splay tree rotations. May 12, 2014. Non-recursive tree traversal without a Stack. May 12, 2014. Implementing a Paged Heap. January 29, 2014. November 23, 2013. November 09, 2013. November 09, 2013. Implementing a Beeswarm plot. April 05, 2013.

http://www.yaikhom.com/

WEBSITE DETAILS
SEO
PAGES
SIMILAR SITES

TRAFFIC RANK FOR YAIKHOM.COM

TODAY'S RATING

>1,000,000

TRAFFIC RANK - AVERAGE PER MONTH

BEST MONTH

August

AVERAGE PER DAY Of THE WEEK

HIGHEST TRAFFIC ON

Thursday

TRAFFIC BY CITY

CUSTOMER REVIEWS

Average Rating: 3.6 out of 5 with 9 reviews
5 star
3
4 star
1
3 star
4
2 star
0
1 star
1

Hey there! Start your review of yaikhom.com

AVERAGE USER RATING

Write a Review

WEBSITE PREVIEW

Desktop Preview Tablet Preview Mobile Preview

LOAD TIME

0.4 seconds

FAVICON PREVIEW

  • yaikhom.com

    16x16

  • yaikhom.com

    32x32

CONTACTS AT YAIKHOM.COM

Yaikhom Studios

Greg Yaks

City●●●●cade

Ca●●ff , CF10 2PF

United Kingdom

44.00●●●●●54321
gr●●@yaikhom.com

View this contact

Yaikhom Studios

Greg Yaks

City●●●●cade

Ca●●ff , CF10 2PF

United Kingdom

44.00●●●●●54321
gr●●@yaikhom.com

View this contact

Yaikhom Studios

Greg Yaks

City●●●●cade

Ca●●ff , CF10 2PF

United Kingdom

44.00●●●●●54321
gr●●@yaikhom.com

View this contact

Login

TO VIEW CONTACTS

Remove Contacts

FOR PRIVACY ISSUES

DOMAIN REGISTRATION INFORMATION

REGISTERED
2012 January 08
UPDATED
2013 April 05
EXPIRATION
EXPIRED REGISTER THIS DOMAIN

BUY YOUR DOMAIN

Network Solutions®

DOMAIN AGE

  • 12

    YEARS

  • 4

    MONTHS

  • 29

    DAYS

NAME SERVERS

1
ns-1100.awsdns-09.org
2
ns-1872.awsdns-42.co.uk
3
ns-480.awsdns-60.com
4
ns-642.awsdns-16.net

REGISTRAR

GODADDY.COM, LLC

GODADDY.COM, LLC

WHOIS : whois.godaddy.com

REFERRED : http://registrar.godaddy.com

CONTENT

SCORE

6.2

PAGE TITLE
Notes | yaikhom.com Reviews
<META>
DESCRIPTION
Handling web service requests using C, FastCGI and Lighttpd. December 18, 2014. Simple image server with tiled online viewer. December 01, 2014. Lean web services using C, FastCGI and MySQL. September 13, 2014. August 21, 2014. July 29, 2014. Understanding Splay tree rotations. May 12, 2014. Non-recursive tree traversal without a Stack. May 12, 2014. Implementing a Paged Heap. January 29, 2014. November 23, 2013. November 09, 2013. November 09, 2013. Implementing a Beeswarm plot. April 05, 2013.
<META>
KEYWORDS
1 gagarine
2 yaikhom
3 notes
4 work
5 bull;
6 agglomerative hierarchical clustering
7 strongly connected components
8 implementing a heap
9 accuracy and precision
10 numerical errors
CONTENT
Page content here
KEYWORDS ON
PAGE
gagarine,yaikhom,notes,work,bull;,agglomerative hierarchical clustering,strongly connected components,implementing a heap,accuracy and precision,numerical errors,something about matrices
SERVER
AmazonS3
CONTENT-TYPE
utf-8
GOOGLE PREVIEW

Notes | yaikhom.com Reviews

https://yaikhom.com

Handling web service requests using C, FastCGI and Lighttpd. December 18, 2014. Simple image server with tiled online viewer. December 01, 2014. Lean web services using C, FastCGI and MySQL. September 13, 2014. August 21, 2014. July 29, 2014. Understanding Splay tree rotations. May 12, 2014. Non-recursive tree traversal without a Stack. May 12, 2014. Implementing a Paged Heap. January 29, 2014. November 23, 2013. November 09, 2013. November 09, 2013. Implementing a Beeswarm plot. April 05, 2013.

INTERNAL PAGES

yaikhom.com yaikhom.com
1

Something about matrices

http://yaikhom.com/2012/08/16/something-about-matrices.html

August 16, 2012. I am fascinated by matrices. It is fundamental to so many computational algorithms. These days, that I thought of having some fun writing. A small JavaScript library about it. The source code is available for download from:. Git clone https:/ github.com/gyaikhom/matrices.git. Creates a matrix object with the supplied number of rows and columns. Fills this matrix with values calculated using the supplied function. Swaps two columns in this matrix. Swaps two rows in this matrix. Checks if ...

2

Implementing a Slider user interface

http://yaikhom.com/2013/03/17/implementing-a-slider-user-interface.html

Implementing a Slider user interface. March 17, 2013. A slider is also preferred when it would be cumbersome to enter the required value manually. For instance, it makes more intuitive sense to adjust the volume on a multimedia application using a slider than it is by setting the required decibels manually. The following is an example slider. Is set by a custom handler attached to the above slider. It should allow a user to change the value of a variable by dragging its slider button,. This is the functi...

3

Implementing the Fuzzy c-Means algorithm

http://yaikhom.com/2013/03/16/implementing-the-fuzzy-c-means-algorithm.html

Implementing the Fuzzy c-Means algorithm. March 16, 2013. A clustering algorithm organises items into groups based on a similarity criteria. The Fuzzy c-Means algorithm is a clustering algorithm where each item may belong to more than one group (hence the word fuzzy. Where the degree of membership for each item is given by a probability distribution over the clusters. In each iteration of the FCM algorithm, the following objective function (J ) is minimised:. In equations (2) and (3) the fuzziness coeffi...

4

Non-recursive tree traversal without a Stack

http://yaikhom.com/2014/05/12/nonrecursive-tree-traversal-without-a-stack.html

Non-recursive tree traversal without a Stack. May 12, 2014. In this article, we implement binary tree traversal algorithms. These are:. Visit the node before visiting its left and right subtrees. Visit the node after visiting the left subtree, before visiting the right subtree. Visit the node after visiting its left and right subtrees. We present here both recursive and non-recursive versions. Note that common non-recursive implementations use a [. Http:/ en.wikipedia.org/wiki/Stack. This is then set to.

5

Implementing a Heap

http://yaikhom.com/2013/11/23/implementing-heap.html

November 23, 2013. In this article, we implement a [Heap data structure](http:/ en.wikipedia.org/wiki/Heap. Structure) . Since this is a fundamental data structure, the conceptual details of Heaps are discussed in many data structure textbooks. I shall, therefore, not repeat them here. Nonetheless, I shall discuss the Heap implementation with an example usage in mind, so that it is more concrete and provides a way to adapt the implementation for other purposes. By the unique index. Index This allows the ...

UPGRADE TO PREMIUM TO VIEW 14 MORE

TOTAL PAGES IN THIS WEBSITE

19

SOCIAL ENGAGEMENT



OTHER SITES

yaikar.ru yaikar.ru

ЯИкар - всё о самолётах и небе

Фотографии с выставки вертолётов в Торжке. Вертолет AW139 от российско-итальянского предприятия. На открывшемся во Франции Международном аэрокосмическом салоне в Ле Бурже, между российской кампанией OAO Вертолеты России и итальянской компанией AgustaWestland подписано соглашение об учреждении совместного предприятия HeliVert, которое займётся производством гражданского среднего двухдвигательного вертолета AW139. Новый гидросамолёт от самарского предприятия АвиаТех Л-31. Шлем полностью сертифицирован по с...

yaikat.deviantart.com yaikat.deviantart.com

Yaikat (Yaiza) - DeviantArt

Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) ; this.removeAttribute('onclick')" class="mi". Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) ; this.removeAttribute('onclick')". Join DeviantArt for FREE. Forgot Password or Username? Deviant for 1 Year. This deviant's full pageview. Last Visit: 5 days ago. This is the place where you can personalize your profile! Pay the oth...

yaikerz.blogspot.com yaikerz.blogspot.com

Rodriguez Axel

25 sept. 2009. System of a Down. System of a Down - SOAD. System of a Down (también conocido abreviadamente como System o por sus siglas, SOAD) es una banda de. En el año 1995. En un comienzo se llamaron Soil, pero luego adoptaron el nombre "System of a Down" inspirados por el poema. Victims of a Down. Escrito por el guitarrista Daron Malakian. Son famosos por realizar canciones en cuyas letras se manifiestan en contra del maltrato infantil, la violencia, la guerra, la. Que está complacido de que System ...

yaikgamer.deviantart.com yaikgamer.deviantart.com

YaiKGamer (Yai o solo YK) - DeviantArt

Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) ; this.removeAttribute('onclick')" class="mi". Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) ; this.removeAttribute('onclick')". Join DeviantArt for FREE. Forgot Password or Username? Solo se tu mismo 8D. Digital Art / Student. Yai o solo YK. Deviant for 1 Year. Yai o solo YK. This deviant's activity is hidden. Why," you ask?

yaikh.djdkdao.loan yaikh.djdkdao.loan

蝴蝶甩刀玩法步骤图,蝴蝶甩刀玩法步骤图专卖店

yaikhom.com yaikhom.com

Notes

Handling web service requests using C, FastCGI and Lighttpd. December 18, 2014. Simple image server with tiled online viewer. December 01, 2014. Lean web services using C, FastCGI and MySQL. September 13, 2014. August 21, 2014. July 29, 2014. Understanding Splay tree rotations. May 12, 2014. Non-recursive tree traversal without a Stack. May 12, 2014. Implementing a Paged Heap. January 29, 2014. November 23, 2013. November 09, 2013. November 09, 2013. Implementing a Beeswarm plot. April 05, 2013.

yaikhotel.ru yaikhotel.ru

Гостиница Яик, Оренбург

ЦБ РФ на 17.08.2015. По Гринвичу (GMT 6). Добро пожаловать в г. Оренбург! Гостиница Яик ждет Вас! В Оренбурге гостиница Яик открыла двери для встречи своего первого гостя в ноябре 2008 года. Этот современный, стильный, прекрасно оборудованный гостиничный комплекс расположен в тихом районе Оренбурга, в десяти минутах езды от административного центра города. К встрече гостей готовы 22 номера категорий Эконом, Стандарт, Полулюкс, Студия на любой вкус и кошелек! Сауна со скидкой 30%. При заселении более двух...

yaiki.com yaiki.com

VAGRANT VOYAGE

yaiki.com.ua yaiki.com.ua

Яйки-сподівайки

Схоже щось не так з твоїм браузером, Яйки сподіваються, що ти оновиш браузер до останньої версії. А знаєш, краще використовуй Google Chrome. Навіть як­що вам ду­же кор­тить, не вар­то за­ван­та­жу­ва­ти цей сайт з те­ле­фо­ну. Кра­ще швид­ше біжіть до ве­ли­ко­го ек­ра­на.

yaikiyamakawa.blogspot.com yaikiyamakawa.blogspot.com

日本の心霊&オカルト&都市伝説

yaikk.com yaikk.com

野麻网