Aug 23 2016
TCP/IP Another POST
Understanding TCP/IP and OSI Models
Aug 23 2016
Understanding TCP/IP and OSI Models TCP/IP and OSI Models, OSI Model, TCP/IP Model, TCP/IP Stack
Feb 25 2015
By default jTable jQuery Plugin does not allow to upload file and use File Upload HTML Control. Here I implemented jTableSample demo with File Upload Control. Step1: Create new field that will put <div> tag for our AJAX File Upload.
1 2 3 4 5 6 7 8 9 | FileUpload: { title: 'Customers File', list: false, create: true, edit: true, input: function (data) { return '<div id="FileUpload" name="FileUpload"></div>'; } } |
Step2: We will load AJAX File Upload on div which inserted in first step.(…)
May 1 2014
Hamming Code Implementation in C Programming. Simple example of implementing Hamming Code in Unix C Programming with Named Pipe
Apr 18 2014
CRC Implementation in C with efficient algorithm. CRC Implementation with bitwise operators and example.
Mar 27 2014
In this error detection method, a block of bits is organized in a table with rows and columns. Then the parity bit for each column is calculated and a new row of eight bits, which are the parity bits for the whole block, is created. After that the new calculated parity bits are attached to(…)
Mar 19 2014
The simplest and oldest error detection method. A binary digit called parity is used to indicate whether the number of bits with “1” in a given set of bits is even or odd. The parity bit is then appended to original data. Usually used to detect transmission error . Sender adds the parity bit to(…)
Feb 12 2014
This is simple example of byte stuffing sender receiver using Named Pipe in Unix C Programming.
Jan 25 2014
In a bit-oriented protocol, the data to send is a series of bits. In order to distinguish frames, most protocols use a bit pattern of 8-bit length (01111110) as flag at the beginning and end of each frame. Here also cause the problem of appearance of flag in the data part to deal with this(…)
Jan 21 2014
A named pipe is really just a special kind of file (a FIFO file) on the local hard drive. Unlike a regular file, a FIFO file does not contain any user information. Instead, it allows two or more processes to communicate with each other by reading/writing to/from this file. Creating FIFO File You can create(…)
Receive The Latest Posts Directly To Your Email - It's Free!!