2009������02·���19������

��돪����·������������github�����������������������¹�������������½�����������������ҏ����������Ï��¾��¡���\���\���\������¼\������¾���«���������������������������¹���̏�¡�¡�¡���

�����ҏ��«���������̏�����Email::Send::Gmail������»���������������Gmail���«������\������¼\����������ď��·�����������Ï��������·�����������Ώ����ď��ޏ�������¡����������я��«�����������Ï��������«���������������«�����������ď�¡�

  • CC���̏����������������������
  • Bcc���̏����������������������
  • �����돪����\���\���\���\������̏����������я��������������µ������
  • �����돪����\���\���\���\�������������������ď�����»�ߏ����������ď�����²��؏�����������������

²¼µ­�����Ώ����ď�����������\³���¼\���������½��Џ����������������Ώ����ď��ޏ�����CC�����Џ���������������������Error sending email: Email::Send::Gmail: no valid recipients��¡ߏ��������«��¡�

CC�����Џ��������������«�����������ď�������¡񏪩��돪����\���\���\���\�����������������������«������������¾���¹��������������������������я��������������ޏ�������¡�

#!/usr/bin/perl

use strict;
use warnings;
use utf8;
use Encode;
use Email::Send;
use Email::Send::Gmail;
use Email::MIME;
use Email::MIME::Creator;
use File::Slurp qw/slurp/;

my $jis = find_encoding 'ISO-2022-JP';

my $from = '[email protected]';
my $to   = '[email protected]',
my $cc   = '[email protected]';

my $email = Email::MIME->create(
    header => [
        From    => $from,
        To      => $to,
        CC      => $cc, # ���³�����������Џ�����������������\��\������¼
        Subject => encode('MIME-Header-ISO_2022_JP', 'Perl���«������Gmail������\������¼\����������ď��'),
    ],
    
    parts => [
        $jis->encode('���µµ������������������������������������«���¼����'),
        # ���������·���������³�����������������������������я���������������������������������돪����\���\���\���\���
        Email::MIME->create(
            attributes => {
                filename     => '../temp.jpg',
                content_type => 'application/octet-stream',
                encoding     => 'Base64',
                name         => $jis->encode('��������������������������𡯏�����������.jpg'),
            },
            body => slurp('../temp.jpg'),
        ),
    ],
);

my $sender = Email::Send->new({
    mailer      => 'Gmail',
    mailer_args => [
        username => $from,
        password => 'password',
    ],
});

eval { $sender->send($email) };
die "Error sending email: $@" if $@;
������������������ �����²���²���²_
�������������������ď����� ���� ������
������������ �����ď����¡������ ���� �������
�������������ď��������¡񏩰�����¡񏩰�������� ����������\���\���\�������»����������������������«������������
������������|���� ������ ���� ,Ž���(Ž���_, )���³���� ���� |
������ ������ ���������� ������ Ž���Ž���Ž���Ž���Ž²���� �����ď�������
������ ���� ���� ���ď�������_�����³\���Ž���,���� ������ 

\Ð\«���������«���������������ޏ�����»�����𡯏��½�����Ï�����\���\���\������¼\���½��Џ�����

Net::SMTP::SSL������MIME::Entity���������·���³���·���³½��Џ�����������·���²�����¡����������я��«���������­�����ď�¡�

#!/usr/bin/perl

use strict;
use warnings;
use utf8;
use Encode;
use Email::Gmail::Send;

my $jis = find_encoding 'ISO-2022-JP';

my $username = '[email protected]';

my $gmail = Email::Gmail::Send->new(
    username => $username,
    password => 'XXXXXX',
#    Debug    => 1,
);

$gmail->send(
    From     => $username,
    TO       => '[email protected]',
    CC       => ['[email protected]', '[email protected]'],
    BCC      => ['[email protected]', '[email protected]'],
    Subject  => encode('MIME-Header-ISO_2022_JP', 'Gmail�����������돪����\���\���\���\����������ď��\���\¹\���'),
    Body     => $jis->encode('�����������������я����������돪����\���\���\���\������̏�������������������«���������Ï��Ï��Ï���' ),
    Parts    => [
        { Path => '../temp.csv', Name => $jis->encode('���·�����������䏢����.csv') },
        { Path => '../temp.jpg' },
    ],
) or die $gmail->errstr;

����������������𡯏�����\��\·\��\·���������я��·������������������������������¡�

  • \���\���\������¼\������¾���̏����ҏ�����������
  • TO��¡�CC��¡�BCC�����������ď�ԏ�����\��\���\���\¹»������������������­������
  • Parts�������������³�����������������돪����\���\���\���\���������½��Џ�����
  • \���\���\���\������¾������¾�����¢̏��·�����ď�����������������basename���¹����������������
  • �����������������������䏪���䏢������·�����Ï�����������������¼�������쏢����encode���·������»���������
  • \���\���\������¼\������¾���̏����ҏ�����������

�돫��������������돪؏��������̏���������������¡�Net::SMTP����������������Authen::SASL������eval���·�����������������я�������������¡����������я��«������������¹��Џ�����������������������������\��\������¼���������«�����돢����»������������������¹��¡�
Authen::SASL����\���\���\¹\������¼\������µ���������������������Ð������µ�����¡�

