This is default featured slide 1 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 2 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 3 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 4 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 5 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

Rabu, 05 Desember 2012

The most popular, epic webcomic you've never heard of

Ed Tan photographed Vriska Serket (left) and Aradia Megido (right) cosplayers at Sakuracon 2012.

In an age of computers, smartphones, and instant gratification, studies lead us to believe that our attention spans are the shortest they’ve ever been.
If that were completely true though, a 5,000 plus page webcomic shouldn’t be able to attract millions of fans, much less inspire them to raise a million dollarsin under a week.
Homestuck,” cartoonist Andrew Hussie’s longest and latest project, is a video game inspired saga set in the Internet age. In the story, rife with Generation Y pop culture references, teenagers unite through an online game in order to save the world.
“I like Homestuck because it is one of the first pieces of media that genuinely appeals to me as a person who grew up in a very Internet based generation,” wrote Deanna Bennett, 20, in an email responding to my Tumblr request for "Homestuck" fanatics.
“Homestuck is meant to live online. It combines a lot of Internet humor that a lot of mainstream cartoons and comics are trying to desperately to tap but are failing and missing every damn time.”
Sounds like fun, right? But choosing to read it is a big commitment—in the form of hours and hours of free time. Fans compare its length to a that of a Greek epic. It has more than 100 main characters. And instead of comic panels, its gigantic pages are a mix of still and animated images, intimidating walls of text, Flash movies with original music, and even short video games.
“Homestuck is perhaps the first modern work to make full use of the Internet as not just a distribution tool but as a fully realized artistic medium,” wrote Clark Powell, 20. “Text, music, artwork, interactive, and animation are all combined in ways that have never been attempted before. On top of that, Homestuck is a piece of work whose very narrative is something of relevance to a new generation; it is, after all, a comic about the Internet, video games, and pop culture, if it can even be called a ‘comic.’”
Recently, the convoluted comic (and Hussie’s tendency to coin his own vocabulary for the script) prompted PBS’s Idea Channel to speculate that “Homestuck” just might be “the Ulysses of the Internet.” But as host Mike Rugnetta suggests, with great effort comes an incredible reward—the psychological theory of effort justification indicates that fans who stick it out will certainly grow attached.
“Homestuck's fans are a lot like the fans of the big, weird cult classics of the last half-century,” wrote Rob, 24, a graduate student who asked that we not use his last name in order to keep his internet and academic lives separate.
“That special enthusiasm, that ‘Let me tell you about Homestuck’ gleam-in-the-eye, isn't a product of Hussie's interactions with the fanbase so much as it's the universal demeanor of people who are into something wild and crazy and mindblowing, something that feels like a whole fever-dream world you can get lost in.”
Judging by the public statistics of Hussie’s advertising campaign, around 1 million unique visitors check the site for their “Homestuck” fix every day. Some more fervent fans are even involved in the comic’s creation process, since Hussie has been known to update as many as ten times in one day, making the comic a Herculean effort even with their help. A handful of volunteers, including Powell, draw art and compose original music for the comic.
“The fact that Andrew Hussie actively encourages the fans to be involved in contributing art and music truly blends the line between creator and reader,” wrote Sangdi Chen, 21.
Fans have also created a plethora of unofficial works, including fanfiction, fanart, and cosplay ensembles based on the characters. Colorful red and orange horns, found atop the heads of Homestuck’s alien race, the Trolls, dot the crowds at anime conventions and help fans recognize one another as kindred.
Cassandra Baden, 19, said the camaraderie of fans, both online and off, helped her get through a bout of depression during her first semester of college. Being away from home made her feel overly shy, but the Homestuck community gave her confidence to come out of her shell.
“Homestuck served as a gateway of sorts to other people,” she wrote. “I could go online, log into any of the many websites and be able to find a group of people I could talk to. I was scared to bring up my problems but like I had said before, they were family and immediately lent a hand when I needed it. The more I talked to them, the more confident I was talking to strangers on campus.”
“Homestuck”’s emphasis on friendships, especially long-distance ones, is especially important to fans like 19-year-old Sierra, from Texas, who asked that we refer to her using a pseudonym, for privacy's sake.
“In Homestuck, before the game starts, none of them have met in person. But they're still as close as friends can be, and their relationships are treated with the same seriousness that other friendships get,” Sierra wrote. “Homestuck has been a mutual bonding point for me and many of my Internet friends. When I met my best friend for the first time in July, I wore a Homestuck shirt to the airport so she could pick me out of the crowd instantly.”
After three years, Homestuck is beginning to receive attention outside of its close knit community—because money talks. When Hussie told fans he aspired to create a video game based on the comic and asked them to fund it, they eagerly complied, raising $1.9 million dollars in less than a month. Fans, once sequestered, are now aware of their power as a group.
“The enthusiasm is infectious,” wrote Avi Roberts, 22. “In the past three and a half years, I’ve watched a tiny community of people swapping inside jokes and suggesting names for the characters grow into a massive fandom capable of raising a million dollars in less than a week.”
Hussie himself, however, is not surprised. His fans have a will of their own. Even if he wanted to wield more power over Homestuck, he doesn’t think he could.
“The comic itself is still under my control,” he wrote. “I still make decisions about the story the same way I always did. But Homestuck as a ‘movement’ is not under my control, and never really was.”
sumber: http://geekout.blogs.cnn.com/2012/10/01/the-most-popular-epic-webcomic-youve-never-heard-of/

Contoh struct dengan pointer


#include <iostream.h>
#include <conio.h>

