Skip to content

Instantly share code, notes, and snippets.

View sh0umik's full-sized avatar
💭
Talk is Cheap, Show me the Code

Fahim Shariar Shoumik sh0umik

💭
Talk is Cheap, Show me the Code
View GitHub Profile
@ephrimlawrence
ephrimlawrence / marker_selector.dart
Last active November 17, 2019 05:08
Programmatically selecting a marker on google map - flutter android
/// This example uses google_maps_flutter: ^0.5.21+8
/// For guide on how to setup google maps flutter, visit
/// https://pub.dev/packages/google_maps_flutter
/// Preview of this example is available at https://kutt.it/2VlCi9
import 'dart:async';
import 'dart:math';
import 'dart:ui';
import 'package:flutter/material.dart';
@DaniSancas
DaniSancas / neo4j_cypher_cheatsheet.md
Created June 14, 2016 23:52
Neo4j's Cypher queries cheatsheet

Neo4j Tutorial

Fundamentals

Store any kind of data using the following graph concepts:

  • Node: Graph data records
  • Relationship: Connect nodes (has direction and a type)
  • Property: Stores data in key-value pair in nodes and relationships
  • Label: Groups nodes and relationships (optional)