���³���­������Module�����ӏ��������������­���������¹��¡��������������������Ï���������������¼­�����������ď���������������CodeRepos���«GitHub���·����������

Email::Gmail::Send

�����ď����ӏ����я�����������������������������\���\���\������¼\��������������������Џ�������������

package Email::Gmail::Send;
 
use strict;
use warnings;
use utf8;
use Carp qw/croak/;
use Net::SMTP::SSL;
use MIME::Entity;
use Email::Date::Format;
use File::Basename qw/basename/;
 
our $VERSION = '0.01';
 
sub new {
    my $class = shift;
    my $die_msg = "Usage: $class->new(username => \$username, password => \$password)";
    my %args = @_;
    
    croak $die_msg unless $args{username};
    croak $die_msg unless $args{password};
    
    bless {%args}, $class;
}
 
sub send {
    my $self = shift;
    my $die_msg = "Usage: $self->send(From => \$from, TO => \$to, Subject => \$subject, Body => \$body)";
    my %args = @_;
    
    croak $die_msg unless $args{From};
    croak $die_msg unless $args{TO};
    croak $die_msg unless $args{Subject};
    croak $die_msg unless $args{Body};
    
    $args{Data} = $args{Body};
    delete $args{Body};
    
    my $mime = MIME::Entity->build(
        Date     => Email::Date::Format::email_date,
        Type     => 'text/plain; charset="ISO-2022-JP"',
        Encoding => '7bit',
        %args,
    );
    
    if ($args{Parts}) {
        for my $hash (@{$args{Parts}}) {
            croak "Usage: $self->send(Parts => [ {Path => \$file_path, Name => \$file_name}, { ... } ])" unless $hash->{Path};
            $mime->attach(
                Path     => $hash->{Path},
                Filename => $hash->{Name} || basename($hash->{Path}),
                Type     => 'application/octet-stream',
                Encoding => 'Base64',
            )
        }
    }
    
    my $smtp = Net::SMTP::SSL->new(
        'smtp.gmail.com',
        Port    => 465,
        Debug   => $self->{Debug}   || 0,
        Timeout => $self->{Timeout} || 15,
    ) or die "Net::SMTP::SSL->new failed!!";
    
    if ($smtp->auth($self->{username}, $self->{password})) {
        $smtp->mail($args{FROM});
        $smtp->to(&_deref($args{TO}));
        $smtp->cc(&_deref($args{CC})) if $args{CC};
        $smtp->bcc(&_deref($args{BCC})) if $args{BCC};
        $smtp->data();
        
        $smtp->datasend($mime->stringify);
        $smtp->dataend;
        $smtp->quit;
    }
    
    else {
        $self->{error} = "send e-mail failure ($args{TO})";
        return 0;
    }
    
    return 1;
}
 
sub errstr {
    return shift->{error};
}
 
sub _deref {
    my $arg = shift;
    return ref $arg eq 'ARRAY' ? @{$arg} : $arg;
}
 
1;
__END__

=head1 NAME

Email::Gmail::Send - Very simple Gmail sending interface.

=head1 SYNOPSIS

  use Email::Gmail::Send;
  
  my $gmail = Email::Gmail::Send->new(
      username => 'username',
      password => 'password',
  );
  
  $gmail->send(
      From     => $from,
      TO       => $to,
      CC       => [$cc, $cc2],
      BCC      => [$bcc, $bcc2],
      Subject  => 'hello gmail',
      Body     => 'agyagyagyagya',
      Parts    => [
          { Path => '/home/hoge/erogazo/HENTAI.jpg', Name => 'Abnormal.jpg'  },
          { Path => '/home/fuga/HENTAI.jpg' },
      ],
  ) or die $gmail->errstr;
  

=head1 DESCRIPTION

Email::Gmail::Send is Very simple Gmail sending interface.

You can also send attachments in multipart.
Of course, TO CC and BCC can also specify more than one.

=head2 Methods

=over

=item new

Constructor

=item send

send

=item errstr

return error message

=back

=head1 AUTHOR

Yuji Shimada E<lt>xaicron {at} gmail.comE<gt>

=head1 SEE ALSO

L<MIME::Entity>
L<Net::SMTP::SSL>
L<Authen::SASL>

=head1 LICENSE

This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.

=cut

POD������½��Џ��­�������������������������«������������

xaicron at 23:52����\³\���\���\���(101)����Perl   ³\\\\¼ҏ\\\\¼\²
������½���

\³\���\���\����돫������

1. Posted by kata cinta   2013������12·���21������ 03:26

