Nouveau does not appear to support Pascal cards right now, so you should use the proprietary NVIDIA driver, available from the Additional Drivers applet.
Panel Dithering
| import sys | |
| import inspect | |
| class A: | |
| pass | |
| class B(A): | |
| pass | |
| const repo = 'vital101/kernl-example-plugin-gitub'; | |
| const token = 'my-token-from-oauth'; | |
| const cloneURL = `https://${token}:[email protected]/${repository}`; | |
| const cloneOptions = { | |
| fetchOpts: { | |
| callbacks: { | |
| certificateCheck: () => { return 1; }, | |
| credentials: () => { | |
| return NodeGit.Cred.userpassPlaintextNew(token, 'x-oauth-basic'); | |
| } |
Git for Windows comes bundled with the "Git Bash" terminal which is incredibly handy for unix-like commands on a windows machine. It is missing a few standard linux utilities, but it is easy to add ones that have a windows binary available.
The basic idea is that C:\Program Files\Git\mingw64\ is your / directory according to Git Bash (note: depending on how you installed it, the directory might be different. from the start menu, right click on the Git Bash icon and open file location. It might be something like C:\Users\name\AppData\Local\Programs\Git, the mingw64 in this directory is your root. Find it by using pwd -W).
If you go to that directory, you will find the typical linux root folder structure (bin, etc, lib and so on).
If you are missing a utility, such as wget, track down a binary for windows and copy the files to the corresponding directories. Sometimes the windows binary have funny prefixes, so
| 'use strict'; | |
| var morgan = require('morgan'); | |
| var os = require('os'); | |
| morgan.token('conversation-id', function getConversationId(req) { | |
| return req.conversationId; | |
| }); | |
| morgan.token('session-id', function getSessionId(req) { | |
| return req.sessionId; |
These rules are adopted from the AngularJS commit conventions.
| START calvin = node(1), sophie = node(2) | |
| CREATE (calvin)-[:LIKES]->(sophie) | |
| MATCH (calvin)-[r:LIKES]->(sophie), (calvin)-[:LIKES]->(sophie) | |
| DELETE r | |
| RETURN count(r) = 1 AS likes |