Hacker Newsnew | past | comments | ask | show | jobs | submit | lordfoo's commentslogin

> zero sum re-allocation games for which intermediaries get a cut

If intermediaries get a cut, wouldn't that make the games negative-sum?


presumably if a transaction is taking place, the parties involved value the state of affairs after the transaction more than they did what came before, so value is being created, even including the transaction cost.


Mirrors flip things front-to-back


Physics Girl explains this in the video.


Would you mind expanding on this with an example? I'm trying to improve performance of my bash logging


So this line only redirects all script output to a file as well as ensure that that output makes it onto your screen at the same time.

It is unstructured only in the way you allow any running command within your script to dump their output.

I run most commands inside my scripts with `> /dev/null 2>&1` and then rely on exit codes to wrap structured information to be echoed out with this function:

echo_l(){echo;echo '--------';echo "${1}";echo '--------';echo}

Or functions such as this to populate a log:

log_cat(){echo "${1}" >> ${__LOG} }

But the tee named pipe is the winner.

PS. The __DOC_LOCAL and __DIR variables start with these magic variables below. These variables are a life saver and allow easy directory and file manipulation, they kind of setup a top-level context:

# Set magic variables for current file & dir

__DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"

__FILE="${__DIR}/$(basename "${BASH_SOURCE[0]}")"

__SCRIPT="$(basename ${__FILE})"

__BASE="$(basename ${__FILE} .sh)"

__ROOT="$(cd "$(dirname "${__DIR}")" && pwd)"


+1. My goal is to learn how to robustly do any logging whatsoever. Eager to learn new tricks.


Do you just want to log the scripts execution or do you want something more structured? If it's the former you can redirect the output from within the bash script with this (apologies for any condescension, I'm not familiar with your skill tree):

  if [ ! -t 1 ]; then
    exec > /my/log/file 2>&1
  fi
The if statements tests if your at an interactive prompt, if your not all output from the script get's redirected to /my/log/file. The above poster is instead redirecting into a subprocess " > (tee)" that will both print the output and log it.

It should be noted that often the bottleneck is the terminal itself, try running your scripts with a "> /dev/null" to suppress output and verify the slow part is actually the script.


> This is what ETFs do

ETFs aren't necessarily index funds

https://www.forbes.com/sites/rickferri/2014/01/16/etf-does-n...



Instead of s3fs, what's wrong with using the aws s3 cli? That's what we do for our clients' SFTP servers


S3fs means you can use most existing apps without managing local storage. It doesn’t work quite as well in practice but the concept is appealing if you need to support software which wasn’t designed for AWS and uses non-trivial data volumes.


Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: