Minggu, 27 Desember 2015

Menghubungkan VLAN Yang Sama Antar Switch di Cisco

Switch>enable
Switch#con
Switch#conf
Switch#configure terminal
Enter configuration commands, one per line.  End with CNTL/Z.
Switch(config)#vlan 10
Switch(config-vlan)#name vlan-grafika
Switch(config-vlan)#exit
Switch(config)#vlan 20
Switch(config-vlan)#name vlan-akutansi
Switch(config-vlan)#exit



Switch(config)#int fa0/1
Switch(config-if)#switchport mode access
Switch(config-if)#switchport access vlan 10
Switch(config-if)#exit
Switch(config)#int fa0/2
Switch(config-if)#switchport mode access
Switch(config-if)#switchport access vlan 20
Switch(config-if)#exit


Switch(config)#int fa0/3
Switch(config-if)#switchport mode trunk

Jumat, 31 Juli 2015

DNS Bersih untuk MikroTik

Bertemu lagi dengan saya Een Pahlevi, well kali ini kita posting catatan kecil, atau tips kecil, dimana saya baru tau kalo sekarang ada DNS Bersih.. Buat apa sih DNS bersih? searching google sono..

Kali ini ane cuma ingin nulis script buat mikrotik aja, biar enak di copas..


interface pptp-client
add connect-to=119.2.79.82 disabled=no mrru=1600 name=pptp-out1 password=indosysadmin user=dnsbersih
add connect-to=117.74.119.252 disabled=no mrru=1600 name=pptp-out2 password=indosysadmin user=dnsbersih


ip route
add check-gateway=ping distance=1 dst-address=172.17.0.0/16 gateway=172.17.0.3,172.17.0.2

ip firewall nat
add action=dst-nat chain=dstnat comment="Redirect to DNS Bersih" dst-port=53 nth=2,1 protocol=udp to-addresses=172.17.0.2 to-ports=53
add action=dst-nat chain=dstnat comment="Redirect to DNS Bersih" dst-port=53 nth=1,1 protocol=udp to-addresses=172.17.0.3 to-ports=53
add action=masquerade chain=srcnat out-interface=all-ppp

dan hasil nya.. tara..

Minggu, 19 Juli 2015

Jumat, 03 Juli 2015

Kode Otomatis PHP

Cara membuat kode otomatis di PHP,
mulai dari M001,M002,M003 dll.

Skrip nya di bawah ini





<?php
@session_start();
include "inc/koneksi.php";
?>
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="bootstrap/css/bootstrap.css">
<link rel="stylesheet" type="text/css" href="bootstrap/css/bootstrap-responsive.css">
<script type="text/javascript" src="boostrap/js/jquery-1.11.3.min"></script>
    <title>Data Pelanggan</title>
</head>
<body>
<div class="container">
<fieldset>
    <fieldset>
    <legend>Data Pelanggan</legend>
<?php
$carikode = mysql_query("select max(kode_pelanggan) from tb_pelanggan") or die(mysql_error());
$datakode = mysql_fetch_array($carikode);
if($datakode) {
    $nilaikode= substr($datakode[0], 1);
    $kode = (int) $nilaikode;
    $kode = $kode + 1;
    $hasilkode = "M".str_pad($kode, 3, "0", STR_PAD_LEFT);
} else {
    $hasilkode = "M001";
}
?>
<form action="" method="post">
        <table class="table table-hover">
            <tr>
            <td>Kode Pelanggan</td>
            <td>:</td>
            <td><input type="text" name="kode_pelanggan" value="<?php echo $hasilkode;  ?>"</td>
            </tr>

            <tr>
            <td>Nama Toko/Dealer</td>
            <td>:</td>
            <td><input type="text" name="nama_toko"></td>
            </tr>

            <td>Nama Pemilik</td>
            <td>:</td>
            <td><input type="text" name="nama_pemilik"></td>
            </tr>

            <td>Alamat</td>
            <td>:</td>
            <td><input type="text" name="alamat"></td>
            </tr>

            <td>Telpon</td>
            <td>:</td>
            <td><input type="text" name="telpon"></td>
            </tr>
           
            <tr>
            <td></td>
            <td></td>
            <td><input type="submit" class="btn btn-primary" name="tambah" value="Tambah"><input style="margin-left: 2px;" type="reset" class="btn btn-danger" value="Reset"></td>
            </tr>
       
           
        </table>
        </fieldset>
    </form>

    <?php

    $kode_pelanggan     =@$_POST['kode_pelanggan'];
    $nama_toko             =@$_POST['nama_toko'];
    $nama_pemilik        =@$_POST['nama_pemilik'];
    $alamat             =@$_POST['alamat'];
    $telpon             =@$_POST['telpon'];
   
    $tambah_mobil    =@$_POST['tambah'];

    if ($tambah_mobil) {
            if ($kode_mobil == '' || $merk == '' || $tipe == '' || $warna == '' || $harga == '') {
                ?>
                <script type="text/javascript">
                alert("inputan tidak boleh ada yang kosong");
                </script>   
                <?php
            } else {
                mysql_query("insert into tb_mobil values ('$kode_mobil','$merk','$tipe','$warna', '$harga')") or die (mysql_error());
                ?>
                <script type="text/javascript">
                alert("Tambah data mobil baru berhasil");
                window.location.href="?page=mobil";
                </script>
                <?php
            }
    }
    ?>
