Jumat, 19 Oktober 2012
Yamaha New Vixion 2012 vs Bajaj Pulsar 200NS, Pilih Mana?
Sabtu, 21 Juli 2012
November 2012, Owl City Kembali Gelar Konser di Indonesia
Kantongi Paten Antarmuka iOS, Apple Siap Serang Android
Paten berjudul "Perangkat Elektronik Portabel, Metode, dan Antarmuka Pengguna berbasis Grafis untuk Menampilkan Daftar dan Dokumen Elektronik" itu menjelaskan detail tampilan antarmuka yang digunakan Apple dalam sistem operasi iOS.
Paten tersebut adalah salah satu dari 25 paten baru Apple yang dipublikasikan oleh US Patent and Trademark Office, pada Selasa (17/7/2012).
Hal-hal yang tercakup dalam paten antara lain adalah tampilan modul UI email, Camera Roll, daftar menu, video player, kalender, browser, widget, search, maps, serta interface multi-touch secara umum pada iOS.
Paten Apple juga mencakup iPhone yang dijelaskan sebagai perangkat multi-fungsi berbasis interface multi-touch yang memiliki serangkaian program dan keyboard virtual.
Tampilan interface pada perangkat iOS milik Apple dirancang untuk digunakan dengan sentuhan jari pada layar. Konsep ini diperkenalkan oleh iPhone generasi pertama pada 2007 dan segera diikuti oleh produsen-produsen perangkat mobile lain.
Keberhasilan Apple mendapatkan paten tampilan antarmuka ini akan semakin memanaskan perang paten dengan pesaingnya, terutama Android. Karena paten yang sukses diklaim Apple ini akan dengan mudah menyerang Android atau perangkat lain yang mempunyai tampilan antarmuka mirip iPhone.
Seperti diketahui, tampilan kebanyakan ponsel Android bisa disebut sangat mirip dengan antarmuka iOS di iPhone.
Saat ini Apple terlibat sengketa hukum dengan sejumlah produsen perangkat Android, termasuk Samsung dan HTC, terkait aspek-aspek dari iPhone, iPad, dan iOS yang menurut Apple telah ditiru oleh lawan-lawannya tersebut.
Kamis, 19 Juli 2012
Batman - The Dark Knight Rises (2012)
Christopher Nolan
Writers:
Jonathan Nolan (screenplay), Christopher Nolan (screenplay), and 3 more credits »
Stars:
Christian Bale, Michael Caine and Gary Oldman
You can all rest easy now.. "The Dark Knight Rises" is the 3rd and final movie of the Christoper Nolan-directed trilogy and it was a great feeling seeing it finish in grand fashion.
There was no way it was going to surpass "The Dark Knight" and the iconic performance of Heath ledger as the "The Joker", but it comes incredibly close and mostly delivers with the assistance of "Bane"; the last major villain of the franchise. Actor Tom Hardy does the role justice as the voice itself is creepy and haunting and sets the tone of the entire film, as Batman is caught in the darkest of struggles.
Then there's Anne Hathaway's portrayal of "Catwoman" which surprised me and added a bit of fun to the otherwise dark film, however she doesn't surpass the utter brilliance of Michelle Pheifer's "Catwoman" in Tim Burton's "Batman Returns" which is still the definitive version of the character.
All in all the movie was a lot of fun to watch since we've all been waiting to see how it all ends, and trust me it was well worth the wait!
I congratulate Christpher Nolan for making a trilogy that is connected beginning to end and is now the most compelling take on the "batman" that we've ever witnessed on the big screen.
Trailer #1
Selasa, 17 Juli 2012
Owl City ft. Carly Rae Jepsen - Good Time (June 20, 2012)
"Good Time" is a song by American synthpop artist Owl City and Canadian artist Carly Rae Jepsen from Owl City's upcoming album The Midsummer Station. It was released as the lead single from the album on June 26, 2012. "Good Time" was written by Matt Thiessen, Brian Lee and Young himself. The song received generally positive reviews from music critics, with critics describing it as a "summer anthem".
Green Day - Oh Love (New Single ‘¡Uno!’, ‘¡Dos!’ and ‘¡Tre!,’)
Green Day - Oh Love
01. Nuclear Family
02. Stay The Night
03. Carpe Diem
04. Let Yourself Go
05. Kill The DJ
06. Fell For You
07. Loss Of Control
08. Troublemaker
09. Angel Blue
10. Sweet 16
11. Rusty James
12. Oh Love
Sabtu, 14 Juli 2012
Konsumsi Obat , Rooney Terancam Impoten
Wayne Rooney |
Selasa, 10 Juli 2012
Percobaan Posting Artikel Menggunakan Gadget Android
Sudah cukup lama blog 3idiots-stikom ini lesu alias sepi ga ada posting baru sedikit pun... hahahaaa padahal di blog ini ada 3 admin, tapi kemanakah meraka??? Menurut sumber yang ada si mereka bertiga lagi pada sibuk, apa lagi sekarang sedang ada ujian di kampus jadi mau ga mau mereka harus meninggalkan aktifitas ngeblognya... heheeee
Nah kali ini saya yang termasuk dari tim 3idiots lagi mencoba biat posting artikel, tapi untuk artikel ini tidak berbau musik ataupun IT, artikel ini sebenarnya cuma artikel percobaan yaitu percobaan memposting lewat hp android... hahahahhaa
Tujuanya si pengen ngetest enak ga si posting lewat mobile, soalnya sekarang perkembangan jaman sudah ke arah mobilitas semua kegiatan seakan akan sudah bisa di lakukan secara mobile, dan sekarang saya pun juga lagi mencoba apakah nyaman ngeblog lewat mobile??? Dan hasilnya sampai kata kata telahir yang saya tulis ini semua terasa nyaman bahkan lebih nyaman dari pada nulis di depan komputer... Heehee
Minggu, 24 Juni 2012
Laporan Praktikum Modul 8 : Queue (Kristianus Unang - Sistem Informasi - S1 - 201101018)
#include <conio.h>
int f,r,df;
int qu[50];
void enQueue(void);
void deQueue(void);
void Tampilkan(void);
main()
{
int k;
for (k=0; k<50; k++)
qu[k]=0;
while(1)
{
cout<<endl;
cout<<"============PILIHAN========="<<endl;
cout<<" 1)enQueue"<<endl;
cout<<" 2)deQueue"<<endl;
cout<<" 3)Tampilkan Queue"<<endl;
cout<<" 4)Keluar"<<endl;
cout<<"=============================";
cout<<endl;
cout<<"Masukkan Pilihan Anda ( 1, 2, 3, 4) dalam melakukan Queue: ";
cin>>k;
if (k==1)enQueue();
if (k==2)deQueue();
if (k==3)Tampilkan();
if (k==4)break;
}
}//End Main/
void enQueue(){
cout<<"Masukkan Elemen: ";
cin>>qu[r];
r++;
}
void deQueue(){
qu[f]=0;
f++;
}
void Tampilkan(){
int i;
cout<<endl<<"Queue: "<<endl;
for(i=f;i<r;i++)
cout<<qu[i]<<" , ";
cout<<endl<<"press any key.....";
getche();
}
8.1 |
// Name : queue.cpp
// Author : unang
// Version :
// Copyright : Your copyright notice
// Description : Hello World in C++, Ansi-style
//============================================================================
#include <iostream>
using namespace std;
int f,r,df;
int qu[50];
void enQueue (void);
void deQueue (void) ;
int Tampilkan (void);
int main (){
int k;
for (k=0;k<50;k++)
qu[k]=0;
while (1)
{
cout<<endl;
cout<<"+++++Pilihan++++++"<<endl;
cout<<" 1. enQueue"<<endl;
cout<<" 2. deQueue"<<endl;
cout<<" 3. Tampilkan queue"<<endl;
cout<<"++++++++++++++++++"<<endl;
cout<<endl;
cout<<"Masukan pilihan (1,2,3,4) dalam melakukan Queue : ";
cin>>k;
if (k==1) enQueue ();
if (k==2) deQueue ();
if (k==3) Tampilkan ();
if (k==4) break;
}
}
void enQueue (){
cout<<" Masukan elemen : ";
cin>>qu[r];
r++;
}
void deQueue(){
qu[f]=0;
f++;
}
int Tampilkan (){
int i;
cout<<endl<<"Queue : "<<endl;
for(i=f;i<r;++i)
cout<<qu[i]<<",";
cout<<endl<<"press any key...";
return 0;
}
screenshoot program
8.1 |
Sabtu, 23 Juni 2012
LAPORAN PRAKTIKUM QUEUE (RISKI YOGA KUSUMADYA (201101019))
========================================================================
//============================================================================
// Name : queue.cpp
// Author :
// Version :
// Copyright : Your copyright notice
// Description : Hello World in C++, Ansi-style
//============================================================================
#include <iostream>
using namespace std;
//#include <iostream.h>
//#include <conio.h>
int f,r,df;
int qu[50];
void enQueue(void);
void deQueue(void);
int Tampilkan(void);
int main(){
int k;
for(k=0;k<50;k++)
qu[k]=0;
while(1){
//clrscr();
cout<<endl;
cout<<"============Pilihan================"<<endl;
cout<<"1.enQueue"<<endl;
cout<<"2.deQueue"<<endl;
cout<<"3.tampilkan queue"<<endl;
cout<<"4,keluar"<<endl;
cout<<"===================================";
cout<<endl;
cout<<"masukkan pilihan(1,2,3,4) dalam melakukan Queue :";
cin>>k;
if(k==1) enQueue();
if(k==2) deQueue();
if(k==3) Tampilkan();
if(k==4) break;
}
}
void enQueue(){
cout<<"masukan elemen :";
cin>>qu[r];
r++;
}
void deQueue(){
qu[f]=0;
f++;
}
int Tampilkan(){
int i;
cout<<endl<<"Queue: "<<endl;
for(i=f;i<r;++i)
cout<<qu[i]<<",";
cout<<endl<<"presss and key . . .";
//getche();
//}
return 0;
}
Jumat, 22 Juni 2012
Laporan Praktikum Modul 8 Queue (Novian Adi P) (201101029)
>> Program 8.1
Listing Program :
Output Program :
Menggunakan Program Borland
>> Program 8.1
Listing Program :
Output Program :