Kamis, 03 September 2009

MANIPULASI COREL DRAW





[+/-] Selengkapnya...

Rabu, 02 September 2009

Tugas Corel Draw

[+/-] Selengkapnya...

Kamis, 23 Juli 2009

TUGAS TIK PEMROGRAMAN


Pengertian

Sistem informasi adalah sekumpulan perangkat keras (hardware), perangkat lunak (software), prosedur dan atau aturan yang diorganisasikan secara integral untuk mengolah data menjadi informasi yang bermanfaat guna memecah masalah dan pengambilan keputusan.

Secara skema dapat dijelaskan seperti gambar di bawah ini



Komponen sistem informasi


  • Hardware / perangkat keras

  • Software / perangkat lunak / program

  • Prosedur

  • Orang

  • Database / Basis data

  • Jaringan Komputer dan komunikasi data


Siklus hidup pengembangan sistem informasi

Siklus hidup pengembangan sistem informasi atau Software Development Life Cycle (SDLC) adalah suatu proses pembuatan sofware yang meliputi Scoping - Requirement collection & analysis - Prototyping - Designing - Coding - Testing - Implementing - Maintaining.

Prinsip yang digunakan pada SDLC adalah model air terjun (waterfall) seperti gambar di bawah ini:



Arsitektur

Ada tiga macam arsitektur, yaitu:

  • Arsitektur tersentralisasi

  • Arsitektur terdistribusi

  • Arsitektur client/ server



Arsitektur tersentralisasi

Arsitektur ini sudah dikenal semenjak tahun 1960-an dengan mainframe sebagai faktor utama. Mainframe adalah komputer yang berukuran relatif besar yang ditujukan untuk menangani data yang berukuran besar, dengan ribuan terminal untuk mengakses data dengan tanggapan yang sangat cepat dan melibatkan jutaan transaksi.

Arsitektur terdistribusi

Arsitektur desentralisasi merupakan konsep dari pemrosesan data tersebar (atau terdistribusi). Sistem pemrosesan data terdistribusi (atau biasa disebut sebagai komputasi tersebar) sebagai sistem yang terdiri atas sejumlah komputer yang tersebar pada berbagai lokasi yang dihubungkan dengan sarana telekomunikasi dengan masing-masing komputer mampu melakukan pemrosesan yang serupa secara mandiri, tetapi bisa saling berinteraksi dalam pertukaran data.

Arsitektur client/ server

Pada arsitektur ini ada sebagian yang disebut client dan ada yang disebut server. Server adalah sistem atau proses yang menyediakan data atau layanan yang diminta oleh client. Secara fisik sebuah server dapat berupa komputer (mainframe, mini-komputer,workstation,ataupun PC) atau piranti lain (misalnya printer). Client mempunyai kemampuan untuk melakukan proses sendiri. Ketika sebuah client meminta suatu data ke server, server akan segera menanggapinya dengan memberikan data yang diminta ke client bersangkutan. Setelah diterima client segera melakukan pemrosesan




[+/-] Selengkapnya...

Rabu, 13 Mei 2009

Script Calculator



Gambar di atas mempunyai script di bawah ini:
<html>

<head>
<title>JS - Calculator</title>

<script language="Javascript">
<!--
/* Variablen definieren */
var plussign = ' + ';
var minussign = ' - ';
var multiplysign = ' * ';
var dividesign = ' / ';
var decimalsign = ' . ';
var negativesign = ' -';
var leftbracket = ' (';
var rightbracket = ') ';
var rad = 3.141592654 / 180;
var base_10 = Math.LN10;
var base_2 = Math.LN10;

function calculate(arg) {
arg.expr.value = eval(arg.expr.value)
}

function enter(arg, string) {
arg.expr.value += string
}

function clear_display(arg) {
arg.expr.value = ' '
}

function calc_sqrt(form) {
form.expr.value = (Math.sqrt(form.expr.value))
}

function calc_sqr(form) {
form.expr.value = ((form.expr.value * 1) * (form.expr.value * 1))
}

function sin_form(form) {
form.expr.value = (Math.sin (form.expr.value * rad))
}

function cos_form(form) {
form.expr.value = (Math.cos (form.expr.value * rad))
}

function tan_form(form) {
form.expr.value = (Math.tan(form.expr.value * rad))
}

function inverse(form) {
form.expr.value = ( 1 / (form.expr.value))
}

function base10_log(form) {
form.expr.value = (Math.log(form.expr.value) / base_10)
}

function base2_log(form) {
form.expr.value = (Math.log(form.expr.value) / base_2)
}
//-->
</script>

</head>

<body>
<p align="center"><big><big>JavaScript - Calculator SMANEKA</big></big></p>
<form>

