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 [...]

16 06, 2020

React Native Push Notification – IOS

2020-06-16T06:23:59+00:00June 16, 2020|Mobile|0 Comments

|
| ByWebner

Push Notification A push notification is a message that pops up on a mobile device to notify a user that a specific action has occurred in that mobile app. Below are the steps to configure Firebase in your application (To [...]

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 [...]

2 06, 2020

Deep Linking in React Native – Android

2020-06-02T06:36:04+00:00June 2, 2020|Mobile|0 Comments

|
| ByWebner

Deep Linking Deep linking is a way that allows an app to open a specific screen from an external link. It makes your app capable of navigating to a specific screen in response to external events like Push Notification, Emails, [...]

29 05, 2020

Advanced SQL – Indexes and Triggers

2020-05-29T06:07:15+00:00May 29, 2020|Database|0 Comments

|
| ByWebner

Introduction The SQL database provides a lot of commands and functions. With the help of them, we can manage a huge amount of data easily in the database. Following are some of the examples: INDEX: In the SQL database Index [...]

27 05, 2020

Regular expressions in PHP

2020-05-27T06:19:00+00:00May 27, 2020|PHP Frameworks|0 Comments

|
| ByWebner

Regular expressions Regular expressions use arithmetic operators like +,^,- and create complex expressions that can help to validate IP address, email address, telephone no, etc. They save our coding time. Some of built-in PHP regular expressions are: Preg_replace- perform pattern [...]

25 05, 2020

Convert PDF To Image In PHP

2020-05-25T06:33:42+00:00May 25, 2020|PHP Frameworks|0 Comments

|
| ByWebner

How to convert PDF to image file using PHP? Before installing PDF to Images package, firstly you need to install two PHP extensions Imagick and Ghostscript. Step 1: Install Imagick sudo apt-get install php-imagick Step 2: Restart Apache In the [...]

21 05, 2020

Introduction to MVC

2020-05-21T06:18:50+00:00May 21, 2020|PHP Frameworks|0 Comments

|
| ByWebner

What is MVC? The MVC is a very frequent web development architectural framework or application designing model which contains three main components the Model, the View and the Controller each of them performs different functions assigned to them. It helps [...]

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. [...]

13 05, 2020

Resize and Draggable Image using Jquery

2020-05-13T05:56:08+00:00May 13, 2020|Web Development|0 Comments

|
| ByWebner

Introduction to Jquery Libraries Using jquery libraries, we can implement Resize and draggable functionality on an image. It is really a fantastic thing and we do not need to bother about knowing the inner functionality of how it is working. [...]

11 05, 2020

USEFUL LARAVEL BLADE DIRECTIVES

2020-05-11T06:05:30+00:00May 11, 2020|Web Development|0 Comments

|
| ByWebner

Laravel Blade Directives Laravel Blade Directives are the functions of Laravel’s templating engine that are basically a piece of code that covers the complex yet common and repetitive code written in PHP. Many of these directives are used while working [...]

7 05, 2020

Linting and Security tools for python code

2020-06-22T12:20:57+00:00May 7, 2020|Python|0 Comments

|
| ByWebner

What is a linter? Linters are the tools that analyze code to detect various categories of lint which help in making code better organized, shows warnings and errors and hence, improves quality. The linters can be broadly categorized as following: [...]

Go to Top