To setup your computer to work with *.test domains, e.g. project.test, awesome.test and so on, without having to add to your hosts file each time.
- Homebrew
- Mountain Lion -> High Sierra
To setup your computer to work with *.test domains, e.g. project.test, awesome.test and so on, without having to add to your hosts file each time.
const R = require('ramda'), // 0.26.1 | |
winston = require('winston'); // 2.4.x | |
const winstonConf = { | |
transports : [ | |
{ | |
transportType : 'console' | |
} | |
], | |
strategies : { |
[ | |
{ | |
id : 1, | |
status : 1, | |
lastCheckIn : '3 days', | |
profile : { | |
firstName : 'Greg', | |
lastName : 'Henderson', | |
avatar : 'https://s3.amazonaws.com/uifaces/faces/twitter/felipebsb/128.jpg', | |
birthDate : '03/22/28', |
<?php | |
/** | |
* Convert a multi-dimensional array into a single-dimensional array. | |
* @author Sean Cannon, LitmusBox.com | [email protected] | |
* @param array $array The multi-dimensional array. | |
* @return array | |
*/ | |
function array_flatten($array) { | |
if (!is_array($array)) { |
(function(){ | |
alert(foo); | |
var foobar = 'Goodbye world'; | |
alert(foo); | |
})(); |