Saturday, September 29, 2018

Daraz Update Wesbite to decoupled architecture

Finally, the biggest E-commerce Platform which is recently Aquiry by Father Of Eccomerce ALI BABA recently updates his Website Technology.  I am very inspired by the technology which they were updating, they are using Microservices architecture and Decoupled architecture.



 Daraz use React on its front end and I thought they are using PHP on their Microservices module. but I  don't find any jwt(JSON Web Token) in it may be they use the custom tokenization and I not dig more in token.


CDN does not resize the image may be used as an image store.


Overall website is surprisingly awesome in technology.   This is a great step toward the Darz its Daraz Initial state, the first build is Perfect, up to the mark Work by Daraz Team. Very Appreciated Work

Monday, March 26, 2012

LEARN AFD DEBUGGER AND HOW PROGRAM EXECUTE IN IT (FUNCTION AND OPERATION OF PROCESSOR )

 LEARN AFD DEBUGGER AND HOW PROGRAM EXECUTE IN IT (FUNCTION AND OPERATION OF PROCESSOR )
Now after know the working of processor here turn of AFD ,which show the step by step instruction of a processor how its work now the previous program which we made in last session NEW.ASM use it in also AFD debugger
First load NASM and give a command to nasm that open a program in AFD so the command is
" AFD  new.com"



after that afd debugger launch


now that screen is much  different then other programing interference now here in afd it is divided in some some part portion of different section which show the movement of register and flags stack segment memory the things are define 

the area which is above color are the general purpose register which should be define in next post
General Registers (AX, BX, CX, and DX)
Index Registers (SI and DI)
Index Registers (SI and DI)
Stack Pointer (SP)
Base Pointer (BP)
after that stack and flag section

now after that


after that memory part memory 1 and memory 2 both at most same function can be perform here show the on which address of memory what data is present
last that the part in which the program which we want to execute is remain which execute and run line by line which show how processor can perform each operation
in next post show running the program in it

Sunday, March 25, 2012

DOWNLOAD ASSEMBLY NASM(Netwide Assembler) FOR WINDOW 7

Download nasm for window seven from here Nasm for Window seven (7)
 sorry i cant given the instruction to seven because the MACHINE  in which OS of window seven was installed is not ruining well that's why I having sort of complication Inshallah i"ll give the instruction as soon as possible any sort of help you need email me or post me the problem here thank you 

Monday, March 19, 2012

How execute the assemble program by using nasm

How execute the assemble program by using nasm 

After the installation of assembler here is a explanation of a  assemble a little bit but with highly understand of how processor works  .
here first thing how assemble program can be written :
the code or syntax is so easy as such English  ,before start programing just  having the little knowledge for register :
now, the codes begun .
        

           mov ax,15                        :move 15 to ax register   
           mov bx,10                      :move 5 to ax register 
           add ax,bx                       :move 5 to ax register 
           mov bx,15                      :move 5 to ax register 
           add ax,bx                       :move 5 to ax register 

>>here ax is a register in which we put the operand (operand are on which operation can be perform) 15 to ax, this is the instruction which we give in first line .

>>now come on second instruction here we put the value of 10 in bx register

>> ax ,bx and what ever register use in it are know according to assemble is destination and the code which we provide to operate is source


>> so all above the code should be understand, now type the program in a text-editor which is more convenient to you (e.g Notepad ,Dos ,etc)

>> now the think in that which is confusing is that [ORG 0x100] and mov ax,0x4c00
int 0x21 ,this are the instruction which we will learn in above classes for now just for execute the program we need that otherwise system perhaps shutdown or restart .
 
Add caption
>> After that typing the program in notepad file save it with extension .asm  for example  


>>here new is file name and .asm is extension
>> save the file into the nasm folder in c:> programs file>.
>> now assemble the program by nasm we run nasm



>>here in assembler we give the command to nasm that::
    c:\program files \nasm> nasm new.asm -o new.com -l new.lst
that command tell the nasm that new.asm file which we created make its com file and listing file by (-o , -l). now check that 2 files are created in nasm folder.
after that nothing is happen but assembler do it its work now type another command to nasm

c:\program files \nasm> edit new.lst




after enter it new window is open





that is the screen which show both high level language or low level,and how processor  learn our command by using hexa decimal  the explanation of a program exceed on next post INSHALLAH

Friday, March 16, 2012

Debugger for Assembly program AFD(Advanced Full-screen Debugger)

Debugger for Assembly program AFD(Advanced Full-screen Debugger)
> the debugger downloaded here >>> AFD (advanced Full-screen debugger )
after downloading it AFD is exe file can be run on a click

after press any click to continue
Thank you

INSTALLATION OF ASSEMBLY NASM(Netwide Assembler)

>To install assembler first think need of an assembler which would here can be downloaded  NASM(Netwide Assembler)
>after download nasm extract it instal the .exe file of it

after click on nasm file
point the value which you want 
 Then
its up to you if want to not install the RDOFF
after next step where you want to install the files of assembler
  

 now here the shortcut of nasm where you want more convenient to reach it as so ..

after clicking on installation
 the icon of nasm should come at your desktop
now work on it
also Debugger on nest post
 THANK you