Category: Others (General)
Role of Software Developer in Testing
The one who has both qualities of a developer and a tester is known as a professional Software Developer. Most common terms used for such job titles are: SET (Software Engineer in Test) and SDET, (Software Development Engineer in Test).
Mysql access denied error for user root@localhost in XAMPP
Problem: Mysql access denied error for user root@localhost when using in XAMPP server (windows) even when credentials are correct. Solution: Actually the problem is not in code, the issue is that by-default mysql in xampp allowed passwordless authentication in mysql, so
GrapeJS | Not working in Safari and local storage problem
How to resolve following GrapesJS editor issues: 1. GrapesJS not working in Safari web browser 2. Local Storage exceeding issue GrapesJS not working on Safari web browser: When the editor is opened in Safari, we see nothing only a blank
Short introduction to google analytics
Google Analytics: Google Analytics is a free Web analytics service offered by google that tracks and reports website traffic. The service is available to anyone with a Google account. Why every website owner needs Google Analytics: These are some statistics
Few key points for good SEO revisited
There are number of things that you should follow to improve SEO for your web pages and site ranking, some of which are listed below for a sample webpage that covers Tutorial for Javascript: 1. Make a separate page which
Open specific local Outlook window from .msg file
C# : Triggering the Local Outlook for forward, reply and reply all actions from existing .msg file For the desktop based applications when user is dealing with the store outlook files in msg format we can open local outlook when
Problem – First submenu item same as main menu in WordPress
While implementing a custom plugin in wordpress, we can simply add submenu items for our plugin by this code: public function PluginMenu() { $this->my_plugin_screen_name = add_menu_page( ‘My Reviews’, ‘My Reviews’, ‘manage_options’, __FILE__, array($this, ‘RenderPage’), ‘dashicons-format-quote’ ); } But in wordpress,
Golden rules for programmers to write good code
Why we need to code properly because a well written code not only does its job well but is also easy to extend, maintain and debug. So here are some key points: 1. Follow a consistent coding standard: There are
Importance of testing in production after deployment
When we deploy an application from staging / testing server to live / production environment, tester needs to test the application again in production environment no matter if he has already tested the whole application in staging environment. Why there