Avatar

Tom Santiago

  • Total activity 698
  • Last activity
  • Member since
  • Following 0 users
  • Followed by 1 user
  • Votes 8
  • Subscriptions 365

Activity overview

Latest activity by Tom Santiago
  • Tom Santiago created an article,

    Enhancing AI enablement with TRiSM: Trust, risk, and security in action

    An effective AI strategy must responsibly integrate with your data. AI trust, risk, and security management (TRiSM) ensures reliability, governance, and compliance across AI workflows if you’re de...

    • Edited
    • 1 follower
    • 0 comments
    • 0 votes
  • Tom Santiago created an article,

    snakecase helper

    Converts a string into snakecase format by replacing spaces, dashes, and other non-word characters with underscores (_). Use it when you need consistent identifiers, especially for systems that pr...

    • Edited
    • 1 follower
    • 0 comments
    • 0 votes
  • Tom Santiago created an article,

    addCommas helper

    The addCommas helper formats a numeric value by adding commas to separate thousands. Use it for improving the readability of large numbers, such as counts, totals, or financial values. Usage {...

    • Edited
    • 1 follower
    • 0 comments
    • 0 votes
  • Tom Santiago created an article,

    modulo helper

    The modulo helper returns the remainder when dividing the first number (a) by the second (b). This is useful for performing arithmetic operations or creating repeating patterns in templates. Us...

    • Edited
    • 1 follower
    • 0 comments
    • 0 votes
  • Tom Santiago created an article,

    trimRight helper

    Removes only trailing whitespace from a string, leaving leading whitespace unchanged. Use it when values may include extra spaces at the end that need to be cleaned up. Usage {{trimRight value...

    • Edited
    • 1 follower
    • 0 comments
    • 0 votes
  • Tom Santiago created an article,

    trimLeft helper

    Removes only leading whitespace from a string, leaving trailing whitespace unchanged. Use it when you need to clean up values that may have extra spaces at the beginning. Usage {{trimLeft valu...

    • Edited
    • 1 follower
    • 0 comments
    • 0 votes
  • Tom Santiago created an article,

    truncateWords helper

    Shortens a string to a set number of words and optionally appends a suffix. This is useful when you need to limit text length in fields, summaries, or previews. Usage {{truncateWords string li...

    • Edited
    • 1 follower
    • 0 comments
    • 0 votes
  • Tom Santiago created an article,

    stripProtocol helper

    Removes the protocol (http://, https://, etc.) from a URL, returning a protocol-relative path. Usage {{stripProtocol url}} url (required): input URL string Examples Remove proto...

    • Edited
    • 1 follower
    • 0 comments
    • 0 votes
  • Tom Santiago created an article,

    stripQuerystring helper

    Removes everything after the ? in a URL, returning only the base path. Use it when you need a clean URL without query parameters. Usage {{stripQuerystring url}} url (required): input string...

    • Edited
    • 1 follower
    • 0 comments
    • 0 votes
  • Tom Santiago created an article,

    sanitize helper

    Removes all markup tags from the input string and returns only the plain text content. This is useful when working with values that may include formatting or markup but need to be stored, displaye...

    • Edited
    • 1 follower
    • 0 comments
    • 0 votes