recently some of my friends computer OS has infected by the Trojan Family , its ussually make file name Copy of Shortcut (1).lnk , Copy of Shortcut (2).lnk Copy of Shortcut (3).lnk Copy of Shortcut (4).lnk, they donn't know how to prevent its happen so its always infected many times destroying the Operating System, the use of Flash Disk is the largest cause of its happen so may be you can try my tips here
- always check the Flash Disk when its put onn the Computers, are they contains the virus or not usually straight shown , if does , fastly delete the "link" file.
- check the Flash disk wheter its has folder named RECYCLER , you must delete the folder all of its content, that is the source of virus ,
keep aware of another virus , this step may be can you try to prevent that infecting
learning about script task, and etc about software development OS, javascript, soon will be java languange
Tuesday, March 13, 2012
Friday, March 2, 2012
the do .....while loop task on java script chapter 8
this is the one of the variant of while loop , the principal of the loop is by do the command first and then lookfor the conditional onthe bottom of its inside of (.....) sign after "while"
or let me show you the example :
as simple the composition is like this
do
{
code tobe executed
}
while(var<=endvalue ) ''the conditional statement you decide as the parameter
if you stiil confuse lets see the real example
do
{
i++;
document.write( "the value are increasing from " + i);
}
while(i<=10)
can you tell me the result?
or let me show you the example :
as simple the composition is like this
do
{
code tobe executed
}
while(var<=endvalue ) ''the conditional statement you decide as the parameter
if you stiil confuse lets see the real example
do
{
i++;
document.write( "the value are increasing from " + i);
}
while(i<=10)
can you tell me the result?
Thursday, March 1, 2012
Looping Control on java script chapter 7
<html>
<body>
<script type="text/javascript">
for(i=0;i<=6;i++)
{
document.write("the number is " + i)
document.write("</br>")
}
</script>
</body>
</html>
the result shown
the number is 0
the number is 1
the number is 2
the number is 3
the number is 4
the number is 5
the number is 6
as you see above there is a looping to call the variable "i"
it has increasing value that generate by condition "for"
you can try that.................
javascript easy right?......
<body>
<script type="text/javascript">
for(i=0;i<=6;i++)
{
document.write("the number is " + i)
document.write("</br>")
}
</script>
</body>
</html>
the result shown
the number is 0
the number is 1
the number is 2
the number is 3
the number is 4
the number is 5
the number is 6
as you see above there is a looping to call the variable "i"
it has increasing value that generate by condition "for"
you can try that.................
javascript easy right?......
Monday, February 27, 2012
Geting Date Variable chapter 6
you may need this Date Variable with its function to mention what day this is.......... here are the function
<html>
<body>
<script type="text/javascript">
var d=new Date( );
document.write (d);
</script>
</body>
</html>
the result will be
Sat Feb 12 25 2012 23:01:09 GMT-0700 (GMT Standard Time)
surely its easy right try that
<html>
<body>
<script type="text/javascript">
var d=new Date( );
document.write (d);
</script>
</body>
</html>
the result will be
Sat Feb 12 25 2012 23:01:09 GMT-0700 (GMT Standard Time)
surely its easy right try that
Sunday, February 26, 2012
Creating random value on javascript
with this function you can try a random value function of a variable
command use : Math.random ( );
here are the example :
on the above you can see that random value is created by function Math.random
the result may vary from that codes you can try it
its usually use to validating the form login or some other that need to validate the data by fiting the number defined by the funtion and the input text from the user , how it can? learn on next our post may be you want........
command use : Math.random ( );
here are the example :
<html>
<body>
<script type="text/javascript">
var d = Math.random();
if(r<50)
{
document.write("you will see the value of random r is " + r);
}
else
{
document.write("you will see second chance the value of r is " + r)
}
</script>
</body>
</html>
on the above you can see that random value is created by function Math.random
the result may vary from that codes you can try it
its usually use to validating the form login or some other that need to validate the data by fiting the number defined by the funtion and the input text from the user , how it can? learn on next our post may be you want........
Saturday, February 25, 2012
The use of java script (almost forget to tell you)
java script commonly use on website building , to make its better looks and many more today
- give HTML desingner a programing tool it surely do with a very simple syntax
- give dynamic view for the content of their site
ex : document.write("<h2>" + name + "</h2>" which the word name is a variable that dinamycally follow
the Instruction
- can do some even after finish loading page or on load a page
- validating the data commonly is the main purpose, many site take the java script
- create cookies to store and retrieve the visitors on cumputers
many more you can discover on this java script so keep learn and stay sharp........
- give HTML desingner a programing tool it surely do with a very simple syntax
- give dynamic view for the content of their site
ex : document.write("<h2>" + name + "</h2>" which the word name is a variable that dinamycally follow
the Instruction
- can do some even after finish loading page or on load a page
- validating the data commonly is the main purpose, many site take the java script
- create cookies to store and retrieve the visitors on cumputers
many more you can discover on this java script so keep learn and stay sharp........
Friday, February 24, 2012
Java Script Operator chapter 4
One the most important on all programing languanges is "Operator"
Operator is the common fuction that use to operate the logic programing
here are some of them
here are the example of using Operators
the result will shown
the other example
the result shown
3
try using another operator it would be fun to discover it.......
you can try this on post the result
x=5;
y=2
z=0
z=x/y;
y=x/z
x=y/z
the result is?
Operator is the common fuction that use to operate the logic programing
here are some of them
Operator | Description |
- | Subtraction (minus) |
+ | Addition |
* | Multiplication |
/ | Division(div) |
% | Modulus(div reminder) |
++ | Increment |
-- | Decrement |
here are the example of using Operators
var x;
var y;
x=2;
y=0;
y=x+y
document.write(y);
the result will shown
2
the other example
var x = 2;
x++;
document.write(x);the result shown
3
try using another operator it would be fun to discover it.......
you can try this on post the result
x=5;
y=2
z=0
z=x/y;
y=x/z
x=y/z
the result is?
Wednesday, February 22, 2012
using Variable chapter 3
creating variable is depend on how many things that we want to give a value here are the ex ample
......................................
var x ;
x=1;
...................
thats mean that you've give the value of x variable , it is 1
anothe example :
var rt;
rt ="vanya"
this mean that rt is given value "vanya"
......................................
var x ;
x=1;
...................
thats mean that you've give the value of x variable , it is 1
anothe example :
var rt;
rt ="vanya"
this mean that rt is given value "vanya"
Tuesday, February 21, 2012
Declaring(creating) Variable chapter 2
on java to creating vaiables use the command "var" thats mean that you creating a variable exactly
example :
................................
creating a variable its mean that you give a value to the object that you've been made
example :
................................
var budi
var tono
var x
..........................creating a variable its mean that you give a value to the object that you've been made
Friday, February 17, 2012
Kelompok 2
Nama anggota:
1. Eliya Dewi S (DTI200912)
2. Siti Maryati (DTI200913)
3. Oktafiani Nur F (SIR200925)
4. Esti Yuliana (SIR200938)
Tugas : Jaringan Komputer
Ruangan yang ada pada denah sebanyak 21 ruangan. NetID yang digunakan antar ruangan berbeda. Subnet yang digunakan sebanyak 4 subnet, dimana 3 subnet masing-masing berisi 5 ruangan dan 1 subnet berisi 6 ruangan. Untuk menghubungkan jaringan antar ruangan, digunakan 1 server, 4 router, 4 Access Point, 17 switch dan jumlah Client sebanyak 178 yang diwakili sebanyak 21 PC untuk mewakili tiap ruangan
Dalam pembangunan Infrastruktur jaringan ini .
- Menganalisis Struktur penataan ruang dalam gedung (pembagian ruangan dan jumlah computer yang ada didalamnya ).
- Merancang topologi yang akan digunakan sesuai dengan struktur ruang dalam gedung. Topology yang digunakan adalah topologi star
- Menyiapkan Hardware yang dibutuhkan.
- Menentukan alamat IP yang sudah ditentukan sesuai dengan table dibawah.
Dibawah ini adalah rincian ruangan yang ada di denah beserta jumlah Client pada setiap ruang dan pemberian IP Adress.
NO | RUANG | PC | CLIENT | IP ADDRESS | Keterangan |
1. | Gudang | 10 | 1 | 192.168.22.2 | SWITCH |
2. | Wakil Panitera | 12 | 6 | 192.168.3.2-7 | |
3. | Sub. Bagian Keuangan | 9 | 4 | 192.168.4.2-5 | |
4. | Sub. Bagian Kepegawaian | 8 | 8 | 192.168.5.2-9 | |
5. | Panitera Muda Hukum | 3 | 5 | 192.168.6.2-6 | |
6. | Panitera pengganti | 1 | 5 | 192.168.7.2-6 | |
7. | Panitera pengganti | 2 | 5 | 192.168.8.2-6 | |
8. | Panitera Muda Perkara | 0 | 10 | 192.168.9.2-11 | |
9. | Ruang pertemuan | 4 | 30 | 192.168.10.2-30 | Access Point |
10. | Sub. Bagian Umum | 13 | 10 | 192.168.11.2-11 | SWITCH |
11. | Wakil Sekretaris | 11 | 5 | 192.168.12.2-6 | |
12. | Ruang Hakim | 17 | 10 | 192.168.13.2-11 | |
13. | Ruang siding utama | 20 | 14 | 192.168.14.2-15 | Access Point |
14. | Ruang Panitera Sekretaris | 6 | 6 | 192.168.15.2-7 | Switch |
15. | Ruang Pemeriksaan Persiapan | 7 | 4 | 192.168.16.2-5 | |
16. | Ruang Rapat | 15 | 25 | 192.168.17.2-26 | Access Point |
17. | Ruang ketuaPTUN | 5 | 4 | 192.168.18.2-5 | switch |
18. | Piket | 19 | 1 | 192.168.19.2 | |
19. | Ruan Wakil Ketua | 18 | 3 | 192.168.20.2-4 | |
20. | Ruang Hakim | 16 | 10 | 192.168.21.2-11 | |
21. | Perpus. | 14 | 12 | 192.168.2.2-13 | Access Point |
Sunday, February 12, 2012
Put Java Script on HTML page chapter 1
here are the example to put java script on HTML page
the result will shown
from the example above you can make some trial to the code
you can try few words for your training
<html>
<body>
<script type="text/javascript">
document.write("Hello World");
</script>
</body>
</html>
the result will shown
Hello World
from the example above you can make some trial to the code
you can try few words for your training
- andreas
- inisesta
- learning
Subscribe to:
Posts (Atom)