</fieldset>
</div>
<script type="text/javascript" src="bootstrap/js/bootstrap.min.js"></script>
</body>
</html>

Selasa, 16 Juni 2015

Download SPAT 6.0.9.9

Bertemu lagi dengan saya Een Pahlefi, karena kebetulan pengen buat remastering windows XP/7 buat semua tipe mainboard, supaya enak di catet dulu biar gk ilang ^_^

Download 

1. Mirror
2. Mirror

Caranya, install semua aplikasi yang di butuhkan, driver nya juga gpp, dan atur seringan mungkin, trus jalankan downloadtan anda tadi, habis restart, silahkan backup pakai norton ghost/acronis.. jadi deh :)

Senin, 15 Juni 2015

Cara Membuat Coding Simpan dengan Delphi7 + Microsoft Database Access

Berjumpa lagi dengan saya Een Pahlevi, kali ini saya akan menulis sebuah catatan kecil mengenai saya belajar pemprograman delphi7, disini saya menggunakan Microsoft Access Database 2013 sebagai database penyimpanan data nya. 

Baiklah, saya anggap anda sudah bisa mendesain sebuah form sederhana, seperti gambar disamping ini.

Logika program nya seperti ini



1. Jika inputan username atau password kosong maka pesan akan muncul inputan anda masih kosong
2. Jika inpuan username atau password sudah di inputkan, tetapi data username sudah ada di database maka akan muncul pesan "username sudah ada"
3. Jika inputan username sudah di inputkan, dan username tidak ada yang sama didalam database maka username dan password tersebut bisa di simpan didalam database

procedure TForm5.btndaftarClick(Sender: TObject);
begin
  if edtuser.Text='' then
    begin
    MessageDlg('Username masih kosong',mtError,[mbOK],0);
    edtuser.SetFocus;
    end else
  if edtpass.Text='' then
    begin
    MessageDlg('Password masih kosong',mtError,[mbOK],0);
    edtpass.SetFocus;
    end else
  if DataModule1.qry_users.Locate('username',edtuser.Text,[]) then
    begin
    MessageDlg('Maaf username sudah ada',mtError,[mbOK],0);
    end else
  begin
    DataModule1.qry_users.Append;
    DataModule1.qry_users.FieldByName('username').AsString:=edtuser.Text;
    DataModule1.qry_users.FieldByName('password').AsString:=edtpass.Text;
    DataModule1.qry_users.Post;
    ShowMessage('Data berhasil di simpan');
    edtuser.Clear;
    edtpass.Clear;
  end;
end;
end.

Sabtu, 13 Juni 2015

Cara Membuat Calculator dengan Delphi7

