Kamis, 31 Januari 2013

Boku wa Tomodachi NEXT episode 3 Subtitle Indonesia
Free download anime subtitle indonesia dan dukung terus fansub terkait.


Kazegami Fansub : 
http://rizky-kazegami.blogspot.com/














480p : [DOWNLOAD] | [Mirror]




720p : [DOWNLOAD]

Tamako Market Episode 4 Subtitle Indonesia


Tamako Market Episode 4 Subtitle Indonesia

Silahkan download gratis video Tamako Market Episode 4 subtitle indonesia untuk Tamako Market 5 Subtitle Indonesia silahkan hitung 7 hari dari waktu anda mendownload



Download Tamako Market Episode 4 Subtitle Indonesia by
AWSubs/Wardhanime.net


[Download here]

Selasa, 29 Januari 2013



Silahkan download gratis video Love Live! School Idol Project Episode 4 subtitle indonesia untuk Love Live! School Idol Project Episode 5 Subtitle Indonesia silahkan hitung 7 hari dari waktu anda mendownload 

Download Love Live! School Idol Project Episode 4 Subtitle Indonesia by
AWSubs/Wardhanime.net


[Download Here]

Magi Episode 16 Subtitle Indonesia

Magi Episode 16 Subtitle Indonesia


Silahkan download gratis video Magi Episode 16 subtitle indonesia untuk Magi Episode 17 Subtitle Indonesia silahkan hitung 7 hari dari waktu anda mendownload :)

Download Magi Episode 16 Subtitle Indonesia

[Download Here]

Jumat, 25 Januari 2013

Ginga e kickoff episode 27 Subtitle Indonesia

Ginga e kickoff episode 27 Subtitle Indonesia
Free download Anime Subtitle Indonesia dan terusdukung fansub terkait.

Kazegami Fansub X  Zagarer 
 http://rizky-kazegami.blogspot.com  |  Zagarer.com













480p : [Exoshare] | [Animeaccses]


720p : [Exoshare] | [Animeacces]




Rabu, 23 Januari 2013

Hi,

When we often try to learn a microcontroller, the first thing we learn is to write "hello world" no doubt about that. But this time I will teach you to set and clear a Port.

Why AVR when 8051 series microcontrollers are easy?
1. AVR has inbuilt 10-bit ADC, PWM, SPI, I2C and inbuilt EEPROM.
2. AVR is much faster since its RISC.
3. AVR has inbult Flash which has features of bootloader.
4. AVR is capable of being programmed onboard itself rather then removing (like in 89c51 etc).
5. Atmel Studio 6 is a freeware. Where as 8051 series microcontroller softwares are not all free.

Things we need to put in place first:
1. Install Atmel Studio 6.0
2. Download datasheet of any AVR microcontroller (Atmega16 in my case)
3. Buy a AVR programmer (usb will be great for latest PC)
4. Learning to write to a new program and making your first AVR controller programming successful.

First,
Install the Atmel Studio 6.0 properly. It is a freeware designed specially for Atmel microcontrollers.

Secondly,
Construct a circuit as below to keep the microcontroller ready to be Programmmed. This circuit below is the minimum requirements of the AVR microcontroller to start normally.

Components used:
1. Atmega16A
2. 12MHz Resonator
3. Tactile Switch for reset
4. 10k ohms (R1)
5. 10uF Electrolytic (C1)
6. 0.01uF Ceramic (C2)
7. 6 Pin berg male (For AVR programming interface)

Best thing about this controller is you do not need to remove the microcontroller to get programmed. You can hard solder it and program it onboard itself. This is my model for the circuit below:


So after soldering all the components we are all set to start with Atmel Studio.

So Lets open Atmel Studio: (Check the screen shot)

So after you get the screen click on new project and type the project name as you want. Remember to select only GCC Executable project C/C++


Once this settings are done click OK and you now choose your desired microcontroller. Here ATmega16A falls in megaAVR, 8-bit. So select it. On right hand side you can see the datasheet link as well as devices supported by the ATMEL studio 6 for this microcontroller. The programmer I have mentioned falls in STK 500 category.

After selecting the microcontroller, Click ok. You are now ready to write the program. Atmel studio is so smart that it will give you template of basic c file as well as it will guide you to write instructions all the way long. check the screen shot below :

Since now you're ready to write your first C file for AVR microcontrollers, coming back to start. Lets write code to turn Bit 0 of Port D on and off with 1 second delay.

Here is the C file below:

/*
 * testavr1.c
 *
 * Created: 1/24/2013 12:13:14 AM
 *  Author: MCF009
 */


#include "avr/io.h"   //Contains AVR register details and address
#include "util/delay.h" //Contains delay routines.

int main(void)
{
    DDRD=0x01; //Set direction of port D bit 0 as output.
    while(1) //Infinite loop
    {
        //TODO:: Please write your application code
        PORTD=0x01; //Write to port D bit 0
        _delay_ms(1000); //1 sec
       
        PORTD=0x00; // Clear port D
        _delay_ms(1000); //1 sec
    }
    return 0;
}

