If you haven't already set your NPM author info, now you should:
npm set init.author.name "Your Name"
npm set init.author.email "[email protected]"
npm set init.author.url "http://yourblog.com"
npm adduser
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>JavaScript Class & Inheritance</title> | |
</head> | |
<body> | |
<script> |
If you haven't already set your NPM author info, now you should:
npm set init.author.name "Your Name"
npm set init.author.email "[email protected]"
npm set init.author.url "http://yourblog.com"
npm adduser
I use the first | |
—– BEGIN LICENSE —– | |
Michael Barnes | |
Single User License | |
EA7E-821385 | |
8A353C41 872A0D5C DF9B2950 AFF6F667 | |
C458EA6D 8EA3C286 98D1D650 131A97AB | |
AA919AEC EF20E143 B361B1E7 4C8B7F04 |
# Create a new Token | |
curl -u 'githubuser' -d '{"note":"Your Application"}' https://api.github.com/authorizations | |
# It is: "ebab4dc37e654bb230a9c69ebcd5f38e9a81e210" | |
#{ | |
# "created_at": "2013-01-04T18:00:28Z", | |
# "app": { | |
# "url": "http://developer.github.com/v3/oauth/#oauth-authorizations-api", |
This should help you get Sendmail installed with basic configuration on Ubuntu.
sudo apt-get install sendmail
/etc/hosts
file: nano /etc/hosts
127.0.0.1 localhost yourhostname
sudo sendmailconfig
sudo service apache2 restart
@extends('layouts.default') | |
@section('content') | |
<subscribers-list inline-template> | |
<div class="main"> | |
<div class="container"> | |
<div class="row"> | |
<div class="row"> | |
<!-- table top --> | |
<div class="col-md-6"> |
/****************************************************************************************** | |
* | |
* Headers for cors. | |
* | |
*****************************************************************************************/ | |
header('Access-Control-Allow-Origin: *'); | |
header('Access-Control-Allow-Methods: POST, GET, OPTIONS, PUT, DELETE'); | |
header('Access-Control-Allow-Headers: Content-Type, X-Auth-Token, Origin, Authorization'); |
<?php | |
trait HttpResponse | |
{ | |
/** | |
* Response unprocessable entity. | |
* | |
* @param array $message | |
* | |
* @return \Illuminate\Http\JsonResponse |
<?php | |
use Illuminate\Http\UploadedFile; | |
use Illuminate\Foundation\Testing\WithoutMiddleware; | |
use Illuminate\Foundation\Testing\DatabaseMigrations; | |
class SubscribersTest extends TestCase | |
{ | |
use DatabaseMigrations, WithoutMiddleware; |