create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
//Wait for relevant code bits to load before starting any tests | |
define(['core.js'], function( core ) { | |
module("Core Tests"); | |
test("Test core methods", function(){ | |
expect(2); | |
equals( 1, 1, "A trivial test"); | |
ok( true, "Another trivial test"); | |
}); |
var DISQUS = function (e) { | |
var g = e.DISQUS || {}; | |
g.AssertionError = function (b) { | |
this.message = b | |
}; | |
g.AssertionError.prototype.toString = function () { | |
return "Assertion Error: " + (this.message || "[no message]") | |
}; | |
g.assert = function (b, d, f) { | |
if (!b) if (f) e.console && e.console.log("DISQUS assertion failed: " + d); |
var ffi = require('ffi'), | |
ref = require('ref'), | |
Struct = require('ref-struct'), | |
Library = require('./Library'), | |
Type = ref.Type, | |
NULL = ref.NULL, | |
isNull = ref.isNull; | |
var groups = ['libs', 'types', 'structs', 'callbacks', 'enums']; |
script(id='greeting', type='text/html') | |
div#example | |
Hello my name is, <%= name %>! |
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