Tuesday, 10 December 2013

SEO (Search Engine Optimation)

Search Engine Optimization adalah serangkaian proses yang dilakukan secara sistematis yang bertujuan untuk meningkatkan volume dan kualitas trafik kunjungan melalui mesin pencari menuju situs web tertentu dengan memanfaatkan mekanisme kerja atau algoritma mesin pencari tersebut.

Sejalan dengan makin berkembangnya pemanfaatan jaringan internet sebagai media bisnis, kebutuhan atas SEO juga semakin meningkat.

Berada pada posisi teratas hasil pencarian akan meningkatkan peluang sebuah perusahaan pemasaran berbasis web untuk mendapatkan pelanggan baru.

Versi awal algoritma pencarian didasarkan sepenuhnya pada informasi yang disediakan webmaster melalui meta tag pada kode html situs web mereka. Meta tag ini menyediakan informasi tentang konten yang terkandung pada suatu halaman web dengan serangkaian kata kunci (keyword).

Sebagian webmaster (pengelola website) melakukan manipulasi dengan cara menuliskan katakunci yang tidak sesuai dengan konten situs yang sesungguhnya, sehingga mesin pencari salah menempatkan dan memeringkat situs tersebut. Hal ini menyebabkan hasil pencarian menjadi tidak akurat dan menimbulkan kerugian baik bagi mesin pencari maupun bagi pengguna internet yang mengharapkan informasi yang relevan dan berkualitas.

Pagerank adalah algoritma pengurutan website yang dibuat oleh  Larry Page dan Sergey Bin, dua mahasiswa doktoral ilmu komputer Universitas Stanford.

Pagerank secara umum bisa dikatakan bahwa halaman web yang memperoleh peringkat tinggi adalah halaman web yang banyak di-link oleh halaman web lain.

Nilai pagerank juga akan semakin tinggi apabila halaman web yang banyak di-link oleh website yang berkelas lainnya, contoh: Yahoo, Google, dan sebagainya.


Monday, 9 December 2013

Silabus Matematika kelas 1, 2 dan 3

1. Logika matematika

2. Bentuk akar
3. Sistem persamaan
4. Statistika
5. Teori Peluang
6. Gradien dan Garis lurus
7. Program linear
8. Persamaan Kuadrat
9. Fungsi Kuadrat
10. Matriks
11. Fungsi Komposisi dan Fungsi Invers
12. Trigonometri
13. Pertidaksamaan
14. Eksponen
15. Logaritma
16. Barisan dan deret
17. Turunan Fungsi
18. Limit Fungsi
19. Transformasi Geometri
20. Lingkaran
21. Suku Banyak
22. Vektor
23. Integral
24. Bangun Ruang

1. Logika matematika
Math logic is subfield of mathematics exploring the applications of formal logic to mathematics.

2.

8. Persamaan Kuadrat
Persamaan kuadrat adalah suatu persamaan polinomial berorde dua. Bentuk umum dari persamaan kuadrat adalah:
y = ax^2 + bx + c \,\!
dengan




a \ne 0 \,\!
Bentuk Huruf-huruf a, b, dan c disebut sebagai koefisien: koefisien kuadrat a adalah koefisien dari x^2, koefisien linear b adalah koefisien dari x, dan c adalah koefisien konstan atau disebut juga suku bebas.


Solving
Ada dua cara untuk menyelesaikan masalah persamaan kuadrat:
1. 

Rebol LAB Zero to perfect #1

Try #1:

rebol[]

visitor: [2 4 6 4 2 4 6]
view: ask ["when?"]
visitor.int: to-integer view
print visitor/visitor.int
halt


Error:
when?1
** Script Error: Invalid path value: visitor.int
** Near: print visitor/visitor.int
halt



Try #2:
rebol[]

visitor: [1 2 3 2 1 2 3]
view: ask ["when?"]
visitor.int: to-integer view
print visitor/:visitor.int
halt

Error #1 (still have error when view = words):
when?as
** Script Error: Invalid argument: as
** Where: to-integer
** Near: to integer! :value

