Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View corecoding's full-sized avatar

Chris Monahan corecoding

View GitHub Profile
@Dids
Dids / NUT_ESXi_7.md
Last active November 27, 2022 16:12
Installing NUT for ESXi 7.x
  1. Set ESXi package acceptance level to community:
esxcli software acceptance set --level=CommunitySupported
  1. Install the VIB:
cd /tmp
wget https://blog.rylander.io/2017/01/15/connect-a-esxi-6.5-host-to-a-ups-connected-to-a-synology-nas/NutClient-ESXi500-1.4.0.tar.gz
tar -xvzf NutClient-ESXi500-1.4.0.tar.gz
@arunpersaud
arunpersaud / transfer_issues_redmine_to_github
Created October 1, 2017 23:43
move issues from redmine to github
# Used this script to transfer issues from my old redmine installation to github
# just used two existing codes to export and import and just had to adapt this a tiny bit
from redminelib import Redmine # from https://python-redmine.com/resources/index.html
import urllib.request
import urllib.error
import urllib.parse
import json
import base64
import sys
@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)