I hereby claim:
- I am bermi on github.
- I am bermi (https://keybase.io/bermi) on keybase.
- I have a public key whose fingerprint is 4310 50E0 D622 6BC5 D75C 2EF6 8D1A 9BED 20A3 E86C
To claim this, I am signing this object:
function urlencode() { | |
node -p 'encodeURIComponent(process.argv.slice(1))' $@ | |
} |
+------------------------------+----------------+---------------+ | |
| │ vanilla │ clojure | | |
+------------------------------+----------------+---------------+ | |
| [load] Vans │ 2,823 ops/sec │ 2,805 ops/sec | | |
+------------------------------+----------------+---------------+ | |
| [load] Reebok │ 2,778 ops/sec │ 2,796 ops/sec | | |
+------------------------------+----------------+---------------+ | |
| [recipe.setDefault()] Vans │ 2,882 ops/sec │ ERROR | | |
+------------------------------+----------------+---------------+ | |
| [recipe.setDefault()] Reebok │ 1,400 ops/sec │ ERROR | |
var | |
iframe = document.createElement("iframe"); | |
iframe.src = "http://localhost:5000/"; | |
iframe.style.width = "320px"; | |
iframe.style.height = "568px"; | |
document.body.appendChild(iframe); | |
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
# --------------------------------------------------------- | |
# Customizable Settings | |
# --------------------------------------------------------- | |
VOLUME_NAME="${CASE_SAFE_VOLUME_NAME:-casesafe}" | |
MOUNT_POINT="${CASE_SAFE_MOUNT_POINT:-${HOME}/${VOLUME_NAME}}" | |
VOLUME_PATH="${CASE_SAFE_VOLUME_PATH:-${HOME}/.${VOLUME_NAME}.dmg.sparseimage}" | |
VOLUME_SIZE="${CASE_SAFE_VOLUME_SIZE:-1g}" |
#!/usr/bin/env bash | |
# Exports a flat yaml key:value pairs as environment variables | |
# | |
# To source a yaml file as environment variables run | |
# | |
# . yaml-source env.yml | |
# | |
eval $( | |
cat $1 | |
Lecture 1: Introduction to Research — [📝Lecture Notebooks] [
Lecture 2: Introduction to Python — [📝Lecture Notebooks] [
Lecture 3: Introduction to NumPy — [📝Lecture Notebooks] [
Lecture 4: Introduction to pandas — [📝Lecture Notebooks] [
Lecture 5: Plotting Data — [📝Lecture Notebooks] [[
defmodule Anf do | |
@moduledoc | |
""" | |
Author: Christophe De Troyer | |
""" | |
require Logger | |
############################################################################## | |
# API # | |
############################################################################## |
This gist showcases how DuckDB on nodejs fails silently to handle the same read only database on multiple nodejs processes when running in cluster mode. This behaviour is consistent with the duckdb CLI interface.
Calling (using an in :memory: database)
node cluster.js
outputs the correct result
Forked child
Forked child
#!/usr/bin/env bash | |
# Simple bash and sed templating using delimiters. | |
# | |
# For example, given a template /template-a with the contents | |
# | |
# # This is template A | |
# # | |
# ### EXAMPLE_TEMPLATE_BEGIN | |
# echo "Hello from template A" |