Skip to content

Instantly share code, notes, and snippets.

View xagronaut's full-sized avatar

Jeffrey A. Miller xagronaut

View GitHub Profile
@xagronaut
xagronaut / SalesforceTools.html
Last active July 20, 2018 22:51
Bookmarklets for use in Salesforce development (tested in Google Chrome)
<!DOCTYPE html>
<html>
<head>
<title>Salesforce development tool info - Jeffrey Miller</title>
<style type='text/css'>
body {
font-family: Verdana, Helvetica, Arial, sans-serif;
font-size: 12;
}
@xagronaut
xagronaut / GraphToGreatnessResourcesList.md
Created February 13, 2018 22:48
This page contains helpful resources about Neo4j.

Neo4j Resources

This page contains helpful resources about Neo4j.

Manuals and Docs

Neo4j Cypher Refcard

@xagronaut
xagronaut / SoftwareDevelopmentProcessModel.adoc
Last active August 21, 2017 20:28
Software development process model in Neo4j

Software Development Process Model

Introduction

Sometimes software just seems to happen haphazardly, despite our allegiance to diligence and process. Systems creep into our lives through some combination of people, skills, and tools. The result is often a mass of unfamiliar and unclear components written by many authors, with little understanding of the big picture.

@xagronaut
xagronaut / lightingTalkTreasureHunt.md
Last active August 23, 2017 21:59
This is a bookmarklet lightning talk! Follow the QR codes to find the goodies!

Lightning Talk Treasure Hunt

Choices

Just the Info!

Choices

@xagronaut
xagronaut / bookmarkletLightningTalk.md
Last active November 9, 2019 01:41
Bookmarklets are a powerful tool to customize your browsing experience!
@xagronaut
xagronaut / _Bookmarklets_README.md
Last active July 17, 2018 16:24
Some of my favorite bookmarklets

Bookmarklets! by Jeffrey A. Miller ( @xagronaut )

The following are some bookmarklets I've created:

  • Add QR Code to page
  • QR image hover
  • QR link hover

Most of them were created with the assistance of the very helpful bookmarklet creator at mrcoles.com/bookmarklet.

@xagronaut
xagronaut / largePrint.grass
Last active June 13, 2017 16:36
Sample Graph Stylesheet (.grass) file for Neo4j
node {
diameter: 100px;
color: #FFD86E;
border-color: #EDBA39;
border-width: 2px;
text-color-internal: #604A0E;
font-size: 16px;
/* uncomment this line if you want the "name" property to be the default caption */
/* caption: '{name}'; */
}
@xagronaut
xagronaut / 1_SqlDependencies.sql
Last active December 21, 2016 21:07
Analysis query for SQL Server based on the sys.sql_dependencies view. Suitable for CSV export and import into Neo4j.
-- *******
-- * Track which objects in the database depend on other objects
-- *******
;WITH ObjectTypeNames AS (
SELECT [Type] = 'P', [Name] = 'DbProcedure' UNION ALL
SELECT [Type] = 'FN', [Name] = 'DbFunction' UNION ALL
SELECT [Type] = 'U', [Name] = 'DbTable' UNION ALL
SELECT [Type] = 'V', [Name] = 'DbView'
),
ObjectReferences AS (
@xagronaut
xagronaut / emailLinkMaker.html
Last active August 10, 2022 09:43
Generate email links complete with subject and body from custom templates. It uses AngularJS to complete forms, show message preview, and create a mailto link that launches the custom content in your default mail client. You can save generated links as bookmarks, embed in documents, or email them to others!
<!DOCTYPE html>
<html lang='en'>
<head>
<!-- Author: Jeffrey A. Miller, @xagronaut -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- jQuery (CDN) -->
<!-- jQuery v2.x (CDN) -->
<!-- <script type='text/javascript' src='https://code.jquery.com/jquery-2.1.4.js'></script> -->
<!-- jQuery v1.x (CDN) (for Internet Explorer compatibility) -->
<script type='text/javascript' src='https://code.jquery.com/jquery-1.11.3.js'></script>
@xagronaut
xagronaut / Vagrantfile
Created October 27, 2016 23:26
WorldVax.org Linux VM provisioning script
# -*- mode: ruby -*-
# vi: set ft=ruby :
$rootScript = <<SCRIPT
echo "**********************************"
echo "* Modifying hostname"
echo "**********************************"
echo worldvaxdev>/etc/hostname
echo "**********************************"
echo "* Installing unzip"