karthikeya Boyini

karthikeya Boyini

1,421 Articles Published

Articles by karthikeya Boyini

Page 29 of 143

How to use OpenSSH Multiplexer To Speed Up OpenSSH Connections on Linux

karthikeya Boyini
karthikeya Boyini
Updated on 16-Mar-2026 513 Views

This article will help you understand how to multiplex SSH sessions by setting up a master session and using a multiplexer to speed up SSH connections on Linux. What is SSH Multiplexing? SSH Multiplexing allows multiple SSH sessions to share a single TCP/IP connection. Instead of establishing separate connections for each SSH session, subsequent connections reuse the existing master connection, reducing server load and improving connection speed. SSH Multiplexing: Single Connection, Multiple Sessions Client Server Master TCP Connection ...

Read More

Bandwidth Delay Product

karthikeya Boyini
karthikeya Boyini
Updated on 16-Mar-2026 10K+ Views

Bandwidth Delay Product (BDP) is a measurement of how many bits can fill up a network link. It gives the maximum amount of data that can be transmitted by the sender at a given time before waiting for acknowledgment. Thus it represents the maximum amount of unacknowledged data that can be "in flight" on the network. Bandwidth Delay Product Visualization Sender Receiver Data Transmission Acknowledgment BDP = Bandwidth × Round Trip Time ...

Read More

Go-Back-N ARQ

karthikeya Boyini
karthikeya Boyini
Updated on 16-Mar-2026 13K+ Views

Go-Back-N Automatic Repeat reQuest (Go-Back-N ARQ) is a data link layer protocol that uses a sliding window method for reliable and sequential delivery of data frames. It is a case of sliding window protocol having a send window size of N and receiving window size of 1. This protocol allows multiple frames to be transmitted before receiving acknowledgments, but requires retransmission of all frames starting from the first unacknowledged frame if any frame is lost or corrupted. Working Principle Go-Back-N ARQ uses the concept of protocol pipelining, sending multiple frames before receiving acknowledgment for the first frame. ...

Read More

Write Emails In HTML and then Send Them using Gmail

karthikeya Boyini
karthikeya Boyini
Updated on 16-Mar-2026 642 Views

HTML email combines the visual appeal of web pages with email communication, featuring graphics, colors, formatting, and structured layouts. Unlike plain text emails that contain only basic text content, HTML emails resemble newsletters and marketing materials with rich formatting, images, and interactive elements. Email marketers consistently find that HTML emails perform better for conversions compared to plain text. However, creating effective HTML emails requires understanding email client limitations and following specific coding practices to ensure proper rendering across different platforms. What is HTML Email? HTML email uses HyperText Markup Language to create formatted messages that can include ...

Read More

HTML DOM Input Button name Property

karthikeya Boyini
karthikeya Boyini
Updated on 16-Mar-2026 178 Views

The HTML DOM name property is used to get or set the value of the name attribute of an input button element. This property is essential for form data submission, as the name attribute identifies the button when the form is submitted to the server. Syntax Following is the syntax for returning the name value − object.name Following is the syntax for setting the name value − object.name = "text" Here, text represents the new name value to be assigned to the input button. Return Value The name ...

Read More

HTML DOM Input Checkbox defaultChecked Property

karthikeya Boyini
karthikeya Boyini
Updated on 16-Mar-2026 446 Views

The HTML DOM input checkbox defaultChecked property returns the default value of the checked attribute of a checkbox element. This property reflects whether the checkbox was initially checked when the page loaded, regardless of its current state. Syntax Following is the syntax for getting the defaultChecked property − checkboxObject.defaultChecked This property returns a boolean value − true − if the checkbox was initially checked (had the checked attribute) false − if the checkbox was initially unchecked Understanding defaultChecked vs checked The defaultChecked property differs from the checked property − ...

Read More

HTML DOM Input Checkbox autofocus Property

karthikeya Boyini
karthikeya Boyini
Updated on 16-Mar-2026 215 Views

The HTML DOM Input Checkbox autofocus Property sets or returns whether a checkbox should automatically receive focus when the page loads. This property corresponds to the autofocus attribute in HTML and is useful for improving user experience by directing attention to important form elements. When a checkbox has the autofocus property set to true, it will be highlighted with a focus outline as soon as the page finishes loading, without requiring user interaction. Syntax Following is the syntax for returning the autofocus property − checkboxObject.autofocus Following is the syntax for setting the autofocus ...

Read More

HTML DOM Option text Property

karthikeya Boyini
karthikeya Boyini
Updated on 16-Mar-2026 191 Views

The HTML DOM option text property allows you to retrieve and modify the text content of an element within a dropdown. This property is useful for dynamically updating option labels without recreating the entire select element. Syntax Following is the syntax for getting the text value − optionElement.text Following is the syntax for setting the text value − optionElement.text = "newText" Return Value The property returns a string representing the text content of the option element. When setting, it accepts a string value that becomes the new ...

Read More

Phonegap + Windows Phone 8 : HTML5 viewport meta & scaling issue

karthikeya Boyini
karthikeya Boyini
Updated on 16-Mar-2026 158 Views

When developing PhoneGap applications for Windows Phone 8, you may encounter HTML5 viewport scaling issues where the content appears zoomed in or out, or doesn't fit properly on the device screen. This typically occurs when the viewport meta tag isn't properly configured or when Windows Phone's default zoom behavior conflicts with your app's layout. Common Causes The viewport scaling issue in PhoneGap Windows Phone 8 apps usually stems from − Missing or incorrect viewport meta tag configuration Windows Phone's default zoom behavior overriding your CSS Improper CSS styling that doesn't account for device-specific rendering ...

Read More

How to use formenctype attribute in HTML?

karthikeya Boyini
karthikeya Boyini
Updated on 16-Mar-2026 276 Views

The formenctype attribute in HTML specifies how form data should be encoded when submitting to the server. This attribute was introduced in HTML5 and is only used with input elements of type submit and image. It overrides the form's default enctype attribute for that specific submit button. Syntax Following is the syntax for the formenctype attribute − The encoding-type specifies how the form data should be encoded before sending it to the server. Formenctype Attribute Values The formenctype attribute accepts three possible values − Value Description ...

Read More
Showing 281–290 of 1,421 articles
« Prev 1 27 28 29 30 31 143 Next »
Advertisements