���³������µ­»��ӏ�����������¾����������������������������¹���̏�¡��½������������������½��Џ��­���³���ޏ��������·��¡����Ï��������������������ޏ��Ð��¡��³������\���\���\�돢�̏�������㏢�������������������������·�����������Ï���
2. Posted by oke seo   2014������02·���22������ 04:07
���³����������������������\���\������¼\¹���������¹���̏�¡�»��������������������я�����������������
3. Posted by diakui   2014������02·���26������ 08:04
���³������\���\��\���\µ\���\���������»�������������¼���������������¼��ԏ�������돩�������²��Џ����Ï����쏢���������������Ï�𡭏������������������¹����
4. Posted by kata kata cinta   2014������03·���07������ 19:56
»����������������������ď�����\���\���\�돢¡񏪲���¾�������������������µ­»��ӏ�����������¾��������������������̏����������������³���������̏����������������������Ï��������·���������������¹��¡�
5. Posted by kata kata bijak   2014������03·���07������ 19:57
»����������������������ď�����\���\���\�돢¡񏪲���¾�������������������µ­»��ӏ�����������¾��������������������̏����������������³���������̏����������������������Ï��������·���������������¹��¡�
6. Posted by cara menghilangkan jerawat   2014������03·���09������ 22:23
�����䏪���ӏ�����������������������������¡�»������̏��³������\���\���\�돢���������������³����������¹�̏��»���������¹��¡�
7. Posted by kata kata galau   2014������03·���25������ 18:17
���³������\���\���\�돢������½������¼������µ­»��ӏ��̏�¡�»������������³������\���\���\�돢���������������³���������̏����������������������Ï��������·���������������¹��¡�
8. Posted by dp bbm bergerak   2014������03·���25������ 18:18
»������������³������\���\���\�돢����µ­»��ӏ����ҏ����������Ώ��������·�����ď��·��¡�»�������������¼�ޏ�����������¾������������­�����Џ���������������¡�»������������³������\���\���\�돢�̏�����¹\���­���������¹��¡�
9. Posted by kata kata romantis   2014������04·���02������ 05:44
»����������������������ď��̏�����¼��¾��Ï����я����ҡ돢Ï��¹������������¾�����¡�¾���µ­������¾��Ï����я����Ң���Ï��­���·�����������������ď��������­�����������̏����������Ï�𡭏������������������¹
10. Posted by kata kata cinta   2014������04·���21������ 22:05
�����䏪���ӏ�����������������������������¡�»������̏��³������\���\���\�돢���������������³����������¹�̏��»���������¹��¡�
11. Posted by Cerita Lucu   2014������04·���24������ 15:14
���³������\���\��\���\µ\���\���������»�������������¼���������������¼��ԏ�������돩�������²��Џ����Ï����쏢���������������Ï�𡭏������������������¹����
12. Posted by tempat wisata di bandung   2014������05·���08������ 02:13
���³������������¼�����돪��������������������³������������������¾�����������½������¼������µ­»��ӏ��������¹����
¹¹���·���µ������������¾���¹�����������¡�����������������������¡����������������������ҏ��������«���������·������
13. Posted by kata kata motivasi   2014������05·���09������ 22:24
���³������µ­»��ӏ�����������¾����������������������������¹���̏�¡��½������������������½��Џ��­���³���ޏ��������·��¡����Ï��������������������ޏ��Ð��¡��³������\���\���\�돢�̏�������㏢�������������������������·������������
14. Posted by kata kata galau   2014������05·���09������ 22:25
���³����������������������\���\������¼\¹���������¹���̏�¡�»��������������������я�����������������
15. Posted by status fb   2014������05·���09������ 22:28
»������������«������������������²��ҏ��·���������������������������̏�¡��³������\���\���\�돢����������¾���������\·\���\��\�����������½������¼������¾��Ï����я��������¹���̏�¡����������̏�����������
16. Posted by blog remaja indonesia   2014������05·���11������ 04:41
»����������������������ď��̏�����¼��¾��Ï����я����ҡ돢Ï��¹������������¾�����¡�¾���µ­������¾��Ï����я����Ң���Ï��­���·�����������������ď��������­�����������̏����������Ï�𡭏������������������¹
17. Posted by operatorku   2014������05·���12������ 19:01
»����������������������ď�����\���\���\�돢¡񏪲���¾�������������������µ­»��ӏ�����������¾��������������������̏����������������³���������̏����������������������Ï��������·���������������¹
18. Posted by kata kata indah   2014������05·���31������ 16:56
»����������������������ď�����\���\���\�돢¡񏪲���¾�������������������µ­»��ӏ�����������¾��������������������̏����������������³���������̏����������������������Ï��������·���������������¹��¡�
19. Posted by cara menghilangkan jerawat   2014������06·���03������ 07:52
»����������������������ď��̏�����¼��¾��Ï����я����ҡ돢Ï��¹������������¾�����¡�¾���µ­������¾��Ï����я����Ң���Ï��­���·�����������������ď��������­�����������̏����������Ï�𡭏������������������¹
20. Posted by kata kata lucu   2014������06·���03������ 07:55
���³����������������������\���\������¼\¹���������¹���̏�¡�»��������������������я�����������������
21. Posted by dunia remaja   2014������06·���04������ 08:53
������¾���������µ­»��ӏ��³���³���������­�����Џ�����¾��Ï����я����ҏ����ď��������µ�����я��«���������ޏ�����¹�̏��������������¹
22. Posted by kata kata cinta   2014������06·���04������ 20:13
���³����������������������\���\������¼\¹���������¹���̏�¡�»��������������������я�����������������
23. Posted by pembaca   2014������06·���10������ 19:26
»������������³������\���\���\�돢����µ­»��ӏ����ҏ����������Ώ��������·�����ď��·��¡�»�������������¼�ޏ�����������¾������������­�����Џ���������������¡�»������������³������\���\���\�돢�̏�����¹\���­���������¹��¡�
24. Posted by kata kata cinta romantis   2014������06·���11������ 02:19
������¾������������������²���������·������������\���\������¼\¹��¡�\���\���\���\���\·\������¹��Џ���ޏ�����������㏢���ҏ����������Ώ�¡���»��¡�»��������ď�����������������½��Џ��­¹��Џ����Ώ����ҏ����������̏����������Ï�𡭏������������������·������
25. Posted by kata kata mutiara   2014������06·���16������ 05:27
�����������̏����������Ï�𡭏������������������¹��¡������������ď���������¾������̏����������Ώ�¡񏪲���¾������������������������������������ҏ��������������¹
26. Posted by kata kata bijak   2014������06·���16������ 10:22
���³������\���\���\�돢������½������¼������µ­»��ӏ��̏�¡�»������������³������\���\���\�돢���������������³���������̏����������������������Ï��������·���������������¹��¡�
27. Posted by saatnya   2014������06·���17������ 10:53
�����»����¹����������������\���\������¼\¹�����������������ҏ���������
28. Posted by kata kata cinta   2014������06·���19������ 07:50
������¾�����������½������¼������µ­»��ӏ�¡�»������������³������µ­»��ӏ����ҏ�����¹������·�����������������������������������̏����������Ï�¡�»�����������돪����·������µ­»��ӏ����ҏ����ԏ��������������������������¹��¡��½�����������ҏ��������������³������������������¾��������������Џ��­���·���������������������¹��¡�
29. Posted by kata kata galau   2014������06·���26������ 16:19
»����������������������ď��̏�����¼��¾��Ï����я����ҡ돢Ï��¹������������¾�����¡�¾���µ­������¾��Ï����я����Ң���Ï��­���·�����������������ď��������­�����������̏����������Ï�𡭏������������������¹
30. Posted by dunia remaja   2014������07·���08������ 20:38
�����䏪���ӏ�����������������������������¡�»������̏��³������\���\���\�돢���������������³����������¹�̏��»���������¹��¡�
31. Posted by resep kue   2014������07·���14������ 02:46
���������²���������·������µ­»��ӏ�¡����������̏����������Ï�𡭏������������������·������
32. Posted by kumpulan kata kata cinta romantis buat pacar   2014������07·���19������ 16:06
���³������\���\���\�돢����������¾�����������½������¼���������������¹���̏�¡�»������������³������\���\���\�돢���ҏ���̏��������¹����������������������¾��������������Џ��­���·���������������������¹
33. Posted by jasa fotocopy murah   2014������09·���05������ 15:25
�����������Ώ���������������������������ҏ�����������½��Џ��­¹��Џ����Ώ�¡����������̏����������Ï�𡭏������������������·������
34. Posted by hadirkanlah   2014������09·���14������ 23:08
»����������������������ď�����\���\���\�돢¡񏪲���¾�������������������µ­»��ӏ�����������¾��������������������̏����������������³���������̏����������������������Ï��������·���������������¹��¡�
35. Posted by kata kata galau   2014������09·���20������ 13:50
���³����������������������\���\������¼\¹���������¹���̏�¡�»��������������������я�����������������
36. Posted by kata kata gombal   2014������09·���24������ 09:27
�����������Ώ���������������������������ҏ�����������½��Џ��­¹��Џ����Ώ�¡����������̏����������Ï�𡭏������������������·������
37. Posted by jasa fotocopy murah   2014������09·���25������ 18:55
½��Џ��­¹��Џ����Ώ�������¡񏪪����돪؏��¹���������³��������������½������¼������
38. Posted by tempat fotocopy dan percetakan murah di jakarta   2014������09·���26������ 22:09
�������돪؏��¹���������³��������������½������¼��������¡���������\���\������¼\¹��������¡����������̏�����������
39. Posted by kata kata galau   2014������10·���03������ 17:05
���³������\���\���\�돢������½������¼������µ­»��ӏ��̏�¡�»������������³������\���\���\�돢���������������³���������̏����������������������Ï��������·���������������¹��¡�
40. Posted by uda rino   2014������10·���24������ 03:08
\���\���\«\���\��ď����¡돪�������\³\��ԏ��¼�������돫؏�돩Џ���������������²���
41. Posted by kata kata galau   2014������10·���25������ 02:40
�����䏪���ӏ�����������������������������¡�»������̏��³������\���\���\�돢���������������³����������¹�̏��»���������¹��¡�
42. Posted by kata kata bijak   2014������10·���30������ 21:15
���­�����������������������؏����������Џ��·�����������������؏��������¹
43. Posted by kata kata galau sedih   2014������11·���01������ 03:53
�����»����¹����������������\���\������¼\¹�����������������ҏ���������
44. Posted by kata kata cinta   2014������11·���12������ 02:03
I����ve visited many blogs,forums, but this time:How your fantastic forum is . It makes me surprise����.
45. Posted by dp bbm lucu   2014������11·���27������ 01:10
�����Ï��������·�����������Ώ����ď��ޏ�������¡����������я��«�����������Ï��������«���������������«�����������ď�¡�
46. Posted by kata kata galau   2014������12·���08������ 05:05
���������²���������·������µ­»��ӏ�¡����������̏����������Ï�𡭏������������������·������
47. Posted by fotocopy murah jakarta   2014������12·���09������ 20:24
����������\³\���\���\���\���������½¾�����Ï��³������������������¾������������������ޏ�¡�»��������ď�������������¡��³������\���\¹\���������¼���������¼��������������������я�����³µ������\���\���\���\���������¼��������؏��¹����������̏���ߏ��̏����������������¹��¡�
48. Posted by hadirkanlah   2014������12·���12������ 22:24
���³������\���\���\�돢������½������¼������µ­»��ӏ��̏�¡�»������������³������\���\���\��
49. Posted by kata kata galau   2014������12·���13������ 08:27
�����������Ώ���������������������������ҏ�����������½��Џ��­¹��Џ����Ώ�¡����������̏����������Ï�𡭏������������������·
50. Posted by ½���³������¹¹��ԏ�ď��������   2015������01·���12������ 00:31
10616h��¡�2C������½��Џ��«½��Џ���)����·���h��¡�2C������½��Џ��«½���
51. Posted by batu akik   2015������01·���31������ 15:37
»��������������䏪���ӏ������������������ď���������������½��Џ��«������������µ­»��ӏ����ҏ����������я�����³��⏢�·�����я�������¡������������ď�����\���\���\�돢�������������������������ď�����������»��С���ӏ�����²�����𡭏��¹�����������Ï��������«��𡯏��������¹��¡�
52. Posted by KATA KATA TERLENGKAP   2015������03·���31������ 23:26
���³������\���\���\�돢������½������¼������µ­»��ӏ��̏�¡�»������������³������\���\���\�돢���������������³���������̏����������������������Ï��������·���������������¹��¡�
53. Posted by Kata Kata Cinta   2015������04·���28������ 12:51
»��������ď�������������¡��³������\���\¹\��������ҏ����������������ď�����������¼��������������������я�����³µ������\���\���\���\���������¼��������؏��¹����������̏���ߏ��̏����������������¹��¡�
54. Posted by \�ߏ��¼\��� ��ď��������   2015������05·���27������ 15:03
�����������\���\\�����������\���
55. Posted by Cetak kartu ucapan murah   2015������06·���05������ 02:46
���³������\���\���\�돢������½������¼������µ­»��ӏ��̏�¡�»������������³������\���\���\�돢���������������³���������̏����������������������Ï��������·���������������¹��¡�
56. Posted by Jasa Cetak Stempel Warna (Mark Stamp) Murah di Rawamangun Jakarta   2015������06·���05������ 02:47
»��������������䏪���ӏ������������������ď���������������½��Џ��«������������µ­»��ӏ����ҏ����������я�����³��⏢�·�����я�������¡������������ď�����\���\���\�돢�������������������������ď�����������»��С���ӏ�����²�����𡭏��¹�����������Ï��������«��𡯏��������¹��¡�
57. Posted by DJ Exodus��� ( House Musik Dugem Nonstop Paling Terbaru dan terupdate )   2015������07·���03������ 07:58
���½������������������½��Џ��­���³���ޏ��������·��¡����Ï��������������������ޏ��Ð��¡��³������\���\���\�돢�̏�������㏢�������������������������·������������...
58. Posted by kata kata sakit hati   2015������08·���06������ 21:44
���³��������������¡�\·\������¼\�ߏ�����\���\���\������������¾���\���\���\���\���\���\���\��\���\¹��¡��������¹��¡�»���������������¼��ԏ��̏�돪�������������¾��Ï����я����ҏ��������������³���������̏��������­�����������������Ï��������¹�����㏢�������̏�����·��������쏢�������������������·���������­�����ď�����»�ߏ��������������¹��¡�
59. Posted by Percetakan Online   2015������11·���12������ 01:42
���½������������������½��Џ��­���³���ޏ��������·��¡����Ï��������������������ޏ��Ð��¡��³������\���\���\�돢�̏�������㏢�������������������������·������������...
60. Posted by cetak yasin online   2015������12·���29������ 16:49
���³��������������¡�\·\������¼\�ߏ�����\���\���\������������¾���\���\���\���\���\���\���\��\���\¹��¡��������¹��¡�»���������������¼��ԏ��̏�돪�������������¾��Ï����я����ҏ��������������³���������̏��������­�����������������Ï��������¹�����㏢�������̏�����·��������쏢�������������������·���������­�����ď�����»�ߏ��������������¹��¡�
61. Posted by Style Masa Kini   2016������01·���23������ 22:16
���³������\���\��\���\µ\���\���������»�������������¼���������������¼��ԏ�������돩�������²��Џ����Ï����쏢���������������Ï�𡭏������������������¹����
62. Posted by Kata kata mutiara cinta   2016������01·���26������ 06:15
���³������������¼�����돪��������������������³������������������¾�����������½������¼������µ­»��ӏ��������¹����
¹¹���·���µ������������¾���¹�����������¡�����������������������¡����������������������ҏ��������«���������·������
63. Posted by Kata Kata Remaja   2016������03·���06������ 23:25
»����������������������ď�����\���\���\�돢¡񏪲���¾�������������������µ­»��ӏ�����������¾��������������������̏����������������³���������̏����������������������Ï��������·���������������¹
64. Posted by Jasa Percetakan dan Jasa Fotocopy Murah 24 Jam Rawamangun Jakarta   2016������03·���31������ 01:09
���³��������������¡�\·\������¼\�ߏ�����\���\���\������������¾���\���\���\���\���\���\���\��\���\¹��¡��������¹��¡�»���������������¼��ԏ��̏�돪�������������¾��Ï����я����ҏ��������������³���������̏��������­�����������������Ï��������¹�����㏢�������̏�����·��������쏢�������������������·���������­�����ď�����»�ߏ��������������¹��¡�
65. Posted by Kata Kata Remaja   2016������04·���11������ 00:24
»������������«������������������²��ҏ��·���������������������������̏�¡��³������\���\���\�돢����������¾���������\·\���\��\�����������½������¼������¾��Ï����я��������¹���̏�¡����������̏�����������
66. Posted by Kata Kata Remaja   2016������05·���10������ 01:34
���³��������������¡�\·\������¼\�ߏ�����\���\���\������������¾���\���\���\���\���\���\���\��\���\¹��¡��������¹��¡�»���������������¼��ԏ��̏�돪�������������¾��Ï����я����ҏ��������������³���������̏��������­�����������������Ï��������¹�����㏢�������̏�����·��������쏢�������������������·���������­�����ď�����»�ߏ��������������¹
67. Posted by Kata Kata Remaja   2016������06·���08������ 06:32
����Ï��­���������쏢�«���²��������¡��³�������������²���������·������µ­»��ӏ�¡����Ï��������������������ޏ��Ð��¡��³����������\³\��Ώ����������ҏ��������폢�������������·�����ď�¡�»��������ď������������¹�����㏢�������������ď��������������­�����Џ����������������������������¹!!!!
68. Posted by Jasa Percetakan dan Jasa Fotocopy Murah 24 Jam Rawamangun Jakarta   2016������06·���21������ 06:10
���³��������������¡�\·\������¼\�ߏ�����\���\���\������������¾���\���\���\���\���\���\���\��\���\¹��¡��������¹��¡�»���������������¼��ԏ��̏�돪�������������¾��Ï����я����ҏ��������������³���������̏��������­�����������������Ï��������¹�����㏢�������̏�����·��������쏢�������������������·���������­�����ď�����»�ߏ��������������¹
69. Posted by Kata Kata Remaja   2016������07·���29������ 13:56
»������������«������������������²��ҏ��·���������������������������̏�¡��³������\���\���\�돢����������¾���������\·\���\��\�����������½������¼������¾��Ï����я��������¹���̏�¡����������̏�����������
70. Posted by Kata Kata Mutiara   2016������08·���03������ 02:44
����Ï��­���������쏢�«���²��������¡��³�������������²���������·������µ­»��ӏ�¡����Ï��������������������ޏ��Ð��¡��³����������\³\��Ώ����������ҏ��������폢�������������·�����ď�¡�»��������ď������������¹�����㏢�������������ď��������������­�����Џ����������������������������¹!!!!
71. Posted by Kata Kata Cinta   2016������08·���13������ 19:36
»��������������䏪���ӏ������������������ď���������������½��Џ��«������������µ­»��ӏ����ҏ����������я�����³��⏢�·�����я�������¡������������ď�����\���\���\�돢�������������������������ď�����������»��С���ӏ�����²�����𡭏��¹�����������Ï��������«��𡯏��������¹��¡�
72. Posted by Kata Kata Galau   2016������10·���01������ 19:39
���³��������������¡�\·\������¼\�ߏ�����\���\���\������������¾���\���\���\���\���\���\���\��\���\¹��¡��������¹��¡�»���������������¼��ԏ��̏�돪�������������¾��Ï����я����ҏ��������������³���������̏��������­�����������������Ï��������¹�����㏢�������̏�����·��������쏢�������������������·���������­�����ď�����»�ߏ��������������¹��¡�
73. Posted by Percetakan dan Fotocopy Murah Di Rawamangun   2016������10·���11������ 02:21
���³��������������¡�\·\������¼\�ߏ�����\���\���\������������¾���\���\���\���\���\���\���\��\���\¹��¡��������¹��¡�»���������������¼��ԏ��̏�돪�������������¾��Ï����я����ҏ��������������³���������̏��������­�����������������Ï��������¹�����㏢�������̏�����·��������쏢�������������������·���������­�����ď�����»�ߏ��������������¹
74. Posted by Kata Kata Bijak   2016������10·���12������ 18:46
����Ï��­���������쏢�«���²��������¡��³�������������²���������·������µ­»��ӏ�¡����Ï��������������������ޏ��Ð��¡��³����������\³\��Ώ����������ҏ��������폢�������������·�����ď�¡�»��������ď������������¹�����㏢�������������ď��������������­�����Џ����������������������������¹!!!!
75. Posted by Blog Remaja Indonesia   2016������10·���20������ 01:01
»��������������䏪���ӏ������������������ď���������������½��Џ��«������������µ­»��ӏ����ҏ����������я�����³��⏢�·�����я�������¡������������ď�����\���\���\�돢�������������������������ď�����������»��С���ӏ�����²�����𡭏��¹�����������Ï��������«��𡯏��������¹��¡�
76. Posted by Materi Pelajaran   2017������02·���10������ 17:17
»������������½�����������ҏ������������������������������¹��¡� �������������ď��̏��½������������������µ���½���������¾��Ï����я����Ң���Ï��­���·��������������������������������������¡�»������������½�����������ҏ������������������������������·�����������Ï�¡� ³�������������̏����������Ï�¡� �����������������ď�����������¾��Ï����я����Ң���Ï��­���¹��������¡� ���½���������������Ï���������������»���»��ӏ���
77. Posted by Flora Fauna   2017������02·���23������ 14:22
»������������³������\���\��\���\µ\���\��������ҏ��µ�������·���������������������¹��¡� ���½���·��������¡�»����������������������ď��̏��½���������������Ï���������������������㏢�­��돫����������ҏ��½�������������������������������������Ï����������ӏ������������������������������«����������������� ����Ï��­���·���³���ޏ�������¡� ����Ï��­������»�ߏ��������������������̏�������������������¡�
78. Posted by Mata Pelajaran   2017������03·���14������ 15:09

