How to filter emails from GitHub in Gmail and flag them with labels.
The labels in this document are just examples.
Filter | Label |
---|
CALL apoc.schema.assert( | |
{Category:['name']}, | |
{Business:['id'],User:['id'],Review:['id']}); | |
CALL apoc.periodic.iterate(" | |
CALL apoc.load.json('file:///home/tomasi/Downloads/dataset/business.json') YIELD value RETURN value | |
"," | |
MERGE (b:Business{id:value.business_id}) | |
SET b += apoc.map.clean(value, ['attributes','hours','business_id','categories','address','postal_code'],[]) |
create index on :Node(name); | |
//load the data in raw form | |
Load csv with headers from "https://docs.google.com/spreadsheets/u/0/d/17WuC_B8RWzsSS8pw-NtY8qWeFFQGCGnCR5uXmENOFUI/export?format=csv&id=17WuC_B8RWzsSS8pw-NtY8qWeFFQGCGnCR5uXmENOFUI&gid=112267709" as csv | |
Merge (n:Node {name: csv.Name, type: csv.Type, tags: csv.Tags, link: csv.Link}); | |
// move the 'type' property to a label and remove it as a property, USING APOC (not supported in Graphgist) | |
MATCH (n:Node) | |
with n, split(n.type, ",") AS futurelabels | |
unwind futurelabels as futurelabel |
No solution
sudo pmset -a hibernatemode 0
pmset -g | grep hibernatemode
hibernatemode 0