Installing NODE, NPM , angular

Use Current Release: At te last update of this tutorial, Node.js 10.0.0 is the current Node.js release available. sudo apt-get install curl python-software-properties curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash – Use LTS Release : At the last update of this tutorial, Node.js 8.11.1 is the LTS release available. sudo apt-get install curl python-software-properties curl -sL https://deb.nodesource.com/setup_8.x …

Angular 2 directive to append HTML in directive selector

Angular 2 directive to append HTML in directive selector. I was trying creating a star rating directive for angular 5 project. It was really hard search for me to insert HTML in to directive selector. I know an component can easily allows access to append HTML inside the element. But i needed to do this …

Convert UTC time to most recent text using moment property local and fromNow

How to get recent local time post date from a post stored in UTC date format. moment(this.post.created_at,’YYYY-MM-DD H:m:s’).utc(‘YYYY-MM-DD H:m:s’).local().fromNow() Here is the basic funda you need to follow my current post time stored in this.post.created_at i am converting it into moment using moment.js moment(this.post.created_at,’YYYY-MM-DD H:m:s’) Now we need to get the UTC format of it …

Two months calander code

Two months calender code <!DOCTYPE html> <html> <head> <style> #divCalendar table{float:left;} </style> <title>Simple Month Calendar</title> <script type=”text/javascript”> // Author: Alê Monteiro // Created: 2013-03-06 // E-mail: lu.ale.monteiro@gmail.com // P.S. I’m from Brazil, so the names of the weeks and months are in Portuguese. var Calendar = function(divId) { //Store div id this.divId = divId; // …

Best way to remove index object from the array of object

Best way to remove index object from the array of object. var apps = [{id:34,name:’My App’,another:’thing’},{id:37,name:’My New App’,another:’things’}]; // get index of object with id:37 var removeIndex = apps.map(function(item) { return item.id; }).indexOf(37); // remove object apps.splice(removeIndex, 1);      

Accessing cloud.google.com bitnami project files from ubuntu

Accessing cloud.google.com bitnami project files from ubuntu Site address http://IPADDRESS/ Admin user: user Admin password (Temporary) : PASSWORD   How to generate a SSH key in your PC ? ssh-keygen (see the path for generating key file enter the key filename “/home/shakalya/.ssh/id_rsa”) dff-ssh-key (if same key file name wanna override?) y (passphrase can be leave empty) (again) cat dff-ssh-key …

Resolve PHP date format problem

If you dont understood difference in between m-d-Y and d-m-Y format. We try to simplify the conversion process while taking a string value from input field, convert this to timestamp and again make this format suitable to mysql insertion which is (Y-m-d H:i:s) While inserting a date of birth 7th March 1990 if we type 07-03-1990. What …

All about htaccess redirects in wordpress

All about htaccess redirects in wordpress   HTTPS to HTTP domain redirect <IfModule mod_rewrite.c> RewriteEngine On RewriteCond %{HTTPS} on RewriteRule (.*) http://%{HTTP_HOST}%{REQUEST_URI} [R=301,L] </IfModule>   Permanent 301 redirect your olddomain to a new  www domain? RewriteEngine On RewriteBase / RewriteCond %{HTTP_HOST} !newdomain.com$ [NC] RewriteRule ^(.*)$ http://www.newdomain.com/$1 [L,R=301] Permanent 301 redirect your old domain to new …