Posts

Showing posts with the label ibm

IBM Worklight

The IBM Worklight is a plugins for the Eclipse IDE (indigo and helios) use to develop smartphone and tablet apps.Worklight Studio is a plug-in for Eclipse that supports the efficient development of rich, multi-channel applications.It support many kind of devices like iOS, Android, Blackberry, and Windows Phone devices. Worklight also supported on Windows,Mac OS and Linux. You can develop IBM worklight with iOS environment on any OS however because of the restrictions set by Apple, you can compile an iOS project only on a Mac OS and it integrated with Xcode. Worklight can be used to : Create and modify applications Deploy applications to embedded worklight server Preview and manage applications by using Worklight Console Create custom server-side java code that can be used by worklight adapter  Create and modify Worklight adapters Deploy Worklight adapters to the embedded worklight server Test Worklight adapter procedures For more information you can visit IBM Workli...

Assembly language basic instruction set

Image
Assembly language is languages that must be learn in order to become a good programmer. This post is special for the people whose want to learn assembly language for IBM computer. Below is some of the example of instruction set. 1)    MOV -->Move data Move the value of 100 into the AX, thus AX will have 100 after the execution of the instruction set. 2)    JMP -->unconditional Jump It is use to transfer the programs to the Instruction Pointer (IP) that you want to execute. For example JMP 100 mean jump to the IP 100. 3)    CMP -->Compare Must use with others instruction like JE, JZ, JNE, JNZ. Use to compare two values. 4)    JE/JZ,JNE/JNZ-->Jump if equals/zero, Jump if not equals/not zero CMP instruction set must be first then only use this instruction set. Jump to the Certain IP that you set. 5)    SHL-->Shift algebraic left Shift bit to left. For example: MOV AX, 0002 SHL...