top of page
Geeky Scorpio

Tech Notes from
My Desk
Where Learning meets Sharing...
Recent Posts
Archive
Tags
Neo4j: Get label-relationship count
Run the following cypher query to get the label to relationship count match (n)-[r]-(m) return labels(n),count(r) as rel_count, labels(m)...
Neo4j: Get label count
Run the following cypher query to get the label counts call db.labels() yield label call apoc.cypher.run("match (:`"+label+"`) return...
Git: Sync Git remote repository with local
The following link has great information on all methods of sync of Git repository with local. https://www.atlassian.com/git/tutorials/syn...
Git: Getting started with Bitbucket Repository
Assumptions 1. Repository is created within Bitbucket 2. Git installed on your local machine Steps From Git console on your local machine...
Neo4j: "Couldn't load the external resource at:" error
If you get "Couldn't load the external resource at:" error when executing LOAD statement to upload CSV data to Neo4j, check the filename...
Neo4j: Loading CSV data to Neo4j database
Use the following steps to load data in a csv file to Neo4j. Ensure the CSV file has an header to each column to be imported and the...
Notepad++ : Remove the last character from all lines with Regex
Use the following search string in the find and replace window within Notepad++ to remove a specific last character from each line....
Notepad++ : Removing a field between characters with Regex
Use the following search string in the find and replace window within Notepad++ to remove any string between specific characters. Ensure...
Neo4j: Default location of the database and configuration files.
The default database name for neo4j is graph.db and it is located in the following directory Ubuntu: /var/lib/neo4j/data/databases/...
AWS EC2: Putty into Linux EC2 machines
I found this great article on how to putty login to linux AWS EC2 machines http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/putty.html
Home: Blog
Home: Subscribe
bottom of page