Now to compile check the screen shot below. If there are no errors you will get 0 errors in the output console(build). So when successful download the hex file using your usb programmer and check for results on port D bit 0. The pin will be setting high and low at 1 second delay.



You are now officially a AVR programmer. Congratulations!

Thank you for reading.

Macjan Camilo Fernandes (R & D)

Selasa, 22 Januari 2013

Boku wa Tomodachi NEXT episode 2 Subtitile Indonesia

Transalator : Aditya 
Boku wa Tomodachi NEXT episode 2 Subtitile Indonesia
Free download anime subtitile Indonesia Dan terus dukung fansub terkait.



Kazegami Fansub: 
http://rizky-kazegami.blogspot.com/











480p : [DOWNLOAD]



720p : [DOWNLOAD]






Minggu, 20 Januari 2013

  WARNING: BEFORE STARTING MAKING THIS CIRCUITS POSSIBLE I WILL LIKE YOU TO KNOW THAT THIS CIRCUIT HAS BEEN TESTED AND IS WORKING WELL. ANY DAMAGE TO YOUR CONTROLLER DUE TO WRONG CONNECTIONS IS UP TO YOU.

Cooking food is a very essential when comes to breakfast, lunch and diner. Sometimes we multitask so much we forget time we cooking for hence over cooking our food hence wasting biogas.

I have made this kitchen timer so that we know that time is up! come and check the food!

The interface is simple. There are 6 Switches. 4 Switches to configure alarm at timing 5mins, 10mins, 15mins, 20mins, and rest two switches are to top the alarm and to reset the device.

Components required for power supply:

1. Fuse 500mA + Fuse case (F1)
2. Transformer 12V -0V at 500mA (T1)
3. 1N4007 Diode  (D1, D2, D3, D4)
4. 220uF ,63V Electrolytic (C1)
5. 10uF ,63V Electrolytic (C3)
6. 0.1uF Ceramic (C2)
7. LM7805 on heatsink.


POWER SUPPLY FOR THE CIRCUIT

Components required for main design:

1. NE555 (IC2) on 8 -Pin DIP Base
2. AT89C4051 on 8 -Pin DIP Base (IC1)
3. 2N2222 (Q1 , Q2)
4. 12V Buzzer (Z1).
5. Tactile Switches (SW1, SW2, SW3, SW4, SW5,SW6)
6. 51K ohms 1/4Watts (R8)
7. 47K ohms 1/4Watts (R10)
8. 560Ohms 1/4Watts (R11)
9. 220Ohms 1/4Watts (R9)
10. 1K Ohms 1/4Watts (R12)
11. 10K Ohms 1/4Watts (R1, R2, R3, R4, R5, R6,R7)
12. 10uF 63V Electrolytic (C1, C2,C5)
13. 0.1uF Ceramic (C6)
14. 22pF ceramic (C3, C4)
15. 8MHz Crystal


MAIN DESIGN:( The circuit has been Tested, Verified and is working)




Source Code for AT89C4051: (The code is tested and is working)

//START
#include "REGX51.H"

#define clock P3_2
#define start_5mins P1_7
#define start_10mins P1_6
#define start_20mins P1_5
#define start_30mins P1_4
#define stop_sw    P1_3
#define buzzer P3_7

int mins, target=0;
int i, s_timer, count;
void count_check(void);
void switch_check(void);

int main()
{
    P1=0;
    P3=0;

    while(1)
    {     start_5mins=1;
         start_10mins=1;
         start_20mins=1;
         start_30mins=1;
         stop_sw=1;
         clock=1;
         switch_check();
         if(s_timer==1 && clock==0)
         {
              count++;
             while(clock==0);
             count_check();
           
         }
         if(stop_sw==0  &&  s_timer==0)buzzer=0;
    }

    return 0;
}
void count_check(void)
{
   if(count==60)
   {
       count=0;mins++;
    }
    if(mins==60)
    {
        mins=0;
       
    }
    if(target==mins)
    {
        mins=0;    

        count=0;
        s_timer=0;
        target=0;
        buzzer=1;
    }
}

void switch_check(void)
{
          if(start_5mins==0)
         {
             s_timer=1;
            target=5;
         }
         if(start_10mins==0)
         {
             s_timer=1;
            target=10;

         }
         if(start_20mins==0)
         {
             s_timer=1;
            target=20;

         }
         if(start_30mins==0)
         {
             s_timer=1;
            target=30;

         }
}


//END

Working behind the circuit:

The circuit uses 1Hz pulse precisely generated by 555Timer in astable mode to do the calculations of timer. Since the count for 30mins is large enough we use external clock of 1Hz to make our calculations simpler. The switches are used to set the minutes you want to keep the cooking on or you want to check you gas on, then when the time is up the alarm gets sounded. It will remain on till you go and switch it off. If the food is not cooked yet. Consider a precise time it will take to cook and set the alarm again. When the alarm rings your food will be ready. Then turn the alarm off and the Gas stove off.

Save the energy by using this simple methods. You can turn off this device once your cooking work is done hence saving energy on circuit itself.


Thank you for reading. Hope this idea is helpful to you.

Macjan Camilo Fernandes