<table align="center" border="0" width="100" bgcolor="#CCCCCC" >
<tr>
<td width="100%" colspan="5"><input type="text" name="expr" size="35"
action="calculate(this.form)"></td>
</tr>
<tr>
<td width="20%"><input type="button" value=" sin " Onclick="sin_form(this.form)"></td>
<td width="20%"><input type="button" value=" cos " OnClick="cos_form(this.form)"></td>
<td width="20%"><input type="button" value=" tan " Onclick="tan_form(this.form)"></td>
<td width="20%"><input type="button" value="log10e" onClick="base10_log(this.form)"></td>
<td width="20%"><input type="button" value=" log2e " OnClick="base2_log(this.form)"></td>
</tr>
<tr>
<td width="20%"><input type="button" value=" Sqrt " Onclick="calc_sqrt(this.form)"></td>
<td width="20%"><input type="button" value=" Sqr " OnClick="calc_sqr(this.form)"></td>
<td width="20%"><input type="button" value=" ( " OnClick="enter(this.form,
leftbracket)"></td>
<td width="20%"><input type="button" value=" ) " OnClick="enter(this.form,
rightbracket)"></td>
<td width="20%"><input type="button" value=" 1 / X " OnClick="inverse(this.form)"></td>
</tr>
<tr>
<td width="20%"><input type="button" value=" 7 " onClick="enter(this.form, 7)"></td>
<td width="20%"><input type="button" value=" 8 " onClick="enter(this.form, 8)"></td>
<td width="20%"><input type="button" value=" 9 " onClick="enter(this.form, 9)"></td>
<td width="40%" colspan="2"><input type="button" value=" C " onClick="clear_display(this.form)"></td>
</tr>
<tr>
<td width="20%"><input type="button" value=" 4 " onClick="enter(this.form, 4)"></td>
<td width="20%"><input type="button" value=" 5 " onClick="enter(this.form, 5)"></td>
<td width="20%"><input type="button" value=" 6 " onClick="enter(this.form, 6)"></td>
<td width="20%"><input type="button" value=" * " onClick="enter(this.form,
multiplysign)"> </td>
<td width="20%"> <input type="button" value=" / " onClick="enter(this.form,
dividesign)"></td>
</tr>
<tr>
<td width="20%"><input type="button" value=" 1 " onclick="enter(this.form, 1)"></td>
<td width="20%"><input type="button" value=" 2 " onclick="enter(this.form, 2)"></td>
<td width="20%"><input type="button" value=" 3 " onclick="enter(this.form, 3)"></td>
<td width="20%"><input type="button" value=" + " onClick="enter(this.form,
plussign)"> </td>
<td width="20%"> <input type="button" value=" - " onClick="enter(this.form,
minussign)">
</td>
</tr>
<tr>
<td width="20%"><input type="button" value=" 0 " onClick="enter(this.form, 0)"></td>
<td width="20%"><input type="button" value=" . " onClick="enter(this.form,
decimalsign)"></td>
<td width="20%"><input type="button" value=" neg " onClick="enter(this.form,
negativesign)"></td>
<td width="40%" colspan="2"><input type="button" value=" = " onClick="calculate(this.form)"></td>
</tr>
</table>

</form>
</body>

</html>

[+/-] Selengkapnya...

Sabtu, 07 Maret 2009

BUKU TAMU

BUKU TAMU

<html>
<head>
<title>Halaman Buku tamu</title>
</head>

<body>
Buku tamu - <a href="lihat.php">lihat isi buku tamu</a><br />
<br />
<hr>
Isilah buku tamu kami<br />
<br />
<br />
<form id="form1? name="form1? method="post" action="isi.php">
nama
<input type="text" name="nama" id="nama" />
<br />
<br />
pesan
<textarea name="pesan" id="pesan" cols="45? rows="5?></textarea>
<br />
<br />
<hr>
<input type="submit" name="Submit" id="Submit" value="Submit" />
</form>
</body>
</html>



















ISI PHP





<html>
<head>
<title>Input Data dari Form ke MySQL</title>
</head>

<body>
<?php
$nama = $_POST['nama'];
$pesan = $_POST['pesan'];
$conn = mysql_connect("localhost","root","");
if (!$conn) {
echo "Could not connect to db";
exit(1);
}
$db = mysql_select_db("latihan",$conn);

$sqlText = "insert into bukutamu(nama, pesan,tanggal)
values('$nama','$pesan',NOW(''))";
mysql_query($sqlText);


?>
Buku tamu - <a href=lihat.php>lihat isi buku tamu</a><br />
</body>
</html>













LIAT PHP

