25 02, 2020

Image Compression in Laravel

2020-02-25T07:32:06+00:00February 25, 2020|Web Development|0 Comments

|
| ByWebner

Steps to follow: Install the Intervention image package first in your project composer require intervention/image If you want to check official documentation of intervention image you can check it from here- http://image.intervention.io/getting_started/installation Inside the config/app.php- In providers, add:- Intervention\Image\ImageServiceProvider::class, In [...]

18 02, 2020

Spread Operator and It’s Uses

2020-02-18T11:50:46+00:00February 18, 2020|Web Development|0 Comments

|
| ByWebner

Introduction The Spread operator was first introduced in ES6. It allows an expression to be expanded in locations where various elements/variables/arguments are required. In other words, the Spread operator lets users expand an iterable like a string, object or array [...]

12 02, 2020

How to create new plugin type in Moodle/Totara?

2020-02-24T12:51:04+00:00February 12, 2020|eLearning|0 Comments

|
| ByWebner

Introduction plugin types in Moodle/Totara As we know, Moodle/Totara has multiple plugin types. To extend core functionality, different ways are used to create each plugin type. Some of the plugin types are: mod blocks theme availability report auth local etc. [...]

10 02, 2020

Routing In Angular

2020-02-24T12:51:12+00:00February 10, 2020|Web Development|0 Comments

|
| ByWebner

Introduction to Angular Angular is a front-end framework that is used for building client-side web applications for the mobile and desktop web and Routing is one of the important features for any front-end framework. Angular Router It enables developers to [...]

4 02, 2020

Inheritance and Access Modifiers in C#

2020-02-04T05:33:45+00:00February 4, 2020|Web Development|0 Comments

|
| ByWebner

In Inheritance, an object acquires all the properties and behaviours of its parent object automatically. It allows reusability of the code and we can even extend or modify the behaviours which are defined in other class. Base and Derived Classes [...]

29 01, 2020

Bootstrap 4 Progress Bars

2020-01-29T06:23:47+00:00January 29, 2020|Web Development|0 Comments

|
| ByWebner

Usage of Progress Bar Progress bars are used to display the progress of a process in a computer, update/progress of a task or action of a user. For example: Survey or Voting results are filled with the bars in a [...]

27 01, 2020

The Importance of Website Development

2020-01-27T05:40:33+00:00January 27, 2020|Web Development|0 Comments

|
| ByWebner

Introduction Possessing various adaptability skills and the ability to change with circumstances is the forte of human beings. The transformation from interpersonal communications to internet communications was not abrupt. However, we have successfully managed to adapt the digital life with [...]

23 01, 2020

JS Errors On Android Browser

2020-01-23T10:00:31+00:00January 23, 2020|Web Development|0 Comments

|
| ByWebner

How to view JS errors when accessing a webpage on Android mobile? Steps to view JS errors: Open the Developer Options setting on your Android Device. If you are not able to see the developer option then you need to [...]

13 01, 2020

Benefits of eLearning in Modern Organizations

2020-01-13T06:14:37+00:00January 13, 2020|eLearning|0 Comments

|
| ByWebner

Introduction to eLearning Providing skillful training is integral for any organization to succeed and effective training helps not only the employers but also the employees who expand their skill-set. A lot many eLearning development companies are turning to an efficient [...]

9 01, 2020

Disabling Form Elements in Moodle/Totara

2020-01-09T05:12:25+00:00January 9, 2020|eLearning|0 Comments

|
| ByWebner

Here we will discuss how to disable form elements based on conditions in moodle/totara. We are creating a form in moodle/totara by extending “moodleform” class and overriding the definition() method to including the form elements. For example: If you want [...]

Go to Top