Skip to content

Instantly share code, notes, and snippets.

@josephnwachukwu
josephnwachukwu / meta-tags.md
Created March 2, 2023 08:22 — forked from whitingx/meta-tags.md
Complete List of HTML Meta Tags

Copied from http://code.lancepollard.com/complete-list-of-html-meta-tags/

Basic HTML Meta Tags

<meta charset='UTF-8'>
<meta name='keywords' content='your, tags'>
<meta name='description' content='150 words'>
<meta name='subject' content='your website's subject'>
<meta name='copyright' content='company name'>
@josephnwachukwu
josephnwachukwu / add_two_times.js
Created December 9, 2019 15:56 — forked from joseluisq/add_two_times.js
Add two string time values (HH:mm:ss) with javascript
/**
* Add two string time values (HH:mm:ss) with javascript
*
* Usage:
* > addTimes('04:20:10', '21:15:10');
* > "25:35:20"
* > addTimes('04:35:10', '21:35:10');
* > "26:10:20"
* > addTimes('30:59', '17:10');
* > "48:09:00"
@josephnwachukwu
josephnwachukwu / README-Template.md
Last active August 22, 2018 20:10 — forked from PurpleBooth/README-Template.md
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

credApp.controller('collectLiteCtrl', function($scope, $state, $log, $rootScope, $stateParams) {
$rootScope.$state = $state;
$rootScope.$stateParams = $stateParams;
$state.transitionTo('base.collectLite.entityDetails');
$scope.select = function(state) {
switch (state) {
case "entityDetails":
$state.transitionTo('base.collectLite.entityDetails');
break;
case "identifiers":