Lagi belajar membuat calculator pake delphi7, catat dlu siapa tau berguna :(

dilengkap dengan validasi, kalo angka pertama kosong keluar pesan messagebox, dan seterus nya

procedure TForm2.btntambahClick(Sender: TObject);
var angka1,angka2,hasil:Single;
begin
  if edtpertama.Text='' then begin
    ShowMessage('angka pertama kosong');
    edtpertama.SetFocus;
  end else if edtkedua.Text='' then begin
    ShowMessage('angka kedua kosong');
    edtkedua.SetFocus;
  end else
  begin
    angka1:=StrToFloat(edtpertama.Text);
    angka2:=StrToFloat(edtkedua.Text);
    hasil:=angka1+angka2;
    edthasil.Text:=FloatToStr(hasil);
  end;
end;

procedure TForm2.btnkurangClick(Sender: TObject);
var angka1,angka2,hasil:Single;
begin
  if edtpertama.Text='' then begin
    ShowMessage('angka pertama kosong');
    edtpertama.SetFocus;
  end else if edtkedua.Text='' then begin
    ShowMessage('angka kedua kosong');
    edtkedua.SetFocus;
  end else
  begin
    angka1:=StrToFloat(edtpertama.Text);
    angka2:=StrToFloat(edtkedua.Text);
    hasil:=angka1-angka2;
    edthasil.Text:=FloatToStr(hasil);
  end;
end;

procedure TForm2.btnkaliClick(Sender: TObject);
var angka1,angka2,hasil:Single;
begin
  if edtpertama.Text='' then begin
    ShowMessage('angka pertama kosong');
    edtpertama.SetFocus;
  end else if edtkedua.Text='' then begin
    ShowMessage('angka kedua kosong');
    edtkedua.SetFocus;
  end else
  begin
    angka1:=StrToFloat(edtpertama.Text);
    angka2:=StrToFloat(edtkedua.Text);
    hasil:=angka1*angka2;
    edthasil.Text:=FloatToStr(hasil);
  end;
end;

procedure TForm2.btnbagiClick(Sender: TObject);
var angka1,angka2,hasil:Single;
begin
  if edtpertama.Text='' then begin
    ShowMessage('angka pertama kosong');
    edtpertama.SetFocus;
  end else if edtkedua.Text='' then begin
    ShowMessage('angka kedua kosong');
    edtkedua.SetFocus;
  end else
  begin
    angka1:=StrToFloat(edtpertama.Text);
    angka2:=StrToFloat(edtkedua.Text);
    hasil:=angka1/angka2;
    edthasil.Text:=FloatToStr(hasil);
  end;
end;
end.

Senin, 08 Juni 2015

Download Wandriver 6.5 - Latest

Kali ini kita mau nulis sesuatu artikel yang mungkin berguna bagi para pekerja install ulang, hahahaha..

Versi terbaru WanDriver 6.5 :D

Download :
Mirror : http://adf.ly/1IRmew
1. http://adf.ly/1IRmOh
2. http://adf.ly/1IRmT6
3. http://adf.ly/1IRmUm
4. http://adf.ly/1IRmWA
5. http://adf.ly/1IRmXa



Selasa, 02 Juni 2015

Easy Sysprep 3.1.2 Portable Download

Membagikan sesuatu tentang Easy Sysprep 3.1.2 Portable, dimana kegunaanya adalah membuat image norton ghost (extensi file nya .gho), supaya para tukang install ulang dapat membuat sysprep otomatis yang mampu di muat di berbagai jenis mainboard, tinggal restore jalan deh.. Belajar sendiri yah kegunaanya

Download Appbox

Jumat, 15 Mei 2015

Jumat, 08 Mei 2015

Mangle Game Online 2015

Mangle 6.28 RouterOS


ip firewall mangle
add action=jump chain=prerouting comment="Rule Game Online" jump-target=game
add action=mark-routing chain=game comment=Ayodance dst-port=18901-18909 \
    new-routing-mark=games protocol=tcp
add action=mark-routing chain=game comment="Seal Online" dst-port=1818 \
    new-routing-mark=games protocol=tcp
add action=mark-routing chain=game comment="Point Blank Start" dst-port=49100 \
    new-routing-mark=games protocol=tcp
add action=mark-routing chain=game comment="Point Blank" dst-port=39190 \
    new-routing-mark=games protocol=tcp
add action=mark-routing chain=game dst-port=40000-40010 new-routing-mark=games \
    protocol=udp
add action=mark-routing chain=game comment=Lineage2 dst-port=7777 \
    new-routing-mark=games protocol=tcp
add action=mark-routing chain=game comment=RF-Elven dst-port=27780 \
    new-routing-mark=games protocol=tcp
add action=mark-routing chain=game comment="Perfect World" dst-port=29000 \
    new-routing-mark=games protocol=tcp
add action=mark-routing chain=game comment=Rohan dst-port=22100 \
    new-routing-mark=games protocol=tcp
add action=mark-routing chain=game comment="Zeus RO" dst-port=5121 \
    new-routing-mark=games protocol=tcp
add action=mark-routing chain=game comment=Dotta dst-port=6000-6400 \
    new-routing-mark=games protocol=tcp
add action=mark-routing chain=game dst-port=8228 new-routing-mark=games \
    protocol=tcp
add action=mark-routing chain=game comment="Idol Street" dst-port=2001 \
    new-routing-mark=games protocol=tcp
add action=mark-routing chain=game comment="WOW AMPM" dst-port=8085 \
    new-routing-mark=games protocol=tcp
add action=mark-routing chain=game comment="Drift City" dst-port=11011-11041 \
    new-routing-mark=games protocol=tcp
add action=mark-routing chain=game comment=GetAmped dst-port=13413 \
    new-routing-mark=games protocol=tcp
add action=mark-routing chain=game comment=Yullgang dst-port=19000 \
    new-routing-mark=games protocol=tcp
add action=mark-routing chain=game comment="RAN Online" dst-port=5105 \
    new-routing-mark=games protocol=tcp
add action=mark-routing chain=game comment="Cross Fire" dst-port=10009 \
    new-routing-mark=games protocol=tcp
add action=mark-routing chain=game dst-port=12060-12070 new-routing-mark=games \
    protocol=udp
add action=mark-routing chain=game comment=WarRock dst-port=5340-5352 \
    new-routing-mark=games protocol=tcp
add action=mark-routing chain=game comment=FastBlack dst-port=6000-6001 \
    new-routing-mark=games protocol=tcp
add action=mark-routing chain=game comment="Rose Online" dst-port=29200 \
    new-routing-mark=games protocol=tcp
add action=mark-routing chain=game comment="Return Of Warrior" dst-port=10402 \
    new-routing-mark=games protocol=tcp
add action=mark-routing chain=game comment=CarzyKart2 dst-port=9600 \
    new-routing-mark=games protocol=tcp
add action=mark-routing chain=game comment="Luna Online" dst-port=15002 \
    new-routing-mark=games protocol=tcp
add action=mark-routing chain=game comment="Runes Of Magic" dst-port=\
    16402-16502 new-routing-mark=games protocol=tcp
add action=mark-routing chain=game comment="Fresh RO" dst-port=5126 \
    new-routing-mark=games protocol=tcp
add action=mark-routing chain=game comment="Tantra Online" dst-port=3010 \
    new-routing-mark=games protocol=tcp
add action=mark-routing chain=game comment=HON dst-port=11031 new-routing-mark=\
    games protocol=tcp
add action=mark-routing chain=game dst-port=11100-11125 new-routing-mark=games \
    protocol=udp
add action=mark-routing chain=game dst-port=11440-11460 new-routing-mark=games \
    protocol=udp
add action=mark-routing chain=game comment=Atlantica dst-address=\
    203.89.147.0/24 dst-port=4300 new-routing-mark=games protocol=tcp
add action=mark-routing chain=game comment="ECO Online" dst-port=12011,12110 \
    new-routing-mark=games protocol=tcp
add action=mark-routing chain=game comment="Cabal Online" dst-port=15001,15002 \
    new-routing-mark=games protocol=tcp
add action=mark-routing chain=game comment=X-Shoot dst-port=7341,7451 \
    new-routing-mark=games protocol=tcp
add action=mark-routing chain=game dst-port=7808,30000 new-routing-mark=games \
    protocol=udp
add action=mark-routing chain=game comment="Return Of Warrior" dst-port=10402 \
    new-routing-mark=games protocol=tcp
add action=mark-routing chain=game comment="3 Kingdoms" dst-port=42051-42052 \
    new-routing-mark=games protocol=udp
add action=mark-routing chain=game comment=AVALON dst-port=9376-9377 \
    new-routing-mark=games protocol=tcp
add action=mark-routing chain=game comment="Free Style" dst-port=10001-10011 \
    new-routing-mark=games protocol=tcp
add action=mark-routing chain=game dst-port=40000 new-routing-mark=games \
    protocol=tcp
add action=mark-routing chain=game dst-port=40040-40500 new-routing-mark=games \
    protocol=udp
add action=mark-routing chain=game dst-port=1293,1479 new-routing-mark=games \
    protocol=udp
add action=mark-routing chain=game comment="Grand Chase" dst-port=\
    9300,9400,9700 new-routing-mark=games protocol=tcp
add action=mark-routing chain=game dst-port=9401,9600 new-routing-mark=games \
    protocol=udp
add action=mark-routing chain=game comment="Battle of The Immortals" dst-port=\
    30001,30003 new-routing-mark=games protocol=tcp
add action=mark-routing chain=game comment="Jade Dynasty Indonesia" dst-port=\
    29000 new-routing-mark=games protocol=tcp
add action=mark-routing chain=game comment="CS Online" dst-port=6567,8001 \
    new-routing-mark=games protocol=tcp
add action=mark-routing chain=game dst-port=8001 new-routing-mark=games \
    protocol=udp
add action=mark-routing chain=game comment="Lost Saga" dst-port=14000-14050 \
    new-routing-mark=games protocol=tcp
add action=mark-routing chain=game dst-port=14000-14050 new-routing-mark=games \
    protocol=udp
add action=mark-routing chain=game comment="Kart Rider" dst-port=39311 \
    new-routing-mark=games protocol=tcp
add action=mark-routing chain=game dst-port=39311 new-routing-mark=games \
    protocol=udp
add action=mark-routing chain=game comment="Forsaken WOrld Indonesia" dst-port=\
    29001 new-routing-mark=games protocol=tcp
add action=mark-routing chain=game comment="Anime Fighter Online Indonesia" \
    dst-port=13412 new-routing-mark=games protocol=tcp
add action=mark-routing chain=game comment="Eden Eternal (Aeria Games)" \
    dst-port=5567-5570,6543-6546 new-routing-mark=games protocol=tcp
add action=mark-routing chain=game dst-port=10020-10022 new-routing-mark=games \
    protocol=udp
add action=mark-routing chain=game comment="SD Gundam Capsule Fighter Online" \
    dst-port=5000-5020 new-routing-mark=games protocol=tcp
add action=mark-routing chain=game dst-port=12000-15900 new-routing-mark=games \
    protocol=udp
add action=mark-routing chain=game comment="DragonNest Online Indonesia" \
    dst-port=14300-14440 new-routing-mark=games protocol=tcp
add action=mark-routing chain=game dst-port=15100-15150 new-routing-mark=games \
    protocol=udp
add action=mark-routing chain=game comment="Clash Of Clans (COC) " dst-port=\
    9330-9340 new-routing-mark=games protocol=tcp
add action=mark-routing chain=game comment="Shadow Company (Qeon)" dst-port=\
    10500-10610 new-routing-mark=games protocol=tcp
add action=mark-routing chain=game dst-port=50000-50100 new-routing-mark=games \
    protocol=udp
add action=mark-routing chain=game comment="S4 League Indonesia (Lyto)" \
    dst-port=16666-16668,28000-28013 new-routing-mark=games protocol=tcp
add action=mark-routing chain=game dst-port=54500-56500 new-routing-mark=games \
    protocol=udp
add action=mark-routing chain=game comment="Musuh abadi (Maingames)" dst-port=\
    12310-12320 new-routing-mark=games protocol=tcp
add action=mark-routing chain=game comment=\
    "Eligium Online Indonesia (Gemscool)" dst-port=8086,9090-9099 \
    new-routing-mark=games protocol=tcp
add action=mark-routing chain=game comment="Modoo Marble" dst-port=28901-28920 \
    new-routing-mark=games protocol=tcp
add action=mark-routing chain=game dst-port=27019 new-routing-mark=games \
    protocol=udp
add action=mark-routing chain=game comment="Elsword Indonesia" dst-port=\
    14300-14310 new-routing-mark=games protocol=tcp
add action=mark-routing chain=game dst-port=14101-14105 new-routing-mark=games \
    protocol=udp
add action=mark-routing chain=game comment="Knight Age indonesia" dst-port=\
    15500,5101,5201 new-routing-mark=games protocol=tcp
add action=mark-routing chain=game comment="Chaos Online ID (Indonesia)" \
    dst-port=30000-30050 new-routing-mark=games protocol=tcp
add action=mark-routing chain=game dst-port=20000-20020 new-routing-mark=games \
    protocol=udp
add action=mark-routing chain=game comment="Special Force 2 (SF2)" dst-port=\
    27930-27940 new-routing-mark=games protocol=tcp
add action=mark-routing chain=game dst-port=30000-30030 new-routing-mark=games \
    protocol=udp
add action=mark-routing chain=game comment="Ragnarok Online 2 " dst-port=\
    7201-7208 new-routing-mark=games protocol=tcp
add action=mark-routing chain=game dst-port=17001-17002 new-routing-mark=games \
    protocol=udp
add action=mark-routing chain=game comment="Ayo Oke" dst-port=28001-28010 \
    new-routing-mark=games protocol=tcp
add action=mark-routing chain=game dst-port=26001-26010 new-routing-mark=games \
    protocol=udp
add action=mark-routing chain=game comment="Age Of Wushu" dst-address=\
    49.50.4.62 dst-port=2001,2002,2003 new-routing-mark=games protocol=tcp
add action=mark-routing chain=game comment="Dizzel Indonesia" dst-port=\
    28000-28020,7320-7350 new-routing-mark=games protocol=tcp
add action=mark-routing chain=game dst-port=49330-49350,29000-29010 \
    new-routing-mark=games protocol=udp
add action=mark-routing chain=game comment="FIFA Online 3" dst-port=7770-7790 \
    new-routing-mark=games protocol=tcp
add action=mark-routing chain=game dst-port=16320-16340 new-routing-mark=games \
    protocol=udp
add action=mark-routing chain=game comment="Tales Hero Indonesia " dst-port=\
    9000,9150-9160 new-routing-mark=games protocol=tcp
add action=mark-routing chain=game comment=\
    "Crazy Shooter Port Game Mobile (HaPe)" dst-port=\
    7200,7400,7106,7999,47611,36567 new-routing-mark=games protocol=tcp
add action=mark-routing chain=game dst-port=10087,7200 new-routing-mark=games \
    protocol=udp
add action=mark-routing chain=game comment="LINE Get Rich" dst-port=10500-10515 \
    new-routing-mark=games protocol=tcp
add action=mark-routing chain=game comment="Empire & Allies" dst-port=8890 \
    new-routing-mark=games protocol=tcp
add action=mark-routing chain=game comment="Texas HoldEm Poker" dst-port=9339 \
    new-routing-mark=games protocol=tcp
add action=mark-routing chain=game comment=CastleVille dst-port=8890 \
    new-routing-mark=games protocol=tcp
add action=mark-routing chain=game comment="Perjuangan Semut" dst-port=\
    7200-7210,7450-7460 new-routing-mark=games protocol=tcp
add action=mark-routing chain=game comment="Wild Ones" dst-port=8000 \
    new-routing-mark=games protocol=tcp
add action=mark-routing chain=game comment=Warflare dst-port=64990-65010 \
    new-routing-mark=games protocol=tcp

Sumber : Game Online Port
Penulis : Een Pahlevi
Regards

Kamis, 09 April 2015

Senin, 30 Maret 2015

Wondershare Quiz Creator Full

Bermula ceritanya begini, eh lupa kenalan dulu ya, Ketemu lagi dengan saya Een Pahlefi, kali ini ceritanya saya pengen nyari aplikasi yang tujuan nya memudahkan seorang guru dalam membuat soal pilihan ganda.. Dan browsing sana sini, ketemu deh aplikasi yang namanya Wondershare Quiz Creator, fungsi nya mudah sekali, jangan malas dengan bahasa inggris ya? :)





