Ikuti aku terus ya, disini :

Rabu, 02 Juli 2014

Weaknesses of Indonesian Economic

Chamber of Indonesia Commerce and Industry (Kadin) declared Indonesian economy that is actually very promising for both domestic and foreign investors. However, there are still weaknesses seeing by Kadin of the economy that need to be addressed. Vice Chairman of Kadin Indonesia, Novian Anindya Bakrie said, promising Indonesian economy is evidenced by incoming investment, private consumption, and vibrant business world.

“But there are still some weaknesses that Indonesia’s economic structure needs to be addressed now,” said Anindya at Menara Kadin Jakarta, Wednesday (06/03/2013).

Anindya see Indonesia’s economic weakness is in the trade deficit. Currently due to larger imports than exports then it makes more Indonesian trade balance to be deficit. Moreover, the largest import of oil and gas.

On the other hand, Anindya also highlights subsidy of oil (BBM) to the people who actually are not even on target. Current budget fuel subsidy enjoyed by the rich instead.
“As the impact, the deficit and the high pressure gas imports that led to the weakening of the rupiah,” he added.

Again, the actual budget for infrastructure even neglected. He rated in the last few months that there is no improvement of government policy so that a problem cannot be resolved. Though foreign investors intending to invest in Indonesia as it will look up the bureaucratic infrastructure. If not good, then foreign investors will pull out of Indonesia.

Source : http://www.caramudahbelajarbahasainggris.net/

Help Me For Program Of RFID And LCD

do you know, this is where my headache program to program a tool that I made on the Arduino. I include an additional device for RFID my lcd. and I hung up on this program. if any of you can fix it?

#include
#include
#include

#define SS_PIN 10
#define RST_PIN 9
MFRC522 mfrc522(SS_PIN, RST_PIN); // Create MFRC522 instance.
LiquidCrystal lcd(7, 6, 5, 4, 3, 2); // initialize the library with the numbers of the interface pins


void setup() {
Serial.begin(9600); // Initialize serial communications with the PC
SPI.begin(); // Init SPI bus
mfrc522.PCD_Init(); // Init MFRC522 card
Serial.println("Scan PICC to see UID and type...");
lcd.begin(16, 2); // set up the LCD's number of columns and rows:
lcd.print(""); // Print a message to the LCD.
}

void loop() {
// Look for new cards
if ( ! mfrc522.PICC_IsNewCardPresent()) {

return;
}
{
lcd.print("Nomor Kendaraan");
lcd.setCursor(0,1);
lcd.print("B 3793 KDR");

}
// Select one of the cards
if ( ! mfrc522.PICC_ReadCardSerial()) {

return;
}

// Dump debug info about the card. PICC_HaltA() is automatically called.
mfrc522.PICC_DumpToSerial(&(mfrc522.uid));

}

help me for it, and then i say assalamualaikum ^_^

6 Functions of Indonesian forest

Indonesia is one of countries with the largest forest area in the world and really need to do the conservation. It also completed with a management of forests for conservation and ecological balance of the earth nature. Different types of forests in Indonesia have the following functions.
Prevent erosion and landslides. The roots of the tree serve as a binder grain of soil. With no forest, no rain fell to the ground but fell to the leaf surface or absorbed into the ground.
Keeps, organize, maintain supplies of water in the rainy season also dry season.
Fertilize the soil, as fallen leaves will break down into soil humus.
As an economic resource. It can be utilized as a result of forest raw materials or raw materials for industrial and building. For example, rattan, rubber, and gutta-percha are used for handicrafts and materials of building.
As a dutfah plasma source for diversity in forest ecosystems that allow for the development of genetic biodiversity.
Reduce pollution to air pollution. Plants absorb carbon dioxide and produce oxygen needed by a living.

Source : http://www.caramudahbelajarbahasainggris.net

The Definition of Harddisk

Hard disk is medium data storage on a computer that consists of a collection of magnetic hard disks and spinning, as well as other electronic components. Hard disks use a flat disc called the platter, which on both sides are coated with a material that is designed to be able to store information magnetically. Platter-platter by punching holes in the center are arranged and rearranged on a spindle. Platter spinning at very high speed which is controlled by the spindle motor that is connected to the spindle. Special literacy electromagnetic tool named head mounted on a slider and is used to store information in a disk or read. Slider mounted on the arm, all of which are connected mechanically to a single collection on the surface of the disc and is connected via a device called the actuator. There was also the logic board to regulate the activity of other components and communicates with the PC.

ATA / EIDE. EIDE hard disk (Enhanced Integrated Drive Electronics) or ATA (Advanced Technology Attachment) is the latest version of a stAndard disk interface suitable for connection to the bus. Many manufacturers have a range of disk with a disk interface EIDE / ATA disk can be connected directly to the PCI bus and roomates which is used in many PC (personal computer).

SCSI. Many disks have interfaces designed for connection to a standard SCSI bus. The disks tend to be more expensive, but have better performance which is possible due to excess SCSI bus than the PCI bus. Access to the same can be done for many disk drives as the drive interface is actively connected to the SCSI bus only when the drive is ready to transfer data. This is especially useful in applications where there are a large number of requests for small files, which often happens in a computer used as a file server.

RAID. Promises great performance and provides a large and reliable storage. Disk is used both in high-performance computer and in systems that require dramatically higher reliability than normal levels. However, with the decline in prices to a more affordable level, the disk becomes more attractive even for a computer system with size – average.

SATA. SATA hard disk of the type (Serial Advanced Technology Attachment), the disk interface ATA (Advanced Technology Attachment) by using the serial version of the thin cable that has small wires. Total about two-thirds of total hard drive cable with type EIDE or ATA disks are numbered 39 pins and SATA has very high speed data transmission and reducing latency. So, this serial bus is able to exceed the speed of parallel bus.

Source : http://www.caramudahbelajarbahasainggris.net

How To Know UID Card Of RFID-RC522

Hello, my name Ressofi Kuswan. I have been trying how to read rfid card on Arduino, you simply put the program on your Arduino application. and this is the program.

#include
#include

#define SS_PIN 10
#define RST_PIN 9
MFRC522 mfrc522(SS_PIN, RST_PIN); // Create MFRC522 instance.

void setup() {
Serial.begin(9600); // Initialize serial communications with the PC
SPI.begin(); // Init SPI bus
mfrc522.PCD_Init(); // Init MFRC522 card
Serial.println("Scan PICC to see UID and type...");
}

void loop() {
// Look for new cards
if ( ! mfrc522.PICC_IsNewCardPresent()) {
return;
}

// Select one of the cards
if ( ! mfrc522.PICC_ReadCardSerial()) {
return;
}

// Dump debug info about the card. PICC_HaltA() is automatically called.
mfrc522.PICC_DumpToSerial(&(mfrc522.uid));
}

may be useful for those of you who want to know.