Berdasarkan Keputusan Kepala Badan Pengembangan Sumber Daya Manusia Pendidikan dan Kebudayaan dan Penjaminan Mutu Pendidikan
Nomor 12344/J/KP/2012 tanggal 16 Maret 2012
tentang Penetapan Kelulusan Peserta Uji Kompetensi Awal Sertifikasi Guru Dalam Jabatan Tahun 2012, dengan ini diumumkan peserta yang dinyatakan lulus UKA dan berhak mengikuti pendidikan dan latihan profesi guru (PLPG) tahun 2012 sebanyak 248.733 orang.
Untuk download Data Komplit Per Kabupaten, saya persilahkan menggunakan program di bawah ini. Untuk bisa menjalankan program ini, Flash Player (minimal ver 10.2) diperlukan. Langkah untuk mengunduh data cukup sederhana:
Pilih Propinsi
Pilih Kabupaten
Pilih Tingkatan (TK/SD/SMP/SMA/SMK/SLB/Pengawas)
Tekan Download button
Tunggu sampai download selesai, kemudian tekan Save As button
Pop-up window akan keluar, sekarang pilih lokasi untuk menyimpan file, dan tekan Save button
To view this page ensure that Adobe Flash Player version 10.2.0 or greater is installed.
Either scripts and active content are not permitted to run or Adobe Flash Player version 10.2.0 or greater is not installed.
Howdy! I'm Hardono. I am working as a Software Developer. I am working mostly in Windows, dealing with .NET, conversing in C#. But I know a bit of Linux, mainly because I need to keep this blog operational. I've been working in Logistics/Transport industry for more than 11 years.
Reactive.NET is an extension to LINQ which will make asynchronous programming a breeze. It has been around for quite sometime. I first heard about it maybe 2-3 years ago, but I didn’t have the will-power to follow through. But today at office I re-realize that asynchronous programming is really hard. All these plumbing methods and delegates are simply boring.
So I found the needed video workshops at Channel 9. I think they have the order quite mixed-up. So here are the video workshops in the correct order:
I’ll write more post about Reactive.NET once I become familiar with it 🙂
About Hardono
Howdy! I'm Hardono. I am working as a Software Developer. I am working mostly in Windows, dealing with .NET, conversing in C#. But I know a bit of Linux, mainly because I need to keep this blog operational. I've been working in Logistics/Transport industry for more than 11 years.
Apparently, the word ‘satisfaction’ is not in my dictionary when related to design of this blog. Just last week, after sailing in the sea of Google search result, I was stranded at Guillermo Rauch’s beautiful blog —Devthought reading his post about Node.JS.
While scrolling ups and downs trying to digest the content, I noticed that there are left and right navigational buttons which are statically positioned. So even when I scrolled all the way up or down, the buttons will remain at the same position.
I totally bought this very good idea. I realized that this help the readers alot. They did not need to comb through the page to find the previous/next buttons.
Then I looked back at this very own blog’s navigational links. To my dismay, they are now looks totally unacceptable 🙁
So, I want to make this blog navigational buttons statically positioned too. But then I remember, visitors to this blog are not all using 24″ wide flat screen. To validate my suspicion, I logged in to Google Analytics and look at the visitors’ browser information.
Aha! Many of this blog’s visitors are still using resolution with 1024 pixels of width. Considering that this blog requires at least 960 pixels, I need to ensure that this changes only affect those visitors that have enough free pixels on the left and right side for the links. For that very reason, I can’t do the modification on the WordPress’ template. Hence, jQuery is the only way to go.
In summary, the jQuery script will do the following steps:
get the width of browser’s window.
if have enough space for the links, then set the links into fixed position and then hide the links’ original container.
if not, check whether the links’ container is hidden. If hidden, make it visible and move the links inside
repeat step 1,2,3 when the window is resized
To implement this, I need to firstly modify the navigational links in my template’s index.php and single.php.
Next, I need to add the following script to footer.php
if (jQuery)
{
/* obtain jQuery instance */
$sdv = jQuery.noConflict();
/* ensure the links look & feel consistent */
var formatLink = function(strEl){
var pEl = $sdv(strEl);
if (pEl.length>0) {
pEl.children().children().css('color','#ccc');
pEl.children().children().hover(
function(){$sdv(this).css('color','#E1771E');},
function(){$sdv(this).css('color','#ccc');}
);
}
}
formatLink("#divPrev");
formatLink("#divNext");
var fnModifyNavigation = function(){
/* obtain window's width */
var w = $sdv(window).width();
var hw = (w-970)/2;
if (hw>200)
{
/* we have enough space for the fixed postion links */
jQFPL($sdv("#divPrev"),'left',0, hw);
jQFPL($sdv("#divNext"),'right', 0, hw);
$sdv("#divPostNav").hide();
}
else
{
/* not enough space for the fixed postion links */
var divNav = $sdv("#divPostNav");
if (divNav.length > 0) {
if (divNav.css('display') == 'none')
{
divNav.show();
divNav.prepend(jQSPL("#divNext", "right"));
divNav.prepend(jQSPL("#divPrev", "left"));
}
}
}
}
/* jQuery Fixed Position Link */
var jQFPL = function(el, remClass, absPosPX, width)
{
var pEl = el.detach();
if (pEl) {
pEl.removeClass(remClass);
eval("var objStyle = { 'position':'fixed', 'top':'300px', 'width': '"
+ width + "px', '" + remClass + "':'" + absPosPX+ "px', 'text-align':'"
+remClass+"'};");
pEl.css(objStyle);
pEl.appendTo("body");
}
}
/* jQuery Static Position Link*/
var jQSPL = function(strEl, strFloat){
var el = $sdv(strEl).detach();
el.css('position','static');
el.css('width','50%');
el.css('float',strFloat);
return el;
}
/* run position modification routine
after the document is loaded */
$sdv(fnModifyNavigation);
/* handle the window's resize event
and run position modification routine again */
$sdv(window).resize(fnModifyNavigation);
}
That’s all needed to make the prev/next navigational links statically positioned on the screen.
Howdy! I'm Hardono. I am working as a Software Developer. I am working mostly in Windows, dealing with .NET, conversing in C#. But I know a bit of Linux, mainly because I need to keep this blog operational. I've been working in Logistics/Transport industry for more than 11 years.