Download :
Mediafire :  Mediafire
Appbox : Appbox
4shared : 4shared

Senin, 02 Maret 2015

Easy Sysprep 4 Download

Easy Sysprep
 Selamat pagi, sebenarnya malas sih nulis beginian, oleh karna beberapa hari ini masih bawaan galau. Jadi ceritanya begini, waktu itu saya di pusingkan dengan repotnya install ulang laptop yang begitu banyak, bisa bayangkan kalo kita disuruh install satu satu laptop yang spesifikasi nya sama? bakalan bikin galau, sebenarnya masalah ini sudah terpecahkan sih, waktu saya jaman sekolah SMK, saya dulu biasanya pake SPAT ( System Preparation Assisted Tool ).

Nah apalagi tuh SPAT ? pasti tambah bingung. hehehehehhe.. jadi saya jelasin lagi nih, SPAT itu semacam tool yang membuat driver menjadi fresh, artinya apa? ketika SPAT di jalankan dan di pilih di beberapa configurasi tersebut, dia otomatis me refresh driver yang bisa di muat di mesin INTEL atau AMD, setahu saya, kalo orang cabut hardisk motherboard INTEL, trus di pindah ke AMD, bakalan bermasalah (biasanya blue screen), nah... dengan adanya SPAT tadi, solusi tersebut dapat di atasi, kok bisa?? pikir aja sendiri.. hahahaha.... yang penting kita pake aja deh, gk usah banyak bacot ;).

