I hereby claim:
- I am tobiasmuehl on github.
- I am muehlio (https://keybase.io/muehlio) on keybase.
- I have a public key ASDJaB5z8q9w5to4xFIfQHNU3T0tb_avY-sy9evp9PfHTgo
To claim this, I am signing this object:
#!/usr/bin/env bash | |
set -e | |
# Pre-pre-flight? 🤷 | |
if [[ -n "$MSYSTEM" ]]; then | |
echo "Seems like you are using an MSYS2-based system (such as Git Bash) which is not supported. Please use WSL instead."; | |
exit 1 | |
fi | |
source "$(dirname $0)/install/_lib.sh" # does a `cd .../install/`, among other things |
#!/bin/bash | |
apt install -y jq curl | |
COMPOSE_VER=$(curl -H "Accept: application/vnd.github.v3+json" https://api.github.com/repos/docker/compose/releases/latest | jq -r '.name' | grep -oP "v[0-9]+(\.[0-9]+)+$") | |
mkdir -p ~/.docker/cli-plugins/ | |
OS=$(uname -s) | |
curl -SL https://github.com/docker/compose/releases/download/$COMPOSE_VER/docker-compose-${OS,,}-$(uname -m) -o ~/.docker/cli-plugins/docker-compose | |
chmod +x ~/.docker/cli-plugins/docker-compose |
I hereby claim:
To claim this, I am signing this object:
// 1. Scroll to bottom of the FB page to load all posts | |
// 2. Copy jQuery into the dev console, so that $ becomes available | |
// 3. Execute this script, which will expand all posts, comments and comments replies | |
// 4. Rerun to make sure every post/comment is picked up (after console.log is not logging more events) | |
// reset array | |
window.a = []; | |
// fill with links | |
$('.UFIPagerLink, .UFIReplySocialSentenceLinkText').add('div.userContent .see_more_link').add('div.userContent .see_more_link').each(function() { window.a.push(this) }); |
> [email protected] start D:\Work\OriginalOrCopy\react-hot-boilerplate | |
> node server.js | |
Listening at http://localhost:3000/ | |
Hash: 014e3109713f89641db3 | |
Version: webpack 1.13.1 | |
Time: 566ms | |
Asset Size Chunks Chunk Names | |
bundle.js 275 kB 0 [emitted] main |
> [email protected] start D:\Work\OriginalOrCopy\react-hot-boilerplate | |
> node server.js | |
Listening at http://localhost:3000/ | |
Hash: b2aedb93a03c88a73cf9 | |
Version: webpack 1.13.1 | |
Time: 593ms | |
Asset Size Chunks Chunk Names | |
bundle.js 275 kB 0 [emitted] main |
const Post = new GraphQLObjectType({ | |
name: "Post", | |
description: "This represent a Post", | |
fields: () => ({ | |
_id: {type: new GraphQLNonNull(GraphQLString)}, | |
title: { | |
type: new GraphQLNonNull(GraphQLString), | |
resolve: post => (post.title || "Does not exist") | |
}, | |
content: {type: GraphQLString} |