title | author | date | ||
---|---|---|---|---|
Nama Rangkaian |
|
26 Sep 2017 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<style xmlns="http://purl.org/net/xbiblio/csl" class="in-text" version="1.0" demote-non-dropping-particle="sort-only" default-locale="id-ID"> | |
<info> | |
<title>Institut Pertanian Bogor: Pedoman Penulisan Karya Ilmiah Edisi ke-4 (Indonesian)</title> | |
<id>http://www.zotero.org/styles/institut-pertanian-bogor</id> | |
<link href="http://www.zotero.org/styles/institut-pertanian-bogor" rel="self"/> | |
<link href="http://www.zotero.org/styles/apa" rel="template"/> | |
<link href="http://ppki.staff.ipb.ac.id/unduhan/" rel="documentation"/> | |
<link href="https://drive.google.com/file/d/0B0YEuQotqd_BQVpkR0lHNHctSHM/view" rel="documentation"/> | |
<author> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Shell | |
===== | |
Shell adalah program yang membuat proses child untuk menjalankan string perintah yang diberikan. | |
Shell berupa infinite looping yang berisi siklus fork--exec--wait. | |
Lengkapilah kode berikut ini untuk membuat program shell sederhana! | |
Contoh masukan dan keluaran | |
--------------------------- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Xubuntu 16.04 Lab Install | |
# <https://gist.github.com/auriza/e45690fc728a3e98b7d936c12bd2906a> | |
# INSTALL BASE SYSTEM (MANUAL ONE BY ONE) -------------------------------------- | |
## Fresh install | |
# - Welcome : [Install Xubuntu] | |
# - Prepare : uncheck all options, [Continue] | |
# - Install : (*) Erase disk and install Xubuntu, [Install Now], [Continue] |
% Algoritme ... Paralel (dengan Skema Partisi ...)
% Nama, Anggota, Kelompok
% 2015
# Pendahuluan
- sekilas tentang algoritme
- manfaat algoritme
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <pthread.h> | |
#define T 2 | |
#define N 4 | |
int A[N][N] = {{1,0,1,0},{0,1,1,0},{1,0,1,0},{0,1,1,0}}; | |
int B[N][N] = {{0,2,2,0},{2,0,2,0},{0,2,2,0},{2,0,2,0}}; | |
int C[N][N] = {{0}}; |
NewerOlder