Firmware Development Engineer (R & D)



 WARNING: BEFORE STARTING MAKING THIS CIRCUITS POSSIBLE I WILL LIKE YOU TO KNOW THAT THIS CIRCUITS HAS BEEN TESTED AND ARE WORKING WELL. ANY DAMAGE TO YOUR CONTROLLER DUE TO WRONG CONNECTIONS IS UP TO YOU.

Hi,

I have come across many difficulties during interfacing my other circuits for the AT89xxx series. I will give you basic circuits you require to use microcontroller to work properly.

First, we need a good power supply circuit!
What features do we need in a power supply circuit???
1. Voltage requirements (mostly +5Vdc)
2. Reverse Polarity protection
3. A proper step down ac to dc conversion circuit.
4. High voltage protection.



Secondly,
The basic circuit to make microcontroller AT89C51/AT89S51/AT89C52/AT89S52 work at start is given below (Here our main aim is only to start a controller assuming there is no external RAM).
(Very Important: After lots of research in this circuits I have finally concluded all the microcontrollers in 80x51 series needs external 10k ohms Pull Up resistor even when the below transistor drivers are into action. Do not forget to use them)

And to interface microcontrollers AT89C2051 and AT894051 we keep the circuit same accept the pins change this time.

The above circuits are related to basics to start a microcontroller. But we need more like interfacing with IO's and driving some drivers.

Lets start with Interfacing input to the microcontroller. 
There are lots of ways you can do that. I usually use two methods.
1. Pull up resistor type.
2. Transistor driver type.
Transistor driver type has high succesful rate of driving inputs and outputs of microcontrollers. The input can be another microcontroller ouput or driver output or any other logic circuit.


 The above circuit will work only if the input signal is digital to the transistor. Value of R1 and R2 are calculated according to maximum ratings. Assuming the source of the signal and transistor Q1 are same.
R2 = Vin/Ib
where Vin is digital input voltage (+5v) , Ib is ideal base current to drive Q1 (5mA).
R2 = 5 / 0.005 = 1k ohms
To calculate R1 we need to know what is the ideal drive current for At89c51 microcontroller. If you check our the datasheet you will find it is 20mA.
So R1 = Vcc/Imax = 5/.020 = 250Ohms

In this configuration, when the input at transistor is high (+5V), the input at the microcontroller will be low (0V). And when input at transistor is low (0V), the input at the microcontroller will be high (+5V).  If the voltage varies at the input of R2. You need to see the max value of voltage there and adjust the value of R2 according to the above formula.

 Now lets consider how to drive outputs on this microcontroller.

We need to consider everything here. Typically the output varies from 2.4V to 4.5V here. You need to find out which port gives what voltage after constructing basic circuit on bread board.

Assuming voltage 2.4V lets construct our output driver for 5V logic circuit.


This is also similar circuit as input accept the voltages are different here.
In this case, the input voltage to the transistor now varies from 2.4V to 4.5V depending on full load over the IC.
Lets assume the output of the microcontroller is 2.4V.
R2 = 2.4/0.005 = 480Ohms
Since we gonna drive TTL logic of +5V we will assume output at Vcc level at 25mA( Maximum current of the device you going to drive at +5V).
R1 = 5/0.025 = 200Ohms

In this configuration, when the input at transistor is high (+5V), the digital output will be low (0V). And when input at transistor is low (0V), the digital output will be high (+5V).  If the voltage varies at the input of R2. You need to see the max value of voltage there and adjust the value of R2 according to the above formula.

Your output driver is ready. Have fun interfacing circuits to 8051 series of microcontrollers.

Thank you for reading.

Macjan Camilo Fernandes

Firmware Development Engineer (R & D)



Jumat, 18 Januari 2013


!!WARNING!! High Voltage Connections inside. Beware during the process. I am not responsible for any short circuit of damage to you. Do it on your own risk.

The circuit above has been tested and is working well.

 
Power Saving has been the biggest issue so far, Sometimes people forget to turn off the lights on sta
ircase at night. Imagine a skyscraper of 100floors. Staircase must be consuming around 500W+ of power itself during night time.

Automatic PIR Light technology helps to save power by 60% during night time.

A normal PIR light costs like around Rs.1000 to 15000. I will explain you the circuits behind it. But use it for your own purpose. Do not SELL.



Test included: 45W mercury bulb. 230V AC

This circuits has two loops. One loop contains the low voltage PIR sensor circuit. The other loop contains 230V circuit.

The low +5V is obtained by a simple circuit including a Bridge rectifier.(D1,D2,D3,D4) Coupled with capacitor filter C1 to bypass any AC ripples in dc output from the bridge rectifier.

LM7805 Regulator IC is a linear based regulator system. Standardized to give +5V output at any input >+5v to +18v at 1A current max support.

The PIR (Passive Infra Red) Sensor also called Motion detector Sensor is our main source of detecting human motion.

To make things simple a PIR sensor acutally calculates difference in infra red radiation in a given space. Human skin radiates some of infra red rays causing a trigger.

This calculations are not important for your knowledge. But there are modules already available for your applications where when detecting human it will directly set a high output for your processing purpose.

This high output is then given to the base of the transistor Q1 (2N2222) power transistor NPN with a current limiting resistor R1 (10k). The relay is connected across the collector.

