26 08, 2020

WireShark For Network Traffic Investigation

2020-08-26T11:29:21+00:00August 26, 2020|Web Development|0 Comments

|
| ByWebner

Introduction Wireshark is an open-source network protocol that is responsible to investigate the network traffic and for visual understanding of packet loss. It is used to troubleshoot the network connectivity and review the TCP (Transmission Control Protocol) transmission between the [...]

24 08, 2020

Convert Set data into String

2020-08-24T06:36:10+00:00August 24, 2020|Web Development|0 Comments

|
| ByWebner

Introduction When working with sets in apex sometimes we need to create a string from the set's values but there is no function that can convert a set into a string as we have for lists. To convert set into [...]

28 07, 2020

Migrations in Entity Framework 6

2020-07-28T06:10:37+00:00July 28, 2020|Web Development|0 Comments

|
| ByWebner

Whenever a data model changes during development it gets out of sync with the current database in code first approach. The database initialization strategies that we used in our project result in loss of data whenever there are changes in [...]

24 07, 2020

Invisible/Zero-width characters in IE

2020-07-24T05:45:31+00:00July 24, 2020|Web Development|0 Comments

|
| ByWebner

Introduction In Internet Explorer, many times you might have faced issues of invalid date from Date Conversion methods or might have worked with Javascript methods for operations on data. In my case, I used some conversion operation on a date [...]

22 07, 2020

RxJS (Reactive Extensions for JavaScript)

2020-07-22T05:50:28+00:00July 22, 2020|Web Development|0 Comments

|
| ByWebner

Introduction to RxJS RxJS is a popular library among web developers. It provides some features like functional and reactive programming patterns that support working with events and streams. Rxjs provides the functionality to write asynchronous code. The current stable version [...]

20 07, 2020

Validating Downloaded File Using Selenium

2020-07-20T05:55:56+00:00July 20, 2020|Web Development|0 Comments

|
| ByWebner

Validating downloaded files in automation testing In the manual testing process, it is easy validating that the file is downloaded or not because the human mind is fully involved in the testing process. But in the case of automation testing, [...]

16 07, 2020

Font SVG icon issues in IE

2020-08-19T07:56:33+00:00July 16, 2020|Web Development|0 Comments

|
| ByWebner

Problem After downloading the setup of CSS for icon files (.eot, .woff, .tff.) from font awesome library, Devextreme icons, and UI operations like selecting checkboxes inside the Devextreme Datagrid were not working on IE in my c# .net web application. [...]

10 07, 2020

PHP Best Practices

2020-07-10T06:14:19+00:00July 10, 2020|Web Development|0 Comments

|
| ByWebner

Below are the best practices that should be followed in PHP: 1. define() vs. const In the early version of PHP, one would use define() function to set constants. But with new updates in PHP gained one more way to [...]

6 07, 2020

What is Bootstrap Panel?

2020-07-06T06:32:19+00:00July 6, 2020|Web Development|0 Comments

|
| ByWebner

Introduction Bootstrap is a popular HTML, CSS, and JavaScript framework for developing a responsive and mobile-friendly website. It includes jumbotron, table, button, grid, form, image, alert, wells, container, carousel, panels, glyph icon, badges, labels, progress bar, pagination, pager, list group, [...]

2 07, 2020

Creating Rest API in Node Js

2020-07-02T05:44:27+00:00July 2, 2020|Web Development|1 Comment

|
| ByWebner

Rest API Rest API is an application program interface, that uses GET, POST, PUT, DELETE data. It is referred to as a REPRESENTATIONAL STATE TRANSFER (RESTful) web service. Creating the API Creating Rest API in Node Js firstly needs to [...]

26 06, 2020

Visual Composer in WordPress

2020-06-26T05:55:51+00:00June 26, 2020|Web Development|0 Comments

|
| ByWebner

What is Visual Composer and how to use it in WordPress? Visual composer is a WordPress plugin that permits you to drag and drop components to create and edit your WordPress website. You can simply add new text blocks, buttons, [...]

22 06, 2020

Python OpenCV

2020-06-22T06:03:02+00:00June 22, 2020|Web Development|0 Comments

|
| ByWebner

Introduction to Python OpenCV Python OpenCV Usage:- For main modules- run pip install OpenCV-python cv2.imread() method This method loads an image from the specified file and if the image cannot be read due to some error, it returns an empty [...]

18 06, 2020

Template-Driven Forms

2020-06-18T05:52:19+00:00June 18, 2020|Web Development|0 Comments

|
| ByWebner

Introduction Template-driven forms are the kind of forms in Angular. In Template Driven Forms, we specify validations using directives and attributes. In this approach, we define the template that we want to use in forms. So, this approach is called [...]

12 06, 2020

Utmost Web Development Trends to Embrace in 2020

2020-06-12T08:42:56+00:00June 12, 2020|Web Development|0 Comments

|
| ByWebner

Trends in Web Development Given that eCommerce, content creation, startup development and other industries are saturated with competitive brands, developing a worthwhile website in 2020 is pivotal for success. Whether you’re a web development professional or are looking for ways [...]

8 06, 2020

Push Logs in a Custom Plugin – WordPress

2020-06-08T07:00:32+00:00June 8, 2020|Web Development|0 Comments

|
| ByWebner

How to Push logs to Amazon Cloudwatch in a custom plugin in Wordpress? AWS Amazon Web Services is a secure cloud services platform that offers database storage, compute power, content delivery, other storage & security functionalities and AWS services. Cloudwatch [...]

15 05, 2020

Dependency Injection in Asp.Net Core

2020-05-15T05:56:30+00:00May 15, 2020|Web Development|0 Comments

|
| ByWebner

Introduction: The ASP.NET Core provides the idea of Dependency Injection without having to install any external injection containers and resolve the dependencies. My experience with ASP.NET Core is connecting some applications related to the use of such templates for dependencies. [...]

Go to Top