http://blog.gmane.org/gmane.comp.security.openwall.john.user/month=20140601
error: No MPI compiler found john the ripper
## Atom Cheatsheet. | |
#### Project Key Bindings. | |
- 'cmd-shift-p': open the command palette. | |
- 'cmd-p' or 'cmd-t': open the fuzzy finder to find a file. | |
- 'cmd-b': look for a file that is already open. | |
- 'cmd-shift-b': search the list of files modified and untracked in your project repository. | |
- 'ctrl-0': open and focus the the tree view. | |
- 'cmd-shift-f': find and replace in the entire project. |
const http = require('http'); | |
let server = http.createServer(); | |
server.on('request', (request, response) => { | |
let {method, url, headers} = request; | |
console.log(`Received ${method} request for "${url}".`); | |
for (let headerName of Object.keys(headers)) { | |
let headerValue = headers[headerName]; |
'use strict'; | |
/* | |
* Javascript templating system | |
*/ | |
$(document).ready(function() { | |
function loadTemplate(element, path, callback, done) { | |
$.ajax(path).then(function(html) { | |
element.append(html); | |
if (typeof callback === 'function' ) { |
http://blog.gmane.org/gmane.comp.security.openwall.john.user/month=20140601
error: No MPI compiler found john the ripper
native-stream.js uses the reference implementation, compiled with babel to run | |
on latest io.js. | |
stream-bluebird.js is exactly the same as native-stream.js except it uses the | |
latest bluebird Promise implementation. | |
node-stream.js uses the node stream implementation and forced to be async by | |
using process.nextTick() (which is functionally equivalent to the microtask | |
processor) |
Following this guide will set up a local Elasticsearch with Kibana and Marvel using Homebrew and Homebrew Cask
If you already have Java
installed on your system, skip steps Install Cask and Install Java
If you already have Java
and Homebrew
installed on your system, skip steps Prerequisites, start at Install Elasticsearch and Kibana after running $ brew update
$ ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
{ | |
"source": "xe.com", | |
"currency-symbol": { | |
"count": "115", | |
"entry": [ | |
{ | |
"code": "EUR", | |
"unicode-decimal": "8364", | |
"unicode-hex": "20ac", | |
"text": "Euro Member Countries" |