Trending
- WordPress 5.0 Release Candidate Available Now
- Top 5 Angular Books you should be reading
- Angular 7: New Features
- How to Select Good Domain Name?
- Top 5 JavaScript Image Zoom Scripts
- Understanding Java Variable Length Arguments (VarArgs)
- NativeScript Troubleshooting and Getting Help
- How to Integrate AdMob in Android App
- Top 10 Java Collections Interview Questions and Answers
- How to Monitor Disk, Memory, and Threads in Java?
Browsing Category
Web World
Javascript Debugging Tools
This journal post will outline the best tools to find, diagnose, and fix problems of applications that are coded in JavaScript.
Javascript Snippet Packages for Visual Studio Code
Some of the most useful JavaScript snippets available in the Visual Studio marketplace
AngularJS vs jQuery: Comparison
Comparison of two powerful Client Side Javascript technologies AngularJS and jQuery.
Understanding Progressive Web Apps
Progressive Web Apps (PWA) are user experiences that have the reach of the web.
Service Workers: Introduction
Service workers provide the technical foundation for rich offline experiences, periodic background syncs, push notifications.
MDN Interactive Editor Beta is Ready for Testing
Mozilla MDN has introduced their Interative Editor Beta edition for testing purpose.
Understanding Promise.prototype.finally()
Understanding Promise Prototype Finally
#How Does Promise.prototype.finally works
.finally() works as follows:
promise
.then(result => {···})
.catch(error => {···})
.finally(() => {···});
finally’s callback is always…
Better way to document large javascript documents
Are you working on large javascript based projects and someone new joins you in your team. You have to mentor and make them understand the project that you and your team is working on. This can sometimes become the pain point for the…
Using CSS variables
CSS Variables are entities that hold values which can be reused throughout your stylesheet document.
They are formerly known as custom property and can be defined using the following notation
--property-name: value;
Once you have…
Checklist and Troubleshooting URL Rewriting
Checklist to Implement URL Rewriting
CHECK THAT IT'S SUPPORTED
Not all Web servers support URL rewriting. If you put up your .htaccess file on one that doesn’t, it will be ignored or will throw up a “500 Internal Server Error.”…
3 Masterful SEO Insights That Will Change Your Life
Image Courtesy: SearchEngineJournal
Some SEO insights offer incremental improvement. Others can change your life forever.
We need both. But today we want to focus on three life-changing insights.
As you can probably guess, these…