struct orang
{ char nama[30],alamat[30];
short umur; };
main(){
struct orang *saya ;

int i,n;

cout<<"Jumlah data : ";cin>>n;
for(i=1;i<=n;i++)
    { cout<<"Nama : ";cin>>saya->nama;
cout<<"Umur : ";cin>>saya->umur;
cout<<endl; }

for(i=1;i<=n;i++)
{ cout<<"Data ke ["<<i<<"] "<<"bernama "
<<saya->nama<<" dan berumur "
<<saya->umur<<" tahun";
cout<<endl; }

getch(); }

Pemberian Nilai Array Dengan Pointer


#include <iostream.h>
#include <conio.h>

void main(){

int x[5], *p, k;

clrscr();
p = x;
x[0] = 5;
x[1] = x[0]; /*x[1]diisi dengan x[0] sehingga
x[1] = 5 */
x[2] = *p + 2; /*x[2] diisi dengan x[0] + 2
sehingga x[2] = 7 */
x[3] = *(p+1)-3; /*x[3] diisi dengan x[1] - 3
sehingga x[3] = 2 */
//x[4] = *(x + 2); /*x[4] diisi dengan x[2]
sehingga x[4] = 7 */
x[4]=*(p+2)-1;
for(k=0; k<5; k++)
cout<<"\nx["<<k<<"] = "<< x[k];


getch(); }

Contoh Pointer Dengan Array


#include <iostream.h>
#include <conio.h>

void main(){

int tgl_lahir[] = { 13,9,1982 };
int *ptgl;

ptgl = tgl_lahir; /* ptgl berisi alamat array */
cout<<"Diakses dengan pointer\n";
cout<<"Tanggal = "<< *ptgl;
cout<<"\nBulan = "<< *(ptgl + 1);
cout<<"\nTahun = "<< *(ptgl + 2);
cout<<"\nDiakses dengan array biasa\n";
cout<<"Tanggal = "<< tgl_lahir[0];
cout<<"\nBulan = "<< tgl_lahir[1];
cout<<"\nTahun = "<< tgl_lahir[2];

getch();}

Program Fibonanci dengan Array


#include <conio.h>
#include <iostream.h>
#define max 10

int fibo[max];

main(){

int i;
fibo[1]=1;
fibo[2]=1;
for (i=3;i<max;i++)
{ fibo [i]=fibo[i-2]+fibo[i-1]; }
cout<<max<<" Bilangan Fibonanci Pertama ada di : \n";
for (i=1;i<max;i++)
{ cout<<" "<<fibo[i];}

getch();}

Menghitung IPK (Struct)


#include <iostream.h>
#include <conio.h>
#include <stdio.h>

struct mhs
{ int npm[15];
char nama [35]
int terhapus;
}mhs[3];

void main()

{ int i, cari, ketemu;

cout<<"\t\t\tSTMIK AMIKOM YOGYAKARTA";
cout<<endl<<endl;

cout<<"\n\nMasukan Data";

for(i=0;i<3;i++)

{ cout<<"Nama = ";cin>>mhs[i].nama);
cout<<"NIM = ";cin>>mhs[i].nim);
data[i].terhapus = 0;
};

cout<<"Isi data\n";
for(i=0;i<3;i++)
{ if (data[i].terhapus == 0) //tampilkan data yg belum terhapus
printf("Nama = %d\tIPK = %f\n", data[i].npm, data[i].ipk);

};

printf("Cari Nama = "); scanf("%d", &cari); ketemu = 0;
for(i=0;i<3;i++)
{ if (cari == data[i].npm)
ketemu = 1;
}
if (ketemu == 1)
cout<<"\nNama ditemukan";
else
cout<<"\nNama tidak ada";

      printf("Cari Nama hapus = "); scanf("%d", &cari);
for(i=0;i<3;i++)
{ if ((cari == data[i].npm) && (data[i].terhapus == 0))
{ data[i].terhapus = 1; break;

}
}

cout<<"\nIsi data";
for(i=0;i<3;i++)
{ if (data[i].terhapus == 0)
printf("Nama = %d\tIPK = %f\n", data[i].npm, data[i].ipk);
};

printf("Cari Nama yang akan di edit = "); scanf("%d", &cari);
for(i=0;i<3;i++)
{ if (cari == data[i].npm && (data[i].terhapus == 0))
{ cout<<"Masukkan data baru:\n";

printf("Nama = "); scanf("%d", &data[i].npm);
printf("IPK = "); scanf("%f", &data[i].ipk);
data[i].terhapus = 0;
}
}

cout<<"\nIsi data";
for(i=0;i<3;i++)
{ if ((data[i].terhapus == 0))
printf("Nama = %d\tIPK = %f\n", data[i].npm, data[i].ipk);
};

}

Contoh Sifat Akses Pada JAVA (Protected)


import java.io.*;
class Soal3 {
protected int a,b,c;
public Soal3() { a=3; b=5; c=7; }
public int fungsi1 () {return (a+b-c); }
public void fungsi11() {
if (a>b)
System.out.println("Mengecek a dan b");
else if (b>c)
System.out.println("Mengecek b dan c");
else
System.out.println("Mengecek a dan c");
}
}

class Soal2 extends Soal3 {
public int fungsi2() {return (c%2); }
public void fungsi21() {
for (int i=1;i<b;i++)
c=c-a;
System.out.println("Output 1= "+c);
}
}


public class Soal1{
public static void main (String[] args) {

Soal3 a=new Soal3();
Soal2 b=new Soal2();
a.fungsi11();
b.fungsi11();
System.out.println("Output 2 = "+a.fungsi1());
System.out.println("Output 3 = "+b.fungsi1());
b.fungsi21();
System.out.println("Output 4 = "+b.fungsi2());

}
}