Skip to content
View jrzmurray's full-sized avatar

Organizations

@deductiv @mknd-io
Block or Report

Block or report jrzmurray

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. deductiv/export_everything deductiv/export_everything Public

    Export Everything Add-On for Splunk

    Python 11 5

  2. deductiv/kvstore_tools deductiv/kvstore_tools Public

    KV Store Tools Redux app for Splunk

    Python 3 5

  3. Download Amazon Kindle library listi... Download Amazon Kindle library listing from browser console @ read.amazon.com to CSV for Goodreads import
    1
    // init
    2
    let xhr = new XMLHttpRequest()
    3
    let domain = 'https://read.amazon.com/'
    4
    let items = []
    5
    let csvData = ""
  4. Helpful Splunk macros Helpful Splunk macros
    1
    # Capitalize first letters of words in a field (e.g. names)
    2
    [upper_first_letters(1)]
    3
    args = field
    4
    definition = mvjoin(mvmap(split($field$, " "), upper(substr($field$, 1, 1)).substr($field$, 2)), " ")
    5