Photo credit: cheers [Prasad Kholkute][1]
This gets long, feel free to skip ahead to a section. This is based on a European centric view point, most specifically UK and Belgian roads.
Photo credit: cheers [Prasad Kholkute][1]
This gets long, feel free to skip ahead to a section. This is based on a European centric view point, most specifically UK and Belgian roads.
I hereby claim:
To claim this, I am signing this object:
tl;dr Here's a really short explanation for JavaScript, as in just the flatmap part.
map
is pretty well understood in JavaScript (and I'm assuming you understand it).
So you 'just' need to make the leap to flatmap. Which is mapping something and flattening the result.
Flattening a JavaScript array is concatenating a 2D array into an array.
Another attempt at explaining monads, using just Python lists and the map
function. I fully accept this isn't a full explanation, but I hope it gets at the core concepts.
{ | |
"data": [ | |
{ | |
"name": "Tiger Nixon", | |
"position": "System Architect", | |
"salary": "$320,800", | |
"start_date": "2011/04/25", | |
"office": "Edinburgh", | |
"extn": "5421" | |
}, |
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" | |
" Maintainer: | |
" Amir Salihefendic | |
" http://amix.dk - [email protected] | |
" | |
" Version: | |
" 5.0 - 29/05/12 15:43:36 | |
" | |
" Blog_post: |
Coming from a Windows world getting into Vim, to me is almost exactly like the struggles I had learning French or Dutch. I spent 10 years learning French growing up and I can't speak a proper sentence. I then moved from England to the Dutch speaking part of Belgium (Flanders) and I learnt to speak Dutch to a conversational level within 2 years.
If you're going to learn Vim you need to immerse yourself in it. I suspect the majority of Vim users only ever use it to make minor file modifications via SSH. That's what I did anyway.
I've used lots of editors in Windows but the one I prefer now is [Sublime Text][2] (ST). However ST has almost all the exact same commands as other editors, with the one major improvement which is Ctrl+P
, we'll come to that later. ST is free to use with a popup once in a while, its a great tool, you should buy a licence.
var links = []; | |
var casper = require('casper').create(); | |
function getLinks() { | |
var links = document.querySelectorAll('div#mw-content-text table.wikitable tbody tr td i b a'); | |
return Array.prototype.map.call(links, function(e) { | |
return 'https://en.wikipedia.org' + e.getAttribute('href'); | |
}); | |
} |
<?php | |
/** | |
* Plugin Name: wp-bcrypt | |
* Plugin URI: http://wordpress.org/plugins/wp-bcrypt/ | |
* Description: wp-bcrypt switches WordPress's password hashes from MD5 to bcrypt, making it harder for them to be brute-forced if they are leaked. | |
* Author: dxw | |
* Author URI: http://dxw.com | |
* Version: 1.0.2 | |
* Licence: GPL2 | |
* |
//------------------------------------------------------------------- | |
// Copyright (c) 2011, Jeff Preshing | |
// http://preshing.com/20110811/xkcd-password-generator | |
// All rights reserved. | |
// | |
// Some parts based on http://www.mytsoftware.com/dailyproject/PassGen/entropy.js, copyright 2003 David Finch. | |
// | |
// Released under the Modified BSD License: | |
// | |
// Redistribution and use in source and binary forms, with or without |
function login($username, $password) { | |
$options = array('cost' => 10); | |
$userdata = 'query to find the user in your framework/PDO prepared query'; | |
$plainText = $password; | |
if ($userdata['legacy']) { | |
$password = md5($password); | |
} |