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]"
var express = require('express'); | |
var app = express(); | |
var fs = require('fs'); | |
app.listen(3000, function() { | |
console.log("[NodeJS] Application Listening on Port 3000"); | |
}); | |
app.get('/api/play/:key', function(req, res) { | |
var key = req.params.key; |
2019-06-03
Note that Office2019 DO NOT support activate via simple copy/paste plist license file which is the simplest way to activate Office 2016. Fortunately, you can also use the VL Serializer tool, just install Office 2019 and Serializer, then run Serializer to activate.
// Get all users | |
var url = "http://localhost:8080/api/v1/users"; | |
var xhr = new XMLHttpRequest() | |
xhr.open('GET', url, true) | |
xhr.onload = function () { | |
var users = JSON.parse(xhr.responseText); | |
if (xhr.readyState == 4 && xhr.status == "200") { | |
console.table(users); | |
} else { | |
console.error(users); |
Windows Registry Editor Version 5.00 | |
; ============================================================================================================================== | |
; Registry script to fix Windows Explorer overlay icon priority issues with Tortoise and Dropbox. | |
; | |
; Priority is given to the Tortoise and Dropbox overlays. All others are ordered but are beyond the 15 overlays that | |
; Windows will use (Window will only use 11 from this list). | |
; | |
; Refer to the references for additional details. | |
; | |
; Open RegEdit as an administrator. |
var nconf = require('nconf'); | |
var ldap = require('ldapjs'); | |
var async = require('async'); | |
ldap.Attribute.settings.guid_format = ldap.GUID_FORMAT_D; | |
var Users = module.exports = function(){ | |
var options = this._options = { | |
url: process.env["LDAP_URL"], | |
base: process.env["LDAP_BASE"], | |
bindDN: process.env["LDAP_BIND_USER"], |