Minggu, 05 Agustus 2012

Ujian PJJ [ Pendidikan Jarak Jauh ]



[ Maaf soalnya lupa mau saya tulis ]
Jelaskan perbedaan dari sisi :
1.      Pengajar ( Guru/Dosen )
·         Tatap Muka
-          Dari segi materi yang akan dia jarkan akan langsung disampakan kepada yang akan digurui (murid/mahasiswa)
-          Secara langsung menjawab murid/mahasiswa yang akan bertanya tentang materi yang diajarkan.
-          Dan harus berkopetensi di bidang yang akan diajarkan
·         PJJ ( Pendidikan Jarak jauh )
-       Santai
-       Interaktif
-       Efektif
-       Wajib menguasai ICT (kompetensi)
-       Interaksi sesama murid dan mahasiswa.

2.      Peserta didik ( Siswa/Mahasiswa )
·         Tatap Muka
-          Waktu sudah ditentukan
-          Tempat sudah ditentukan
-          Tergantung dari individu masing-masing masalah record pembelajaran

·         PJJ ( Pendidikan Jarak jauh )
-          Fleksibel waktu.
-          Fleksibel tempat
-          Terrekam semua pembelajarannya
-          Student Center
-          Sesi Tanya jawab yang santai

3.      Bahan Ajar yang digunakan
·         Tatap Muka
-          Presentasi power point
-          LKS ( Lembar Kerja Siswa )
-          Penyampaian secara langsung
·         PJJ ( Pendidikan Jarak Jauh )
-        Internet / Online dan berbasis WEBSITE ( Banyak media-media yang dapat digunakan disana )

SOAL + JAWABAN NO - 2,
            Kriteria yang dibutuhkan dari sebuah media pembelajaran agar dapat memenuhi kebutuhan proses belajar mengajar yaitu bisa menggunakan audio, visual, audio visual dan lain-lain. Media itu harus bisa mensinkronasikan kepada yang diajarkan dari yang menggurui. Seperti Facebook, chating, dan mungkin juga bisa youtube dengan mengupload pembelajarannya(video) melalui website itu.

SOAL + JAWABAN NO - 3,
Pendukung :
-          Tersedianya internet
-     Mungkin bisa menggunakan media atau teknologi-teknologi lain berupa LMS, Handphone, CD/DVD dan lain-lain
Kendala :
-          Internet yang lelet
-          Bisa juga tak ada sambungan internet diberbagai daerah.
-          Atau teknologi yang kurang memadahi

Code Igniter [ Koneksi Database ]

Story About My Hometown [ BLITAR ]


Welcome,
my name is Muchamad Hamdani, I live in Blitar, city of heroes. my friends usually call me daney. SD in Blitar, junior high school in Blitar, and high school in Blitar. why I love the city? because my childhood was in Blitar until I was 18 years old. remembered as the grandfather who always invited me to go for a walk when I was 5 years old, he always took a walk around the beautiful city of Blitar. there is famous for its tourist bungkarno tomb and the old house. The most famous food there is rice pecel "mbok bari". there are always many visitors who come to eat rice pecel. whenever and wherever any words heard pecel rice is always remembered with my city, the city of Blitar, the city of heroes, city pecel rice. if you want to go there, I will wait for your arrival and I will invite you to eat rice pecel. Hahaha very funny. maybe this is all I say about my hometown. although this small town, but I'm proud to be the son of Blitar.
I love the Blitar.

Kamis, 02 Agustus 2012

Code Igniter [ Cara Upload File ]


Ok, saatnya belajar membuat Upload File dengan CI ( Code Igniter ).
Pertama anda buat Controler “upload” di folder Controler, anda tinggal copas aja nih folder dibawah. Dan silahkan :

<?php
class Upload extends CI_Controller {
            function __construct(){
                        parent::__construct();
            $this->load->helper(array('form', 'url'));
}
            function index()  {
                        $this->load->view('upload_form', array('error' => ' ' ));
            }
function do_upload(){
                        $config['upload_path'] = './upload/';
                        $config['allowed_types'] = 'gif|jpg|png';
                        $config['max_size']         = '1000';
                        $config['max_width']  = '1024';
                        $config['max_height']  = '768';
                        $this->load->library('upload', $config);
                        if ( ! $this->upload->do_upload()){
                                    $error = array('error' => $this->upload->display_errors());
                                    $this->load->view('upload_form', $error);
                        }
                        else{
                                    $data = array('upload_data' => $this->upload->data());
                                    $this->load->view('upload_success', $data);
}
}
}

?>

Setelah itu buat file bernama “upload_form.php” pada view, kodenya juga silahkan kopi dibawah. Dan silahkan :
<html>
<head>
<title>Upload Form</title>
</head>
<body>
<?php echo $error;?>
<?php echo form_open_multipart('upload/do_upload');?>
<input type="file" name="userfile" size="20" />
<br /><br />
<input type="submit" value="upload" />
</form>
</body>
</html>