Thursday, July 12, 2012

What does my blog says about me?

It' been really long time that i have posted something on my blogger. Recently i  have come across some kind of  interesting stuff across the web saying

What does my blog says about me?

After reading i have tried the same thing for my blog and i have found the following results which i am posting here...! and the link for the site is http://www.typealyzer.com.





Thursday, May 10, 2012

Javascript Tabs

The following Code is used to develop a Simple Tabbed Navigation Using Javascript:


       var tabs = ["tab1", "tab2", "tab3"];
       function showtab(e) {
            for (var i = 0; i < 3; i++) {
                    hide(tabs[i]);
            }
            for (var i = 0; i < 3; i++) {
                if (e == i) {
                    toggle(tabs[e]);
                }
            }
        }

Hide/Show a Div using Java Script


The following code is used to show/hide a div using JavaScript:

function toggle(e) {
            var x = document.getElementById(e);
            if (x.style.display == "none") {
                x.style.display = "block";
            }
            else {
                x.style.display = "none";
            }
}

Wednesday, April 25, 2012

Send Mail in asp.net using c#

Send Mail in asp.net using c#:

The following code snippet is used to send an email in asp.net using c#. The code itself is self explanatory. The comments in the code help you to understand the code.

Thursday, March 22, 2012

Overview of Embedded Development

Micro Processor and Micro Controller:

1.    Getting Started
                What do I need to know to get started with embedded development? Who should learn Embedded Development? Why should I learn Embedded Programming? These are quite simple and straight forward questions. Students, Professionals, hobbyists or anyone can learn embedded programming and there is no restriction. If you have an experience of high level programming, then u would be comfortable with the embedded development and don’t worry if you don’t even written any kind of computer program till date.

Friday, March 2, 2012

8051 (8 bit) Micro processer Instruction Set Reference:


8051 (8 bit) Micro processer  Instruction Set Reference:

Data Transfer    
Arithmetic
Branching
LOGICAL INSTRUCTIONS
MOV
 MVI
LDA
LDAX
LXI
LHLD
STA
STAX
SHLD
XCHG
SPHL
XTHL
PUSH
POP
OUT
IN
ADD
ADC
ADI
ACI
LXI
DAD
SUB
SBB
SUI
SBI
INR
INX
DCR
DCX
DAA
JC     RC
JNC  RNC
JP     RP
JM   RM
JZ     RZ
JNZ  RNZ
JPE  RPE
JPO RPO
CC   RET
CP
CM
CZ
CNZ
CPE
CPO

CMP
CPI
ANA
ANI
XRA
XRI
ORA
ORI
RLC
RRC
RAL
RAR
CMA
CMC
STC