Pefect!
rebol[]

visitor: [2 4 6 4 2 4 6]
view: ask ["when?"]
either visitor.int: attempt [to-integer view] [print visitor/:visitor.int][print "Gak terima huruf bro!"]
halt

Software engineering

Software engineering adalah bagaimana menggunakan komponen-komponen software untuk membuat software.

1. Matriks/list
pengunjung = [1 2 3 2 1 2 3]
artinya:
pengunjung hari 1 = 2
pengunjung hari 2 = 2
pengunjung hari 3 = 3
pengunjung hari 4 = 2
pengunjung hari 5 = 1
dan seterusnya

artinya variabel pengunjung menggunakan hari sebagai index nya.

2. Conditional


3. Looping



4. Regresion linear sederhana


5. GUI

Wednesday, 4 December 2013

System

System

System is a set of interacting component or a set of interdependent components forming an integrated whole.

Example of real-life system:

Following are considered as example of real-life system that near you:

1. Traffic system
2. Telecommunication system
3. Information system

Common characteristic between those systems:
  • A system has a structure, it contain elements/parts/components that are directly or indirectly related to each other;
  • A system has a behavior, it contain process that transform inputs into outputs (material, energy or data);
  • A system has interconnectivity

Examples of the elements of Information systems:


Following are considered as the elements of a system in terms of Information systems: –
  1. Inputs and outputs
  2. Processor
  3. Control
  4. Environment/surroundings
  5. Feedback
  6. Boundaries and interface
  7. Relationship

Tuesday, 3 December 2013

Electrical Engineering

1. Power Engineering
Power engineering deals with the generation, transmission, and distribution of electricity as well as the design of a range of related devices

Devices: transformer, electric generator, electric motors, high voltage engineering, and power electronics.

2. Control Engineering
Control engineering focuses on the modelling of a diverse range of dynamic systems and the design of controllers that will cause these systems to behave in the desired manner.

Device: electrical circuit, digital signal processors, microcontroller, and PLC (Programmable Logic Controllers)

3. Electronics Engineering
Electronics Engineering involves the design and testing of electronic circuits that use property of components such as resistors, capacitors, inductors, diodes, and transistors to achieve particular functionality.

Example of electronic circuit: tuned circuit, circuit that allow a user to tune to a radio station.

4. Microelectronics Engineering
Microelectronics engineering deals with the design and microfabrication of very small electronic components and circuit for use in an integrated circuit (IC) or sometimes for use on their own as a general electronic component.

5. Signal processing
Signal process deals with the analysis and manipulation of signals (digital and analog signal).

6. Telecommunication
Focuses on the transmission of information across a channel such as coax cable, optical fiber or free space.

7. Instrumentation
Instrumentation engineering deals with the design of devices to measure physical quantities.
That physical quantities are: pressure, flow, and temperature. The design of such instrumentation often requires a good understanding of physics that often extends beyond electromagnetic theory.

8. Computer engineering 
Deals with the design of computers and computer systems (systems that contain more than one computers).

9. Mechantronics
Mechantronics is an engineering dicipline which deals with the convergence of electrical and mechanics system.

10. Biomedical Engineering
Biomedical Engineering concerned with the design of medical equipment. This includes fixed equipments such as ventilators, MRI scanners and electrocardiograph monitors, as well as mobile equipment (cochlear implants, artificial pacemakers and artificial hearts).


Server types

Server types:
1. Proxy server
to filter request, improve performance, and share connections

2. Mail server
move and store mail over corporate networks.

3. Server platform
engine that drives servers.

4. Web server
 serves static content to web browser by loading a file from a disk and serving it across the network to a user's web browser.

5. Application server

6. Real-time Communication server
Formerly known as chat server or IRC server.

7. FTP server
server that makes it possible to move one or more files securely between computer while providing file security and organization as well as transfer protocol.

8. Collaboration server

9. List server

10. Telnet server
enables user to log on to a host computer and perform tasks as if they are working on the remote computer itself.

11. Open source server

12. Virtual server
From hypervisor (Windows)