Akhirnya jaman semakin maju dan teknologi terus berkembang, dan akhirnya keluar lagi versi Easy Sysprep, nah ini merupakan lanjutan dari devplover dalam mengembangkan SPAT, yang tujuan nya bisa compatible di beberapa OS, seperti windows 7 dan windows 8 atau paling baru lah.. 

Fitur nya pun semakin bertambah, tampilan nya tambah bagus, cuma kalo salah download, bakalan puyeng sendiri, karna dari forum asal nya itu bahasa cina, hayahh.. :v.. Sedikit info yah, kalo Easy Sysprep ini banyak ditaroh file nya di forum cina, ebuset.. koneksi indonesia biasanya lelet, saya yang pake wifi id dirumah aja lemot :3 , tapi jangan khawatir, saya dah miroring kan kok biar enak di download.. ucapin makasih dulu deh ama saya.. ciyeee.. haha..

Download : 

Kalo masih bingung merubah bahasa nya ke indonesia, liat di bawah ini
ES4_721_Multi_4.0.16.391


Sekian dulu dari saya Een Pahlefi Banjarmasin ;)
Penulis : Een Pahlefi

Sabtu, 28 Februari 2015

Jarak Banjarmasin ke Tanjung Seloka Kotabaru

Ada sebuah kisah menarik hari ini, ketika saya di hadapkan sesuatu yang berkesan dan mungkin saya agak malas  menceritakan ini semua, karna suasana galau mungkin :( . Dia datang begitu cepat, dan pergi dengan cepat pula.. Pergi nya pun lumayan jauh, yaitu di tanjung seloka kotabaru..

Lantas, saya tidak kehilangan akal untuk menulis sesuatu, yang kiranya ini mungkin perlu, saya akhirnya jalan - jalan ke group https://www.facebook.com/groups/kotabarupulaulaut/, dan menanyakan, kira - kira jarak banjarmasin ke kotabaru, trus ke tanjung seloka, berapa yah waktu tempuh nya.

Dari banjarmasin ke kotabaru, sekitar 8 jam, dan nyebrang ke tanjung serdang sekiatr 45 menit, dan dilanjutkan lagi perjalanan sekitar 3-4 jam ke tanjung seloka.. Tunggu aku kesana untuk menemuimu ;)

