- Installation
- Create PostgreSQL Cluster
- Connect to a PostgreSQL Cluster
- psql
- pgAdmin
- Updating PostgreSQL Cluster
- High Availability
| const MILLISECONDS_PER_MINUTES = 1000 * 60; | |
| const state = { | |
| now: (new Date()), | |
| intervalTimer: null, | |
| }; | |
| const mutations = { | |
| now(state) { | |
| state.now = new Date(); |
| import React from 'react' | |
| import { | |
| ThemeProvider, | |
| theme, | |
| ColorModeProvider, | |
| CSSReset, | |
| Box, | |
| Flex, | |
| IconButton, | |
| useColorMode, |
| <template> | |
| <v-card> | |
| <v-card-text> | |
| {{ category }} | |
| <radio-tree :items="categories" value-key="id" v-model="category" ref="radioTree"></radio-tree> | |
| </v-card-text> | |
| <v-card-actions> | |
| <v-btn @click.stop="nuke()" color="warning">Nuke</v-btn> | |
| </v-card-actions> | |
| </v-card> |
| # -*- coding: utf-8 -*- | |
| """ | |
| Copyright 2018-09-09, Wolfgang Kühn | |
| Fast inter-process communication (ipc) for Python (CPython, PyPy, 2.7, 3.6+) on MS-Windows. | |
| It uses shared memory and eventing. | |
| Example rpc style synchronization: | |
| Server (rpc provider): |
The proposal you’re about to read is not just a proposal. We have a working implementation of almost everything we discussed here. We encourage you to checkout and build our branch: our fork, with the relevant branch selected. Building and using the implementation will give you a better understanding of what using it as a developer is like.
Our implementation ended up differing from the proposal on some minor points. As our last action item before making a PR, we’re writing documentation on what we did. While I loathe pointing to tests in lieu of documentation, they will be helpful until we complete writing docs: the unit tests.
This repo also contains a bundled version of npm that has a new command, asset. You can read the documentation for and goals of that comma
| { | |
| "sync.gist": "3d21f64bee06ae95f3d1b7064f3784ba" | |
| } |
Following mining and findings performed on EVGA GeForce GTX 1070 SC GAMING Black Edition Graphics Card cards.
First run nvidia-xconfig --enable-all-gpus then set about editing the xorg.conf file to correctly set the Coolbits option.
# /etc/X11/xorg.conf
Section "Device"
Identifier "Device0"
Driver "nvidia"
VendorName "NVIDIA Corporation"
| source 'https://rubygems.org' | |
| gem "graphql", github: "rmosolgo/graphql-ruby", branch: "subscriptions" | |
| gem "sinatra" | |
| gem "thin" |
Instructions tested with a Raspberry Pi 2 with an 8GB memory card. Probably also works fine on a Raspberry Pi 3.
Download the latest Raspbian Jessie Light image. Earlier versions of Raspbian won't work.
Write it to a memory card using Etcher, put the memory card in the RPi and boot it up.