Today's Question:  What does your personal desk look like?        GIVE A SHOUT

 WEB


  Be cautious before deciding to use ReactJS in your product

ReactJS is an open source JavaScript library used for writing user interfaces. It revamps the way developers write web applications. More and more front end developers start to use this Facebook crafted library in their products or projects nowadays.However, although ReactJS is an open source library under BSD license, it doesn't mean there is no risk to freely adopts it in your products. If you are building or plain to build some products which may compete with Facebook or its subsidiaries, your license for using ReactJS will be revoked immediately. Kind of surprise, right?In fact, ...

4,037 0       JAVASCRIPT FACEBOOK REACTJS VUE


  Resolving error "SSL certificate problem: self signed certificate in certificate chain"

In a PHP application, cURL is frequently used to make connection to remote server to request some resource. It can be used to transfer data with different protocols such as HTTP, HTTPS, FTP etc.While using cURL in PHP, someone may get an error with message similar to "SSL certificate problem: self signed certificate in certificate chain".This may happen when cURL tries to make a SSL connection server and the server returns a server certificate which is self-signed and it's not trusted by the client(in the client CA store). In this case, you may need to follow below steps to resolve this issue....

28,974 1       PHP SSL CURL TWILIO


  How to upload file to FTP server using C# Asp.Net

This post is about uploading files to FTP server in asp.net development. You will learn step-by-step to upload files programmatically to FTP web server. All the examples shared in this post are intended by professionals to make you learn about the subjectHere, I will explain you an example of Uploading Files to FTP Server programmatically in C#.Net. Using this approach, the Files will be programmatically uploaded to FTP Web Server.For example, I will create a function in which we will simply provide the local file name to upload, upload path of FTP (including host name, FTP username and FTP pa...

28,816 1       ASP.NET DEVELOPMENT


  Show Bootstrap tooltip in AngularJS ng-repeat elements

In contemporary web application development, many front-end frameworks have been used to accelerate the speed of development and circumvent browser compatibility issues. Among them, AngularJS and Bootstrap are two frequently used. AngularJS is a MVC JavaScript framework developed by Google to provide easy synchronization between user view and data model. While Bootstrap is developed by Twitter and it eases the work of designing a simple and concise UI without much manual design work involved. In some web applications, both frameworks are used together.Tooltip is a component provided ...

15,413 6       ANGULARJS NG-REPEAT BOOTSTRAP TOOLTIP


  Top 25 Must Have Wordpress Plugins for 2016

There are nearby 30 thousand WordPress plug-ins available in the market. But you must know the plug-ins, that are worthy for you according to your business & requirements. Here is the list of top 25 WordPress plug-ins according to me & my team that may helpful for you. 1. WordPress SEO by Yoast - Best SEO plugin: Yoast SEO, previously known as a WordPress SEO by Yoast, specially used to boost search engine traffic on your WordPress website. Just install this plug-in and be tension free for SEO rankings. Yoast SEO provides fully optimized blog search visibility. 2. Wordfe...

5,174 3       WORDPRESS PLUGIN DEVELOPMENT MUST HAVE WORDPRESS PLUGINS BEST WORDPRESS PLUGINS FOR WEBSITE WORDPRESS PLUGINS 2016


  A Guide on Creating a Magento 2 Extension

Normal 0 false false false EN-US X-NONE X-NONE

2,171 0       MAGENTO MAGENTO 2 MAGENTO 2 MODULE CREATOR


  Why to Build Modern Web Apps with ASP.NET?

ASP.NET offers multiple options for fabricating cloud-based web applications. Its features such as the ability to cope up with different platforms including Mac, Linux, and Windows along with its open source nature indicate its efficiency. The various architectural modifications in the core framework have made the system more affable, and modular components make the job easier by simplifying the various implications. Microsoft has worked on the roots of this software to render a sophisticated development framework which can be used to formulate apps running in the cloud as well as premise...

3,990 0       WEB DEVELOPMENT ASP.NET DEVELOPMENT WEB APPLICATION DEVELOPMENT .NET DEVELOPMENT


  JavaScript to scroll element into view

In AJAX applications, there are frequent needs to scroll some element into view after some modification to the page. For example, after adding an item or updating an element in an admin panel, the page may need to be scrolled to the item added or updated so that we can see the changes immediately.In these cases, JavaScript can be used to scroll the element we want to show. In Vanilla JavaScript, there is no built-in function which can achieve scroll_element_into_view(), but most of modern browsers provide function like window.scrollTo() which can scroll the page to some position. window.s...

16,258 0       JAVASCRIPT JQUERY SCROLLTO HOW-TO