The following commands work on macOS High Sierra, not tested in previous versions
$ scutil --dns | grep 'nameserver\[[0-9]*\]'
#!/usr/bin/env bash | |
# | |
SCM_NONE_CHAR='' | |
SCM_THEME_PROMPT_DIRTY="⚡" | |
SCM_THEME_PROMPT_CLEAN="" | |
SCM_THEME_PROMPT_PREFIX="${cyan}[${green}" | |
SCM_THEME_PROMPT_SUFFIX="${cyan}] " | |
SCM_GIT_SHOW_MINIMAL_INFO=true |
# Modified version of Cloud theme by Julián Duque | |
ZSH_THEME_CLOUD_PREFIX="⬢" | |
PROMPT='%{$fg_bold[cyan]%}$ZSH_THEME_CLOUD_PREFIX %{$fg_bold[green]%}%p %{$fg[green]%}%c %{$fg_bold[cyan]%}$(git_prompt_info)%{$fg_bold[blue]%} % ($(node -v)) %{$reset_color%}' | |
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[green]%}[%{$fg[cyan]%}" | |
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}" | |
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[green]%}] %{$fg[yellow]%}⚡%{$reset_color%}" | |
ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[green]%}]" |
'use strict' | |
const meetups = [ | |
{ | |
name: 'MedellinJS', | |
description: 'JavaScript User Group', | |
members: [ | |
{ | |
name: 'Maria F.' | |
}, |
...
up to date in 1.85s
[!] 3 vulnerabilities found [2672 packages audited]
Severity: 2 low | 1 high
Run `npm audit` for more detail
Ok, let's run npm audit
pragma solidity ^0.4.11; | |
contract HelloWorld { | |
uint public balance; | |
address public owner; | |
function HelloWorld() public { | |
owner = msg.sender; | |
balance = 0; | |
} |
0x3172558F6110b37e40335E9D25f7EDAf7c505F4E |
const minimist = require('minimist') | |
const args = minimist(process.argv) | |
switch (args.name) { | |
case 'slave': | |
console.log('Doing things in the slave') | |
startSlave() | |
break | |
default: |
Verifying that "julianduque.id" is my Blockstack ID. https://onename.com/julianduque |
> var a = () => { throw new Error() }
undefined
> a() // arrow function is named (as function statement)
Error
at a (repl:1:23) // we know the error happened at function a
at repl:1:1
at REPLServer.defaultEval (repl.js:265:27)
at bound (domain.js:287:14)
at REPLServer.runBound [as eval] (domain.js:300:12)