Tulisan ini saya buat di tanggal 28 Febuari 2015, semoga keadaan jalan disana tambah bagus, dan waktu tempuh yang di perlukan juga tambah cepat :)

F.Fahlefi.



Sumber : https://www.facebook.com/groups/kotabarupulaulaut/891600890883886/?notif_t=group_comment

Minggu, 08 Februari 2015

Membuat Form Login Username dan Password Menggunakan Delphi7 dan Database Access

Form Login
Bertemu lagi dengan saya Een Pahlefi,  Kali ini saya akan menulis sebuah catatan kecil, dimana saya melewati sebuah proses mengerjakan laporan PKL semester7, dimana saya waktu itu membuat sistem informasi yang sebenarnya membuat puyeng kepala saya.

Disini saya menggunakan database microsoft access yang di buat menggunakan versi 2003-2007


1. Persiapkan dulu database dan tabel yang akan digunakan untuk menyimpan dan diakses oleh di delphi7.

Tabel Login













Disini saya membuat 2 buah field username dan password yang akan di tampung di tabel tblogin.

2. Disini saya tidak membahas cara mengkoneksikan/menghubungkan delphi7 ke database access, mungkin saya akan tulis di lain waktu. selanjutnya anda persiapkan form login yang akan diisikan user.











3. Selanjutnya kita isikan coding button Masuk.
Logika nya seperti ini.
A. Jika user tidak mengisikan inputan di username maka akan keluar pesan showmessage
B. Jika user tidak mengisikan inputan di password maka akan keluar pesan showmessage
C. Selanjutnya anda pahami sendiri ya..