Relay specifications:
 

G5LE 5VDC 10A max 250V AC switching rating. DC upto 50V

The diode D5 (1n4148) is a fast switching diode, which is used as a Flyback diode to protect the circuit from back emf from the relay.

The connections on relay are made in such a way that when the motion is detected the relay will click as if you are manually turning a switch ON.

The light will remain on till the motion is detecting. When motion stops, the light will remain on for 10 Seconds and go off. Which can be adjusted on the PIR circuit. PIR sensors are available on www.robokits.co.in and www.onlinetps.com

PROS:

1. You save 60% power on high watt bulbs daily on staircases and other less crowdy lanes

2. Sensor is very accurate to slight motion even in dark so advantage for theft protection systems.

3. Since its relay driven. Changing the type of relay can improve your driving load upto 450v AC max. at 50Amps. You can also make use of TRIAC'S for higher voltages. But I do not recommend that for basic home circuits.

5. Components are widely available and are very common.

6. Cheaper than PIR lights available in market.

CONS:

1. PIR sensor expensive. Rs 400+

2. If you stand still the motion sensor is useless.

3. Transformer consumes 2% of power everytime its ON

4. You have to switch it off in the morning (can be controlled using LDR sensing circuits for day factor)

5. This circuit will turn off the light so total darkness around till you come in sensor range ( can be improved by providing another relay with LED's for atleast some light)

Good luck saving power.


I will improvise my designs in the next post. Thank you for reading.

Macjan Camilo Fernandes

Firmware Development Engineer (R & D)
pria idaman wanita
Hai, terimakasih telah berkunjung ke blog Tips Mencari Pacar. Hari ini saya menemukan sebuah artikel menarik tentang sifat dan ciri-ciri pria idaman wanita. 10 sifat yang membuat seorang pria menjadi menarik di mata wanita antara lain cerdas, suka tantangan, humoris, perhatian, dan masih ada 5 sifat lainnya yang wajib kamu baca di artikel berikut. So guys, apakah kalian mempunyai ciri-ciri seorang pria idaman?



10. Kecerdasan
Sadarkah Anda, saat ada pria yang cerdas dan tidak sombong, kita akan melihat ia sebagai seseorang yang sangat charming meski penampilannya tidak ikut tren sekalipun? Seorang rekan Kompas Female bahkan sempat tergelitik dan tersenyum-senyum saat mendengar seorang pria yang ia sukai berbicara menggunakan bahasa asing. Teman lain lagi malah jatuh cinta kepada suaminya karena pengetahuan si suami yang begitu banyak tentang sejarah kota-kota di dunia. Tentu, seorang pria terlihat lebih menarik jika ia bisa mengutarakan kecerdasannya dengan cara yang rendah hati, tidak sombong, dan bukan merendahkan orang lain.


9. Tantangan
Menurut situs askmen.com, wanita ternyata juga suka akan tantangan. Tak semua wanita suka dikejar-kejar. Kadang perempuan pun akan merasa tertarik kepada pria yang sedikit jual mahal. Hm, sama seperti pria yang juga suka wanita yang sedikit jual mahal, ya?


8. Perhatian
Yang ini sudah jelas. Perempuan sangat suka perhatian dari pria. Bahkan, menurut askmen.com, perempuan yang diberikan perhatian, seperti kata-kata bahwa ia tak suka Anda pergi dengan pria lain saja sudah cukup membuat Anda merasa diperhatikan. Meski hadiah-hadiah lucu juga akan membuat Anda merasa amat diperhatikan. Plus, perempuan suka ketika seorang pria memerhatikan detail kecil dalam dirinya, seperti perubahan dalam dandanan, baju yang baru Anda pakai, dan lainnya. Menurut mereka, pujian akan hal-hal kecil ini merupakan bentuk perhatian yang lebih menyenangkan ketimbang harus mendengar perempuan mengomel seharian. Hm....

Sudah bosan jomblo tapi usaha dapetin cewek gagal terus? Baca ini dan kamu tidak akan pernah gagal lagi!


7. Kedermawanan
Konon, ini merupakan salah satu cara lain pria membuat wanita tertarik (selain ketulusan hatinya). Perempuan-perempuan cantik tentu dengan sangat mudah mendapatkan apa yang ia mau dari pria mana pun. Jadi, mereka akan berusaha kreatif. Tidak dengan membanjiri perempuan cantik yang ia suka dengan hadiah, tetapi menunjukkan kedermawanan. Ternyata, kedermawanan seorang pria terhadap orang yang kurang beruntung bisa jadi daya tarik yang cukup besar. Bagi pria, jika ia mengajak Anda melakukan aktivitas sosial semacam ini tak hanya membuat Anda jatuh cinta, tetapi sekaligus membantu orang lain.


6. Jago dalam aktivitas percintaan
Tak cuma pria, wanita juga suka aktivitas percintaan. Wanita akan merasa ketergantungan pada pria yang jago dalam urusan percintaan, yang membuat mereka bisa merasa melayang, dan mengajar mereka untuk merasa sangat luar biasa. Jadi, tak heran kalau di kamarnya Anda menemukan buku-buku tentang cara memuaskan wanita. Atau ketika Anda sedang meminjam laptopnya, di kolom search engine muncul keyword seputar cara memuaskan wanita, atau cara berciuman yang benar, atau mungkin cara memanjakan wanita.


5. Romansa
Siapa yang mau berada dalam hubungan yang hambar. Sebatas ada di sisi seseorang saja tidak cukup. Anda butuh keintiman, konektivitas, ada untuk satu sama lain secara utuh, baik fisik maupun psikologis. Bisa ada untuk satu sama lain dan bisa saling berkomunikasi dalam segala lapisan. Mengerti Anda dan kesukaan Anda. Tidak malu untuk mengungkapkan isi hatinya dalam bentuk yang mungkin dinilai norak olehnya sekalipun, seperti membuatkan lirik lagu, atau puisi, atau hal-hal lainnya. Hm, menyenangkan, ya?



4. Dominasi
Semandiri apa pun seorang wanita, ia akan merasa lebih nyaman dan aman jika ia tahu pasangannya bisa dipercaya dan cukup kokoh untuk ia sandari. Tanpa disadari, wanita ternyata memiliki ketertarikan terhadap pria yang sedikit dominan. Wanita ternyata akan merasa tertarik kepada pria yang tahu apa yang ia inginkan dan tidak ragu untuk mengejarnya. Namun, tentu dominasi yang dimaksud bukan tipe yang asertif dan membuat si wanita merasa terintimidasi atau tak nyaman, atau yang melewati batas si wanita. Tetapi, lebih pada dominasi dalam hal gairah dan tujuan hidup, bukan posesivitas.

3. Berkelas
Ternyata, perempuan juga merasa tertarik kepada pria yang memiliki nilai berkelas dalam hal-hal kultural, seni, etiket, film, musik, makanan, atau hal-hal lainnya tanpa terlihat membosankan.

2. Humor
Humor yang senada adalah salah satu hal penting dalam hubungan. Dalam situs askmen.com, humor merupakan salah satu kunci untuk menarik perhatian seorang perempuan dan memperbaiki kesalahan saat sudah menjadi kekasih si wanita incaran. Saran yang diutarakan situs itu kepada para pria adalah dengan menjaga humor yang sedikit pedas, sedikit sombong, dan sedikit percaya diri yang menarik, seperti gaya Pierce Brosnan dalam film The Thomas Crown Affair atau Tom Cruise dalam film Top Gun. Konon kata mereka, humor seperti ini membuat perempuan gemas.

1. Seru
Siapa sih yang senang duduk diam berdampingan selama berjam-jam. Ternyata, menurut survei yang dilakukan situsaskmen.com itu, posisi pertama yang dicari dalam sosok pria yang menjadi idaman adalah pria yang seru, suka hal-hal penuh petualangan, tidak biasa, dan menyenangkan. Sebab, menurut mereka, pria yang senang hal-hal seru semacam ini bisa menciptakan suasana baru dan tidak terpaku pada rutinitas membosankan. Ternyata, menurut survei itu, wanita suka sesuatu yang menggugah perasaan mendebarkan dan baru. Sesuatu yang terlalu terpaku dan monoton membuat wanita bosan.


Demikian posting kali ini tentang Sifat dan Ciri-Ciri Pria Idaman, semoga menginspirasi dan membantu kamu untuk membentuk karakter menjadi seorang pria idaman wanita yang sejati. Dan jika kamu  ingin  mendapatkan wanita yang selama ini kamu idam-idamkan, maka kamu wajib belajar langsung dari Ronald Frank, sang Pakar Percintaan Indonesia, websitenya bisa dikunjungi disini.


Sampai jumpa di postingan berikutnya Guys!
Cheers..
:)



