This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
const statusCodes = require('http').STATUS_CODES; | |
function createError(code, name) { | |
return function(message) { | |
Error.captureStackTrace(this, this.constructor); | |
this.name = name; | |
this.message = message; | |
this.statusCode = code; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<table> | |
<tbody> | |
<tr> | |
<td style="border-right:0px solid #000 !important;"> | |
<iframe src="https://app.box.com/embed/preview/crj8xbocq90145ypwvngp81wvfgv2ntw?theme=dark" width="300" height="400" frameborder="0" allowfullscreen="" webkitallowfullscreen="" msallowfullscreen=""> | |
</iframe> | |
</td> | |
<td style="border-left:0px solid #000 !important;"> | |
<h2>Insurance Claim Demo Guide</h2> | |
<p>Get the help you need determining how much coverage may be right for you and your family |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Jeremie Miserez <[email protected]>, 2016 | |
// | |
// A little bit of Javascript to let you export your Google Music library, playlists, and album track lists :) | |
// | |
// I posted this as an answer here: http://webapps.stackexchange.com/questions/50311/print-playlist-from-google-play-music | |
// | |
// 1. Go to: https://play.google.com/music/listen#/all (or your playlist) | |
// | |
// 2. Open a developer console (F12 for Chrome). Paste | |
// code below into the console. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://confluence.atlassian.com/jirakb/how-to-migrate-projects-from-one-jira-cloud-application-to-another-779160766.html | |
Purpose | |
At the present moment there is no project import available for JIRA Cloud applications. As a workaround customers can follow the guide in this KB. | |
Solution | |
(info) If the target instance has some data to be kept then please follow How to merge two different JIRA Cloud applications together. | |
If the target instance has nothing to be kept (clean new instance): | |
You can prepare a full export of your backup with attachments using the JIRA Backup Manager as per Exporting issues. | |
Import the backup generated above to your new Cloud instance as per How to restore a JIRA Cloud application backup into another JIRA Cloud application. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"status": "success", | |
"result": { | |
"totalRecords": 24, | |
"nextPageToken": "16", | |
"listOfParents": [], | |
"listOfItems": [ | |
{ | |
"videoProvider": null, | |
"videoId": null, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://www.digitalocean.com/community/tutorials/how-to-secure-nginx-with-let-s-encrypt-on-centos-7 | |
http://www.tecmint.com/setup-https-with-lets-encrypt-ssl-certificate-for-nginx-on-centos/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Pre-Flight Check | |
These instructions are intended specifically for installing NVM (Node Version Manager) on a single CentOS 7 node. | |
I’ll be working from a Liquid Web Core Managed CentOS 7 server, and I’ll be logged in as root. | |
Step #1: Install NVM (Node Version Manager) | |
Use the following curl command to kick-off the install script: | |
curl https://raw.githubusercontent.com/creationix/nvm/v0.25.0/install.sh | bash | |
At the time of publication, NVM v0.25.0 was the most recent version available. You should check the GitHub project page for the latest release of NVM, and adjust the above command to include the newest version. For example, if the most recent version was 0.30.2, then your command would be similar to: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://blog.clevertap.com/fixing-notification-icon-for-android-lollipop-and-above/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Few day ago we showed you how to install Webmin on Ubuntu 14.10. This brief tutorial is going to show you how to install the same Webmin on a CentOS 7 machine. | |
For those who don’t know, Webmin is a web-based tool to mange every aspect of your Unix-like systems. From creating new accounts to managing file permissions to installing applications and services, Webmin allows you to perform all these tasks easily from any modern web browser. | |
Instead of using the command line console or terminal, new systems administrators could install Webmin and perform all system management from via a web browser without sacrificing time and efforts. Webmin also enables remotely management of your servers. | |
Before you continue with the installation, please make sure you have root level permissions to your system. If you don’t have root access the installation may fail. | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# install EPEL with yum | |
yum -y install epel-release | |
# install php-mcrypt | |
yum -y install php-mcrypt |
NewerOlder