<html>
<head>
<title>Daftar Data yang ada di MySQL</title>
</head>

<body bgcolor="#000000">
<a href=bukutamu.php>Isi Buku Tamu</a><br />
<font color="#FFFFFF" size="3">Isi buku tamu<br />
<br />
<?php
$conn = mysql_connect("localhost","root","");
if (!$conn) {
echo "Could not connect to db";
exit(1);
}
$db = mysql_select_db("latihan",$conn);

$sqlText = "select * from bukutamu";
$result = mysql_query($sqlText);
while($row=mysql_fetch_object($result))
{
?>
<strong>Nama</strong>: <?php echo $row->nama;?><br />
<strong>Pesan</strong>: <?php echo $row->pesan;?><br />
<br />
<?php } ?>
<marquee>
---
</marquee>
</font> <font color="#FFFFFF">
<marquee>
</marquee>
</font>
<marquee>
<font color="#FF0000" size="3">AYO KAMU BISA BIKIN PROGRAM PAKE PHP
running text</font>----
</marquee>
</body>
</html>



[+/-] Selengkapnya...

Kamis, 05 Maret 2009

Make a Php

Ini adalah contoh pembuatan program Php :

profil sekolah






isi entry siswa







liat entry siswa


isi buku tamu





liAt buku tamu

[+/-] Selengkapnya...

Rabu, 18 Februari 2009

TUGAS TIK PEMROGRAMAN

Assalamu'alaikum Wr. Wb.
Atas berkat dan rahmat dari Allah SWT , dengan ini saya tuliskan

JAWABAN DARI SOAL WEB PEMROGRAMAN (P.WELLY)

  1. a
  2. b
  3. b
  4. c
  5. a
  6. c
  7. a
  8. d
  9. d
  10. c
  11. a
  12. c
  13. c
  14. d
  15. c

Demikianlah posting untuk kali ini.....

Wassalamualaikum wr. wb.

[+/-] Selengkapnya...

my picture

my picture

G3neRal TIPs to be SMart


Here are a few general tips to keep in mind when you start student teaching.

Be flexible. Even the best plans for lessons, projects and homework sometimes just don’t go as you expected. Try to keep things flexible so you won’t be completely derailed when students don’t respond the way you hope.

Prepare for the unexpected. Along those same lines, when the unexpected does happen, make sure you’re ready for it. Keep a few backup lessons on hand so you won’t be left out in the cold if you need something to keep your students busy.

Learn from other teachers. You’re student teaching in order to get an idea of how to teach, so what better way to supplement your experience than to ask questions and learn from those who are already in the field?

Talk to parents. Learning to work with parents can be difficult, but it’s a necessary component of being a teacher. Make sure to keep parents informed of their child’s progress.
Share your personal skills.


Each person brings a different set of skills to the table when they start student teaching. For instance, if you’re a great artist, try incorporating art into your student’s lessons.

Watch what you say. Those just entering student teaching can have a hard time remembering that what they say and do must be closely monitored, both in front of students and other faculty members. You never know what could come back to bite you, so keep your comments to yourself when at school or in public.

Learn to prioritize. This can be a good rule for life in general, but it’s especially important when you’re teaching students. Figure out what parts of the lessons are most important and concentrate your energy on those.

Find out how your school is run. You’ll make things a lot easier on yourself by figuring out the little day to day operations of the school you’ll be working for. Speak with administrators and cooperating teachers to get the information you’ll need to keep things running smoothly.

Plan, plan, plan. When you’re starting out in teaching, you can’t ever plan too much. While it may seem tedious to spend hours planning out every detail of your classes, it can be a good way to keep you feeling confident until you really get the hang of teaching.

Create simple rules. The best rules are those that are easy for your students to remember. Keep things simple and lay out some simple guidelines for students to follow to keep them well-behaved and attentive during class.
Focus on what you do know. Student teachers and those just starting out in the field will sometimes feel like what they don’t know far outweighs what they do know. However true this may be, try focusing on what you do know instead. The rest will come in time.

Don’t try to do it all at once. Many student teachers go into their classrooms with a million ideas for lessons. However, you’ll give yourself a heart attack running around trying to do all the things you want to do at one time, so focus on fully exploring a few of your ideas at a time.

Ask questions. Don’t know something? Just ask. Those around you are there to help, so take advantage of their experience and knowledge as you work through your student teaching.

Learn about the experience. While reading doesn’t compare to real life experience, it can help prepare you and give an idea of what to expect. Read articles and books about student teaching to help prepare you for the months to come.

Enjoy it! At the end of the day, student teaching should be a fun and rewarding experience. Make sure you’re not so wrapped up in doing well that you aren’t taking the time to truly enjoy and appreciate it.