Kamis, 17 Januari 2013

Tokumei Sentai Go-Busters 39-42 Subtitle Indonesia

Tokumei Sentai Go-Busters Episode 39-42 Subtitle Indonesia

Silahkan download gratis video Tokumei Sentai Go-Busters Episode 39-42 Subtitle Bahasa Indonesia.

Download Tokumei Sentai Go-Busters Episode 39-42 Subtitle Bahasa Indonesia
by 390-fansub.com

Episode 39 SD [Am4share] HD [Am4share]
Episode 40 SD [Am4share] HD  [Am4share
Episode 41 SD [Am4share] HD [Am4share]
Episode 42 SD [Am4share] HD [Am4share]

Kamen Rider Wizard Episode 14-16 Subtitle Indonesia

Kamen Rider Wizard 14-16 Subtitle Indonesia

Silahkan download kamen rider wizard episode 14-16 subtitle indonesia gratis

Download Kamen Rider Wizard 14-16 Subtitle Indonesia
by 390-fansub.Com

Download SD
Episode 14 [Mediafire] | Episode 15 [Mediafire] | Episode 16 [Mediafire]

Rabu, 16 Januari 2013


sales promotion girl indonesia
Jika kamu sering berkunjung ke pameran komputer atau pameran automotif, kamu pasti bertemu dengan banyak wanita cantik yang bekerja sebagai Sales Promotion Girl atau SPG. Ada kalanya kamu ingin berkenalan dengan salah satu SPG tersebut karena mungkin saja dia adalah calon pasangan idealmu.

Lalu bagaimana cara melakukan nya?

Tanpa diduga-duga, ternyata caranya sangat sederhana.

Hal pertama yang harus kamu lakukan adalah jalan didepan sang SPG secara perlahan. Jangan melihat sang SPG dan bertingkah lakulah cuek.

Lalu setelah itu, sang SPG pasti menawarkan produknya atau sekedar memberikan brosur kepada kamu.

Saat ia memberikan brosur atau menawarkan produk, berhentilah berjalan dan bicaralah kepada sang SPG. Tanyakan tentang produknya selama 3 menit.

Setelah itu, bicarakan hal-hal yang menyangkut pribadi sang SPG seperti:

“Kamu sudah jaga disini dari tadi?”

“Kamu biasa SPG dimana saja?”

“Kamu selesai jaga jam berapa?”

“Cape ga sih jadi SPG?”

Kalimat diatas berfungsi sebagai umpan untuk melihat apakah sang SPG adalah orang yang terbuka untuk anda ajak kenalan.

Cinta akan selalu tampak kejam jika kamu belum tau rahasia ini 

Jika saat anda bertanya hal-hal pribadi seperti diatas lalu sang SPG menyambut hangat dengan jawaban, itu tanda bahwa anda dapat berkenalan dengan nya, dan melanjutkan ke pertemuan selanjutnya.

Setelah itu, ajaklah ia berbicara sejenak mengenai kegiatan SPG nya, lalu tanyakan nama.

Sayangnya, anda tidak dapat berbicara terlalu lama dengan sang SPG karena ia sedang bekerja dan diawasi oleh manajer nya.

Mintalah kartu nama sang SPG dan katakan bahwa kamu akan menelpon nya untuk bicara lagi dengan nya.

Jika pada kartu namanya tidak tertera nomor handphone pribadinya, katakan kepadanya untuk menuliskan nomor nya agar kamu bisa menghubungi nya kembali.

Selamat Mencoba!

Sumber Artikel 



Naksir seseorang tapi bingung cara membuatnya jatuh cinta? ..nih CARA GAMPANG membuat wanita jatuh cinta


Demikian tips berkenalan dengan SPG  dari Ronald Frank, semoga menginspirasi dan membantu kamu untuk kenalan dengan SPG cantik yang kamu taksir. Jangan lupa untuk dipraktekkan, karena teori tanpa praktek sama aja bohong. Oke sob?  Kunjungi terus blog Tips Mencari Pacar untuk mendapatkan 'pencerahan' seputar kehidupan percintaan kamu.




Type: TV

Episodes: 12

Status: Currently Airing


Producers: Media Factory, Magic Capsule, AIC Build
Genres: Comedy, Romance, School, Seinen
Duration: 24 min. per episode
Rating: R+ - Mild Nudity
Synonyms: Boku wa Tomodachi ga Sukunai 2nd Season
Japanese: 僕は友達が少ない NEXT



Kazegami Fansub : 
http://rizky-kazegami.blogspot.com




480p : [DOWNLOAD]

720p 10 bit : [DOWNLOAD]

Minggu, 13 Januari 2013

pacar yang cantik


Apakah kamu sedang jomblo dan mencari tips untuk mencari pacar (tentu saja pacar yang cantik) dalam waktu yang cepat dan dalam tempo yang sesingkat-singkatnya? (*lebay mode on) Hehehe...
Coba kamu simak artikel berikut dari perihalcinta.com, semoga artikel ini bisa membantu kamu untuk mendapat pacar cantik seperti yang kamu idam-idamkan. 










Bagaimana sih cara cepat dapat pacar cantik?

Banyak pria INGIN memiliki pacar cantik, namun kerap memiliki 3 kendala, yaitu:

1. Tidak PERCAYA DIRI,
2. Tidak tau DIMANA mencari dan menemukan wanita cantik,

SOLUSI nya tentu saja 3 langkah sederhana, yaitu:

Tahap I: Bangun Kepercayaan Diri,
Tahap II: Temukan tempat yang banyak terdapat Wanita Cantik,

Mari kita bahas satu per satu.

Tahap I: Bangun Kepercayaan Diri


Banyak pria TAU sebenarnya mereka MAMPU memiliki wanita cantik. Hanya saja ada beberapa FAKTOR yang membuat mereka tidak percaya diri dan merasa TIDAK LAYAK memiliki wanita cantik, yaitu:

+ Fisik, Usia dan Materi tidak mendukung,
+ Penolakan yang dilakukan wanita dimasa lalu,
+ Komentar buruk orang lain,
+ Menunggu situasi yang tepat.
Pada kenyataan nya, siapa saja PUNYA HAK memiliki pacar wanita cantik tak peduli seperti apapun mereka.

Gak pernah direspon sama orang yang dicinta? baca teknik percintaan ini,  semua lancar!

Coba saja pergi ke MALL terbesar dikota anda, lalu duduk di foodcourt pukul 12.00 – 01.30 siang dan 5.00 – 6.30 sore, maka anda akan melihat banyak bukti dimana pria biasa sedang berjalan dengan pacar cantiknya.

Faktor utama keberhasilan anda untuk memiliki pacar cantik berawal dari kepercayaan diri anda, yang nantinya terpancar dari cara anda ber-interaksi dengan wanita.

Lalu apa yang harus anda lakukan untuk memiliki kepercayaan diri?

Teruskan membaca.

Tahap II: Temukan tempat yang banyak terdapat Wanita Cantik


Jika anda ingin beli baju, anda tidak mungkin mencarinya di toko sepatu.

Hal ini juga berlaku dalam mencari wanita cantik yang kelak menjadi pacar anda.

Banyak Pria sulit menemukan wanita cantik yang mereka inginkan karena mereka mencarinya DITEMPAT yang salah.

Anda HARUS TAU JELAS seperti apa wanita idaman anda, dan tempat mereka berkumpul agar anda MUDAH menemukan mereka.

Anda tidak mungkin menemukan WANITA KARIR di sekolah menengah umum bukan?

4 faktor yang harus anda perhatikan agar anda dapat menemukan wanita cantik yang ideal anda adalah:

+ Usia
+ Interest
+ Budaya
+ Latar Belakang

Dengan lebih dahulu meng-identifikasi ketiga hal tersebut, anda akan tau LEBIH JELAS dimana tempat untuk menemukan wanita cantik yang sesuai keinginan anda agar anda tidak salah tempat.

Tahap III: Tau cara membuat wanita cantik Jatuh Cinta


Jika anda teliti, anda tidak akan sulit melihat PROSES membuat wanita cantik menjadi pacar anda. Proses tersebut adalah:

+ ATTENTION (perhatian),
+ CONNECTION (hubungan), dan
+ COMMITMENT (keterikatan)

Pelajari cara memikat wanita idaman anda di sini

Proses ini bermula dari PERHATIAN wanita terhadap anda. Dari perhatian, terjadilah Interaksi. Interaksi tersebut akan membawa anda dan dia untuk memiliki HUBUNGAN dan kesamaan-kesamaan. Lalu dari KONEKSI yang semakin dalam, timbullah rasa untuk ber-KOMITMEN dengan anda.

Jadi, TAHAP nya adalah:

ATTENTION > CONNECTION > COMMITMENT

Untuk menjalankan langkah tersebut dengan mulus, anda perlu dipersenjatai 4 teknik dasyat, yaitu:

+ Story Telling (Seni bercerita)
+ Flirting (Seni menggoda)
+ Kino (Seni menyentuh wanita)
+ Talent Show (Seni mempertunjukan talenta)

Sudah bosan jomblo tapi usaha dapetin cewek gagal terus? Baca ini dan kamu tidak akan pernah gagal lagi!

Demikian tips cinta hari ini dari Ronald Frank, semoga menginspirasi dan membantu kamu untuk dapetin cewek yang bener-bener kamu inginkan. Kunjungi terus blog Tips Mencari Pacar untuk mendapatkan 'pencerahan' seputar kehidupan percintaan kamu.






Cardcaptor Sakura BD episode 1 Subtitle Indonesia

Cardcaptor Sakura BD episode 1 Subtitle Indonesia
 Type: TV
Episodes: 70
Status: Finished Airing
Aired: Apr 7, 1998 to Mar 21, 2000
Producers: Madhouse Studios, Geneon Universal EntertainmentL, NHK, Kodansha, Sogo Vision, NelvanaL, YTV, NHK Enterprises
Genres: Adventure, Comedy, Drama, Magic, Romance, School
Duration: 25 min. per episode
Rating: PG - Children



                                                                  Kazegami Fansub :
                         http://rizky-kazegami.blogspot.com/






Kamis, 10 Januari 2013

One Piece Movie Z | One Piece Movie 12 Z HD

One Piece Movie 12 Movie Z

Film One Piece movie Z ini baru akan tayang di Jepang bulan Desember sehingga untuk link download One Piecce Movie Z baru ada versi cam, untuk One Piece Movie Z English Subbed maupun One Piece Movie 12 Z Subtitle Indonesia. Biasanya kalau movie +-9 Bulan dari jadwal tayang di Jepang baru muncul link downloadnya. Jadi harap bersabar saja ya.

Trailer One Piece Movie Z / One Piece Movie 12 Z



Download One Piece Movie Z Kualitas HQ

[Download Here]

Bleach Episode 46 Subtitle Indonesia

Bleach Episode 46 Subtitle Indonesia


Video Anime Bleach Episode 46 Subtitle Indonesia dan Bleach Episode Terbaru dapat di download di NarutoBleachLover.Net ditunggu saja keluarnya. ( 5.0 )

Download Bleach Episode 46 Subtitle Indonesia by funfansub.blogspot.com

Password : funfansub

[Hemat]

Line Follower Robot Prototype

Introduction

A line Follower robot is a simple mobile robot that follows a line drawn on a floor. For example a black colored floor with a white line drawn as shown in the next figure. The idea behind the line follower robot is using light sensor. When light is incident on white line, the light is reflected and the light sensor detects the reflected light and this signal is used by microcontroller to know that the robot is following the line. When light is incident on black floor, all light is absorbed and nothing is reflected and the light sensor detects nothing and this means that the robot is away from the white line. However, in the last case, the robot may be on the right or left of the white line. So three light sensors are used and the three signals indicates the position of the robot from the line. It is always required to center the three light sensors at the white line as the robot moves.


The Proposed Prototype

A line follower robot is to be designed using ATmega16 microcontroller. Three InfraRed reflectance sensors is arranged in one line. They are composed of an IR LED and an IR phototransistor as shown in the next figure. The analog signal received of each of the phototransistors is proportional to its coverage of the line, and lies between 0 and 2V. The signals of the sensors are weighted by 1,2 and 3 for left, middle and right sensors respectively. The average of the weighted readings gives a value for deviation of the robot from the line. This average has the range between 1 and 3 when the line is at far left or far right of the robot respectively. This average is used to control the speed of the rear left and right wheels of the robot.

Timer-0 and timer-2 in phase correct PWM mode are used for the left and right wheels. It is such that if the average of the weighted readings is 2, the robot is on the line and the OCR0, and OCR2 values are half the top, and correspondingly by an average value of 1 the right speed is highest and the left is 0, and by an average value of 3 the right speed is 0 and the left is highest. In between the speed (i.e. the values of OCR0 and OCR2) change linearly. It is assumed that the microcontroller frequency is to be 1 MHz, and the A/D clock to be lowest and the timer clocks to be highest.

Code Sample

  • A/D initialization:
// ADC Clock frequency: 7.813 kHz
// ADC Voltage Reference: AREF pin
// ADC Auto Trigger Source: None
// Only the 8 most significant bits of
// the AD conversion result are used
ADMUX=ADC_VREF_TYPE & 0xff;
ADCSRA=0x87;
  • Timer-0 initialization:
// Clock source: System Clock
// Clock value: 1000.000 kHz
// Mode: Phase correct PWM top=FFh
// OC0 output: Non-Inverted PWM
TCCR0=0x61;
TCNT0=0x00;
OCR0=0x00;
  • Timer-2 initialization:
// Clock source: System Clock
// Clock value: 1000.000 kHz
// Mode: Phase correct PWM top=FFh
// OC2 output: Non-Inverted PWM
ASSR=0x00;
TCCR2=0x61;
TCNT2=0x00;
OCR2=0x00;
  • The main code:
// asume that left sensor connected to PA0
// asume that Middle sensor connected to PA1
// asume that right sensor connected to PA2
// any analg value it's digital value is multiplied by 255/2

//    DIGITAL AVERAGE    ANALOG AVERAGE                OCR value
//       255/2                                    1                              0
//       255                                       2                           255/2
//       3*255/2                                3                             255

while (1)
      {
      // Place your code here
      L=read_adc(0);
      M=read_adc(1);
      R=read_adc(2);
      Dav=(L*1+M*2+R*3)/3;
      // TIMER2 CONTROLS THE LEFT MOTOR
      OCR2 = Dav-255/2;
      // TIMER0 CONTROLS THE RIGHT MOTOR
      OCR0 = 255-(Dav-255/2);
      };
  • Simulation using Proteus

You can download the project code and simulation from the following link:

Selasa, 08 Januari 2013

Hack.Legend of Twilight Bracelet

Kazegami Fansub | Fansub Bersama :
Download Hack.Legend of Twilight Bracelet Episode 1 Subtitle Indonesia by rizky-kazegami.blogspot.com X Fansub-bersama.blogspot.com

LINK DOWNLOAD
[IDWS]  |  [Mediafire]

Senin, 07 Januari 2013

Magi Episode 13 Subtitle Indonesia

Magi Episode 13 Subtitle Indonesia


Silahkan download gratis video Magi Episode 13 subtitle indonesia untuk Magi Episode 14 Subtitle Indonesia silahkan hitung 7 hari dari waktu anda mendownload :)

Download Magi Episode 13 Subtitle Indonesia

[Download Here]

Resolusi 2013 Komunitas Blogger Jogja

Resolusi 2013 Komunitas Blogger Jogja

Ayo yang merasa orang jogja dan suka dunia online ayok gabung bersama Komunitas Blogger Jogja. Melalui Group di Facebook (Cari saja di FB Komunitas Blogger Jogja) Kita saling sharing mengenai berbagai hal di online dan cara mendapatkan uang via online.

Lebih lengkapnya silahkan baca Resolusi 2013 Komunitas Blogger Jogja.

Sabtu, 05 Januari 2013

Kekkaishi Episode 36-52 Subtitle Indonesia

Kekkaishi Episode 36-52 Subtitle Indonesia

Silahkan download tidak bayar video anime Kekkaishi episode 36-52 Subtitle Indonesia.

Download Gratis Kekkaishi Subtitle Bahasa Indonesia.

Ginga e kickoff Episode 25 Subtitle Indonesia

Ginga e kickoff Episode 25 Subtitle Indonesia
Free download anime subtitile indonesia.


Kazegami Fansub X Zagarer:
http://rizky-kazegami.blogspot.com/  |  Zagarer.com







480p: [Download]



720p : [Download]