David Portabella
David Portabella
refactoring. - all files synced to home directory (.dot files and bin and init) are moved to a files dir; - .dots file is renamed to setup.sh setup.sh boostrap calls...
`.dots` contains the following: ``` if [ $ARG == "bootstrap" ] || [ $ARG == "all" ]; then cd ~ && curl -#L https://github.com/donnemartin/dev-setup/tarball/master | tar -xzv --strip-components 1 --exclude={README.md,LICENSE}...
it's important for a script to exit immediately if a command exits with a non-zero status, otherwise results are unpredictable. this can be achieved by adding `set -e` at the...
if I understood it corretly from README.MD, we can install like this: ``` $ git clone https://github.com/donnemartin/dev-setup.git && cd dev-setup $ ./.dots bootstrap osxprep brew osx ``` and later when...
could you please publish the artifact to maven central? so that we can import your dependency as follows: ``` com.bitlove fnv 1.0.0 ```
Android Debug Bridge (which we are already using to forward the key events to the WifiKeyboard app) also has an API to send key events to the android without requiring...
`scene.setOnKeyPressed(...)` directly calls `sendKeyPressed(...)`. This blocks the app until it can send the request by http to adb. It should instead add these events to a queue, and another thread...
I am trying running the example of the README.ME, but this file does not exist: `http://download.wikimedia.org/enwiki/pages-meta-current.xml.bz2` instead, I downloaded this one: `https://dumps.wikimedia.org/enwiki/20160305/enwiki-20160305-pages-meta-current.xml.bz2`, but `xml2sql` fails to import it. Is this...
we can run a shell command as follows: `:sh apt-get install -y wget` How can add more than one command in one block. I tried these to forms, but they...
`notebooks/machine-learning/Variance - Bias.snb` fails with `groupField` not found on `LineChart`. `notebooks/machine-learning/Spark Example.snb` fails with expecting a Dataset instead of RDD, and I've provided a pull request: https://github.com/andypetrella/spark-notebook/pull/818 However, why are...