Monday, July 12, 2010
Subscibe Now : Free Magazine Electronic Products
Electronic Products focuses on the new product and product technology needs of engineers designing today's electronic equipment and systems. From cover to cover, month after month, they provide the relevant, timely product and technology information today's engineers need to make informed buying and specification decisions.
Posted by panayara at 9:25 PM 0 comments
Saturday, May 29, 2010
Howto Block a Port in Squid Proxy , Ubuntu Linux
Here I show a small Squid Access Control technique for blocking a port for all users and open it for a selected user.
Open /etc/squid/squid.conf file by using
# vi /etc/squid/squid.conf
Locate your Access Control List (ACL) section and add configuration directive as shown below:
acl block_ port port 5050
http_access deny block_port
http_access allow all
The above directives will help you to block port 5050
If you wish to allow the above blocked port to a particular IP (192.168.0.101) try as follows:
acl block_port port 1234
acl no_block_port_ip src 192.168.0.101
http_access deny block_port !no_block_port_ip
http_access allow all
Save and Close the file
Restart squid proxy by using
# /etc/init.d/squid restart
Posted by panayara at 12:12 PM 0 comments
Wednesday, May 26, 2010
Getting started with Arduino
Here You can see a very good site for Arduino Open Hardware Starting
Chapter Zero
Chapter One
Chapter Two
Chapter Three
Chapter Four
Chapter Five
Chapter Six
Chapter Six Added
ChapterSeven
Chapter Eight
Posted by panayara at 11:47 PM 0 comments
Monday, May 3, 2010
Get your free Subscription : Electronics Design
Check current availability!
Posted by panayara at 6:01 PM 0 comments
Friday, February 26, 2010
Download Proteus 7.6 sp4
I have seen a download link for Proteus 7.6 sp4. Thanks for sharing
Proteus is a very good software for electronics simulation and PCB design
If you like this software please purchase a Licensed copy
http://depositfiles.com/files/q1kzk3gie
Posted by panayara at 10:17 PM 0 comments
Tuesday, January 12, 2010
How to Interface PIC16F877A / 18F452 with RS232C Serial Communication Using CCSC
#DEVICE ADC=10
#fuses HS,NOWDT,NOPROTECT,NOLVP
#use delay(clock=20000000)
#use rs232 (baud=9600,rcv=PIN_C7, xmit=PIN_C6)
int count=0;
void main()
{
while(1){
//1 Sec Delay
delay_ms(1000);
//Increment Count
count ++;
if (count>60)
{ count=0;}
//Send data to PC
printf("\n\r Count Value: %d",count);
}
}
Posted by panayara at 10:23 PM 0 comments
Tuesday, October 13, 2009
LED Operates Directly From AC
Acriche is the world’s first semiconductor light source that operates directly from AC power without a converter. This makes it suitable for many residential and commercial lighting applications where the main source of available power is AC.
Posted by panayara at 9:57 PM 1 comments





