Programming attiny15L using arduino isp

I've recently acquired an attiny15L (1K flash). I'm not able to program this attiny by following the tutorials on the net. Is there any way I can program this attiny using arduino isp?

I've recently acquired an attiny15

Use it to decorate your room...

The ISP programming isn't the problem, the problem is getting the IDE to work with the chip. Think of the hours it will take you then buy an ATtiny85 instead, they're well supported.

glamis:
Is there any way I can program this attiny using arduino isp?

Probably. The serial protocol looks similar to most other AVR processors.

I've recently acquired an attiny15L (1K flash).

The very small Flash will make it challenging to program. The lack of SRAM will make it impossible to program using C. You will be developing your program in assembly.

The lack of SRAM will make it impossible to program using C.

So I cant even use avrdude to program the attiny ???

You can probably use avrdude. As I already stated, the protocol looks similar to the protocol of more modern processors.

If the t15L is not in the avrdude.conf file you will have to create an entry.

You can probably use ArduinoISP because it uses a fixed delay. You will not be able to use TinyISP because it polls (which is not supported by the t15L).