Skip to content
View matthaak's full-sized avatar

Block or report matthaak

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 Loading

  1. makeCallable.js - use ServiceNow Aja... makeCallable.js - use ServiceNow Ajax classes on the server-side, like regular script includes
    1
    // Script Include "makeCallable"
    2
    // From https://gist.github.com/matthaak/77a8e3842a57d3875356729d8c5464bf
    3
    function makeCallable(obj) {
    4
    	for (var mbr in obj) {
    5
    		if (typeof obj[mbr] === 'function' && obj[mbr].length === 0) {
  2. A ServiceNow Inbound Email Action th... A ServiceNow Inbound Email Action that reduces duplicate Incidents or Cases by leveraging the 'references' email header
    1
    // From https://gist.github.com/matthaak/677d7637c772f6c315242fd899ed0dbb
    2
    // Create one of these Inbound Email Actions for each Target table (Incident, Case, etc.)
    3
    // Action type: Record action
    4
    // Stop processing: False
    5
    // Type: New
  3. ServiceNow wrapper class for comment... ServiceNow wrapper class for comments and work_notes fields
    1
    // From https://gist.github.com/matthaak/9472ccfc01f23921b83e79e781c709d1
    2
    
                  
    3
    var XJournalEntry = Class.create();
    4
    
                  
    5
    XJournalEntry.CONTENT_IGNORE_PREFIX = "System Comment:";
  4. snow-runner snow-runner Public

    Run ServiceNow Background Scripts using node on the command line

    JavaScript 14 5

  5. snow-aws-requester snow-aws-requester Public

    ServiceNow Script Include for signing AWS requests

    JavaScript 1

  6. HashList HashList Public

    ServiceNow server-side implementation of Java LinkedHashSet with special list parsing and GlideElement binding abilities

    JavaScript