Goals: Add links that are reasonable and good explanations of how stuff works. No hype and no vendor content if possible. Practical first-hand accounts of models in prod eagerly sought.

// Copyright 2019 The MediaPipe Authors. | |
// | |
// Licensed under the Apache License, Version 2.0 (the "License"); | |
// you may not use this file except in compliance with the License. | |
// You may obtain a copy of the License at | |
// | |
// http://www.apache.org/licenses/LICENSE-2.0 | |
// | |
// Unless required by applicable law or agreed to in writing, software | |
// distributed under the License is distributed on an "AS IS" BASIS, |
// Copyright 2019 The MediaPipe Authors. | |
// | |
// Licensed under the Apache License, Version 2.0 (the "License"); | |
// you may not use this file except in compliance with the License. | |
// You may obtain a copy of the License at | |
// | |
// http://www.apache.org/licenses/LICENSE-2.0 | |
// | |
// Unless required by applicable law or agreed to in writing, software | |
// distributed under the License is distributed on an "AS IS" BASIS, |
# Insert your preferred key mappings here. | |
unmapAll | |
# Basic movement | |
map d scrollLeft | |
map h scrollDown | |
map t scrollUp | |
map n scrollRight | |
map ii scrollToTop | |
map I scrollToBottom |
CREATE CONSTRAINT ON (u:User) ASSERT u.eid IS UNIQUE; | |
CREATE CONSTRAINT ON (f:Folder) ASSERT f.name IS UNIQUE; | |
CREATE CONSTRAINT ON (m:Message) ASSERT m.mid IS UNIQUE; | |
CREATE INDEX ON :User(email); | |
LOAD CSV WITH HEADERS FROM "file:///employeelist.csv" AS row | |
MERGE (u:User {eid: row.eid}) | |
SET u.firstName = row.firstName, | |
u.lastName = row.lastName, | |
u.email = row.Email_id; |