Coding/Synax nya seperti berikut
procedure TForm3.BitBtn2Click(Sender: TObject);
  begin
  if Editusername.Text ='' then ShowMessage('Username Kosong')
  else if
  Editpassword.Text ='' then ShowMessage('Passowrd Kosong')

  else with DataModule1 do
  begin
  if (Editusername.Text=ADOTablelogin['username'])and
  (Editpassword.Text=ADOTablelogin['password'])then
  ShowMessage('Login Anda Berhasil') else
  showmessage('Password Anda Salah');
  end;
  end;
end.

Keteranga
with DataModule1 do = disini saya menggunakan datamodule yang digunakan didelphi7, jadi sesuaikan dengan keadaan code anda.

Penulis : Een Pahlefi
Semoga Bermanfaat

Rabu, 04 Februari 2015

DHCP Server Add ARP For Leases

Topologi dan Logika
Ketemu lagi dengan saya Een Pahlefi, well sekedar tulisan kecil aja, buat inget - inget kalo lupa. Ketika kita mengelola sebuah jaringan yang kecil atau sudah besar, kadang client/host suka nakal ganti - ganti ip address, dan itu membuat conflick jaringan. 

Untuk mengatasi itu kita bisa memanfaatkan firewall layer2 yaitu arp-reply only, tapi saya ini bicara tentang router mikrotik lo ya.. :) 