����Ï��­���·�����������������ď��������­�����������̏����������Ï�𡭏������������������¹��¡� ����������������������Ï��­���¹��������¡� ����Ï��­������»�ߏ��������������������������¹��¡�
79. Posted by Tebak Tebakan Lucu   2017������04·���20������ 10:44
���³������\���\��\���\µ\���\������������������������������«������µ­»��ӏ����ҏ����������я�������������¡� »������������³������\���\��\���\µ\���\��������ҏ�ď��������­������¹���������»²¹������������\������1���������������·�����ď�����������¹�����𡯏��������������������¹��¡� �������������ď��������³������\���\��\���\µ\���\������������������²���������·������»���»��ӏ����ҏ��·���������·�����ď�¡�
80. Posted by Belajar Bahasa Inggris   2017������04·���26������ 15:03
\������¼\¹\���\��\���\µ\���\������� ���½��������������������ߏ�����������²��ҏ��µ�����������������ď��������������ԏ��µ¹��ԡ돪㏢����µ­»��ӏ����ҡ���������я�������������������¡� �����������������ď�����������µ­»��ӏ����Ң���Ï��­���·���������������������µ����������
81. Posted by Zona Siswa   2017������05·���23������ 04:18
���³������¾��Ï����я����ҏ����졭��я��»�����������ď��������­�����������̏����������Ï�𡭏������������������¹��¡� ���½���·����������̏��«������¹��������Ï���
82. Posted by pasang iklan gratis   2017������05·���31������ 13:46
�������������ď��̏����Ѣ�����¹������¾��Ï����я�����������¾������������­�����Џ��������¹
83. Posted by Pantun Betawi   2017������07·���13������ 15:24
�������������ď��������³������\���\���\���\����������돫������ӏ��������¹��¡� ����Ï��­���·���³���ޏ�������¡�
84. Posted by Geografi   2017������07·���14������ 23:16
�����������Ï����������������̏����������Ï�𡭏������������������·�����ď�¡�
85. Posted by MURNI JAYA Printing   2017������09·���27������ 10:31
�������������������ď���������������½��Џ��«������������µ­»��ӏ����ҏ����������я�����³��⏢�·�����я�������¡������������ď�����\���\���\�돢�������������������������ď�����������»��С���ӏ�����²�����𡭏��¹
86. Posted by DJ Hepero Anyer (Free Download Lagu Mp3 Dugem House Music Nonstop Remix Terbaru)   2017������11·���26������ 08:03
���³������\���\��\���\µ\���\������������������������������«������µ­»��ӏ����ҏ����������я�������������¡� »������������³������\���\��\���\µ\���\��������ҏ�ď��������­������¹���������»²¹������������\������1���������������·�����ď�����������¹�����𡯏��������������������¹��¡� �������������ď��������³������\���\��\���\µ\���\������������������²���������·������»���»��ӏ����ҏ��·���������·�����ď�¡�
87. Posted by PERCETAKAN ANGKASA GRAFIKA   2017������11·���30������ 21:50
�������������������ď���������������½��Џ��«������������µ­»��ӏ����ҏ����������я�����³��⏢�·�����я�������¡������������ď�����\���\���\�돢�������������������������ď�����������»��С���ӏ�����²�����𡭏��¹
88. Posted by AZ Sejarah   2017������12·���20������ 21:54
»������������³������\���\���\�돢����돪����·µ­»��ӏ����ҏ����ԏ��������³���������������������­���������»�����я�¡�
89. Posted by DJ HENDRA R   2018������01·���30������ 23:43
�������������������ď���������������½��Џ��«������������µ­»��ӏ����ҏ����������я�����³��⏢�·�����я�������¡������������ď�����\���\���\�돢�������������������������ď�����������»��С���ӏ�����²�����𡭏��¹
90. Posted by Free Download Lagu Mp3 Remix Breakbeat Mixtape House Music Nonstop Remix Terbaru Dj Leymon   2018������04·���17������ 05:36
\������¼\¹\���\��\���\µ\���\������� ���½��������������������ߏ�����������²��ҏ��µ�����������������ď��������������ԏ��µ¹��ԡ돪㏢����µ­»��ӏ����ҡ���������я�������������������¡� �����������������ď�����������µ­»��ӏ����Ң���Ï��­���·���������������������µ����������
91. Posted by Download Lagu Musik Mp3, Barat, Islami, Minang, Musik Dj Terbaru dan Terpopuler   2018������05·���18������ 23:58
»������������³������\���\���\�돢����돪����·µ­»��ӏ����ҏ����ԏ��������³���������������������­���������»�����я�¡�
92. Posted by DJ Hepero Anyer ( Kumpulan House musik Dugem Nonstop Remix Terbaru dan terupdate )   2018������05·���25������ 08:11
\������¼\¹\���\��\���\µ\���\������� ���½��������������������ߏ�����������²��ҏ��µ�����������������ď��������������ԏ��µ¹��ԡ돪㏢����µ­»��ӏ����ҡ���������я�������������������¡� �����������������ď�����������µ­»��ӏ����Ң���Ï��­���·���������������������µ����������
93. Posted by Free Download Lagu Mp3 Dugem House Music Nonstop Remix Terbaru   2018������06·���04������ 05:56
���³������\���\��\���\µ\���\������������������������������«������µ­»��ӏ����ҏ����������я�������������¡� »������������³������\���\��\���\µ\���\��������ҏ�ď��������­������¹���������»²¹������������\������1���������������·�����ď�����������¹�����𡯏��������������������¹��¡� �������������ď��������³������\���\��\���\µ\���\������������������²���������·������»���»��ӏ����ҏ��·���������·�����ď�¡�
94. Posted by Print Percetakan Fotocopy Murah Dan Cepat Layanan 24 Jam Jakarta   2018������06·���13������ 08:22
»��������������䏪���ӏ������������������ď���������������½��Џ��«������������µ­»��ӏ����ҏ����������я�����³��⏢�·�����я�������¡������������ď�����\���\���\�돢�������������������������ď�����������»��С���ӏ�����²�����𡭏��¹�����������Ï��������«��𡯏��������¹��¡�
95. Posted by Cetak Buku Murah Jakarta Timur   2018������07·���30������ 22:45
»������������³������������������¾�������������������������¼��؏��ޏ��������·�����ď�¡��¹�����㏢����������������¾���������������³�����������̏���������������¾���������\��쏢�¼\��\��я��������¹��¡�
96. Posted by Free Download Lagu Mp3 Dugem House Music Nonstop Remix Terbaru   2018������11·���04������ 23:43
»������������³������\���\���\�돢����돪����·µ­»��ӏ����ҏ����ԏ��������³���������������������­���������»�����я�¡�
97. Posted by Jasa Fotocopy dan print Murah Cepat Layanan 24 Jam Jakarta   2018������11·���19������ 14:45
�������������������ď���������������½��Џ��«������������µ­»��ӏ����ҏ����������я�����³��⏢�·�����я�������¡������������ď�����\���\���\�돢�������������������������ď�����������»��С���ӏ�����²�����𡭏��¹
98. Posted by herfistore   2018������12·���22������ 05:46
�������������ď��̏����Ѣ�����·������¾��Ï����я�����»�����������������я�����¼��؏���¼������������������¹
99. Posted by pramuka baru printing   2023������04·���07������ 01:50
�������������������ď���������������½��Џ��«������������µ­»��ӏ����ҏ����������я�����³��⏢�·�����я�������¡������������ď�����\���\���\�돢�������������������������ď�����������»��С���ӏ�����²�����𡭏��¹
100. Posted by Jasa Print Online 24 Jam Jakarta   2023������04·���07������ 01:54
���³������\���\��\���\µ\���\������������������������������«������µ­»��ӏ����ҏ����������я�������������¡� »������������³������\���\��\���\µ\���\��������ҏ�ď��������­������¹���������»²¹������������\������1���������������·�����ď�����������¹�����𡯏��������������������¹��¡� �������������ď��������³������\���\��\���\µ\���\������������������²���������·������»���»��ӏ����ҏ��·���������·�����ď�¡�
101. Posted by Jasa Cetak, Print dan Fotocopy Murah Layanan 24 jam Kelapa Gading Jakarta Utara   2023������07·���18������ 22:48
»��������������䏪���ӏ������������������ď���������������½��Џ��«������������µ­»��ӏ����ҏ����������я�����³��⏢�·�����я�������¡������������ď�����\���\���\�돢�������������������������ď�����������»��С���ӏ�����²�����𡭏��¹�����������Ï��������«��𡯏��������¹��¡�

\³\���\���\������¹������

���¾�����:
URL:
  ¾��Ï����я�����µ­²�ޏ�¡� ���¾²�����¡�  �����   �����
  ³»
 
 
\��\���\���\���¼\���

Perl����¾������·����������½Ð������������µ������������������������������������¹��¡�
JavaScript���������������������������«���������������»�����я�¡�
Ruby�����������������я��ߏ����я��«�����я��ߏ����я��������¹��¡�
Python�����������Џ��·���������������¹��¡�
ActionScript����쏪���叢�·���������������������µ��������¡�
Java�����Ð���Ð���Ð���Ð���Ð��¡�
������µ������������������������­���������»�����я�¡�

github
µ­»��ӏ�������
��돪����·µ­»���
Archives
  • \\\\\\\\