Programming ATtiny10 with Arduino UNO

I am trying to run the program to blink a led with the UNO, but I only found tutorials explaining how to do it with the USBasp, so I tried the equivalence with the ICSP pins in the UNO, but it just does not work. The led is blinking but is not my code that is on the ATtiny10, because when i try to upload the code it does not work.

I used the code and the pins configurations according to this site: Technoblogy - Programming the ATtiny10 [Updated]

On the Arduino IDE, I configured the programmer tool as "Arduino as ISP", bur it keeps uploading for a while and then a lot of errors happen.

avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 1 of 10: not in sync: resp=0xa2
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 2 of 10: not in sync: resp=0xa2
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 3 of 10: not in sync: resp=0xa2
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 4 of 10: not in sync: resp=0xa2
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 5 of 10: not in sync: resp=0xa2
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 6 of 10: not in sync: resp=0xa2
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 7 of 10: not in sync: resp=0xa2
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 8 of 10: not in sync: resp=0xa2
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 9 of 10: not in sync: resp=0xa2
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 10 of 10: not in sync: resp=0xa2
Problema ao carregar para a placa. Veja http://www.arduino.cc/en/Guide/Troubleshoot

Did you upload the arduino as ISP sketch to the uno? I dont see that step mentioned

Yes, when I tried it was as ISP

After uploading Arduino as ISP, put a 10uF cap (exact value isn't key - as long as it's more than a couple of uF it will work) between reset and ground on the arduino being used as ISP (you will need to remove it next time you want to reprogram that arduino). See if that fixes it.

Your error indicates it's not able to communicate with the Arduino acting as programmer; some people report that they need to disable the autoreset to make that work, while most people report otherwise. I haven't seen a decent explanation of why this might be the case.

(deleted)