Aktifkan aja di inteface mana yang ingin di aktifkan arp-reply only nya, setelah itu checklist di DHCP Server Add ARP For Leases

Jumat, 09 Januari 2015

Letter Store Surat Masuk dan Surat Keluar Jibas + Lisensi

Tampilan Lisensi Letter Store SMK BINA Banua
Selamat malam, kali ini saya kedatangan barang dari bandung, yaitu letter store nya jibas...

Sedikit pendahuluan dulu, apa sih gunanya letter store ini, secara umum kegunaanya adalah mendata surat masuk dan keluar, dan berbagai fungsi yang sifat nya mengarsipkan sesuatu seperti dokument, dan hasil scan lain nya. 

Berhubung saya juga baru belajar, saya belum mencoba semua fitur yang ada di letter store ini.

Tetapi kalo saya baca - baca di website nya jibas.net, letter store ini juga banyak di gunakan oleh instansi lain untuk digunakan di tempat mereka bekerja, so jadi bukan hanya keperluan akademik aja ;)

Agar jaga - jaga file saya tidak hilang, saya upload ke internet ;) Download Full

Penulis : Een Pahlefi 
Semoga Bermanfaat

Minggu, 04 Januari 2015

Bank Saya

Pembayaran melalui Bank berikut :

Norek : 013 1 001384 5
An. Een Pahlefi

Norek BRI Rencana : 0623 01 000074-55-6
An. Een Pahlefi

Norek : 0623 01 015938 50 9
An. Een Pahlefi

Norek : 0623 01 015938 50 9
An. Een Pahlefi

Norek : 0623 01 015938 50 9
An. Een Pahlefi

Norek : 0623 01 015938 50 9
An. Een Pahlefi

Monitoring

Status Panel Admin
Jam Sekarang
Tanggal
Salam Sapa :
Status Admin :
User : User Online

Popular Posts