Virif

A complete step by step Angular 6 HttpClient guide on consuming RESTful API from the remote server

The following tools, frameworks, and modules are required to complete this Angular 6 tutorial: Node.js (Recommended version) Angular 6 Angular-CLI Terminal (Mac/Linux) or Node Command Line (Windows) IDE or Text Editor We assume that you have downloaded and installed Node.js environment. Now, let’s check the above requirement by open the terminal or Node command line then…

Explore More

most mobile apps will vanish

In the next 3 to 7 years, I expect most mobile apps to vanish. With them, we’ll witness the loss of billions in venture capital that we’ve poured into the mobile startup sector. It will all be burned to ashes, with nothing left but stray lines of code. The vision was that, one day, every legal…

Explore More

Solved issue: SSL (https://) Secured URL Redirection

After intalling free or paid SSL certificate with your domain. If still showing your web address insecure. You need to redirect the http://(insecured) URL to https://(secured) protocol. It is very simple to do with htaccess file. First check your public_html (root directory) of your site. If you found any .htaccess file, then open it in…

Explore More

[Solved Issue] Codeigniter .htaccess in IIS (Windows Server) not working

404 – File or directory not found. when use codeigniter in windows IIS I am Facing error message when deploy codeigniter php site to windows server 2013 (iis8) Error Showing when click in link of sub page: 404 – File or directory not found. The resource you are looking for might have been removed, had…

Explore More

Basic linux commands list

Now we’ll discus about some basic linux commands with examples, you’re almost always going to need those commands, so better to remember them. However from my experience, it’s much easier to remember if you write them with pen on paper, rather than just typing on terminal. 1. pwd command This command prints the location of your…

Explore More

How do I remove a full directory in Linux?

To remove a directory that contains other files or directories, use the following command. rm -r mydir In the example above, you would replace “mydir” with the name of the directory you want to delete. For example, if the directory was named “files”, you would type rm -r files at the prompt. Executing the above command would…

Explore More