Skip to content

Instantly share code, notes, and snippets.

@jo
jo / replicate.sh
Last active April 16, 2022 14:59
A minimalistic CouchDB replicator in Bash with curl and jq
curl --silent "$source_url/_changes?feed=normal&style=all_docs" \
| jq '.results | reduce .[] as $change ({}; . + { ($change.id): $change.changes | map(.rev) } )' \
| curl --silent -XPOST "$target_url/_revs_diff" -d@- -H 'Content-Type:application/json' \
| jq 'to_entries | reduce .[] as $entry ([]; . + ($entry.value.missing | map({ id: $entry.key, rev: . }))) | { docs: . }' \
| curl --silent -XPOST "$source_url/_bulk_get?revs=true&attachments=true" -d@- -H 'Content-Type:application/json' \
| jq '.results | map(.docs) | reduce .[] as $docs ([]; . + ($docs | map(.ok))) | { docs: ., new_edits: false }' \
| curl --silent -XPOST "$target_url/_bulk_docs" -d@- -H 'Content-Type:application/json' \
| jq
@jo
jo / config.json
Last active January 3, 2019 18:10 — forked from DazWorrall/config.json
Faking RHEV in qemu under packer so that cloud init takes its user data from a floppy disk
{
"builders":
[
{
"type": "qemu",
"output_directory": "output",
"iso_url": "trusty-server-cloudimg-amd64-disk1.img",
"iso_checksum": "cf12c9878c9fb71c95d8f8c288761a99",
"iso_checksum_type": "md5",
"ssh_wait_timeout": "300s",
@jo
jo / README.md
Created April 5, 2017 20:22
Welcome note for Nashi Notes

Welcome to Nashi Notes!

I'm glad you're here and you're reading this.

Your Johannes, TF

@jo
jo / my_code.js
Last active March 9, 2017 09:48 — forked from jefbarn/my_code.js
Using Pouchdb _selector plug-in
import PouchDB from 'pouchdb-browser' // Or however you are importing PouchDB using your module system
PouchDB.plugin((PouchDB) => { // Add the 'plug-in' to the Pouchdb instance
let pouchReplicate = PouchDB.replicate
PouchDB.replicate = (source, target, repOptions) => {
let sourceAjax = source._ajax
source._ajax = (ajaxOps, callback) => {
if (ajaxOps.url.includes('_selector')) {
--53189632b3ce5de9dea79cb967b6e0c7
Content-Type: application/json
{"_id":"gnome-rust-couchdb-adventures:text","_rev":"1-45fa252f660e886b336c780f328b0810","text":"Hello CouchDB!"}
--53189632b3ce5de9dea79cb967b6e0c7
Content-Type: application/json
{"_id":"gnome-rust-couchdb-adventures:text","_rev":"2-f0216b155efdac3278a570f594ab0d83","text":"Hello CouchDB!\n<3"}
--53189632b3ce5de9dea79cb967b6e0c7--
@jo
jo / glxinfo
Last active March 9, 2016 11:37
name of display: :0
display: :0 screen: 0
direct rendering: Yes
server glx vendor string: SGI
server glx version string: 1.4
server glx extensions:
GLX_ARB_create_context, GLX_ARB_create_context_profile,
GLX_ARB_create_context_robustness, GLX_ARB_fbconfig_float,
GLX_ARB_framebuffer_sRGB, GLX_ARB_multisample,
GLX_EXT_create_context_es2_profile, GLX_EXT_create_context_es_profile,
@jo
jo / package.json
Last active January 20, 2016 20:49
{
"name": "hello-import",
"version": "1.0.0",
"scripts": {
"build": "rollup -c"
},
"author": "Johannes J. Schmidt <jo@die-tf.de> (http://die-tf.de/)",
"license": "Apache-2.0",
"devDependencies": {
"events": "^1.1.0",
function(doc) {
function emitObject(path, o) {
if (typeof o !== 'object') {
return emit(path, o);
}
for (var key in o) {
emitObject(path.concat(key), o[key])
}
}
@jo
jo / gist:96ad05cb94cd630381d2
Created April 29, 2015 16:07
CouchDB proxy
{
"vars": {
"@gray-base": "#000",
"@gray-darker": "lighten(@gray-base, 13.5%)",
"@gray-dark": "lighten(@gray-base, 20%)",
"@gray": "lighten(@gray-base, 33.5%)",
"@gray-light": "lighten(@gray-base, 46.7%)",
"@gray-lighter": "lighten(@gray-base, 93.5%)",
"@brand-primary": "darken(#428bca, 6.5%)",
"@brand-success": "#5cb85c",