Skip to content
View W3BGUY's full-sized avatar
🤐
Burnt Out
🤐
Burnt Out
Block or Report

Block or report W3BGUY

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. AdventOfCyber2-Notes AdventOfCyber2-Notes Public

    Notes and stuff from TryHackMe/AdventOfCyber2

    1 1

  2. ZenDesk-NetSuite_Python ZenDesk-NetSuite_Python Public

    ZenDesk to NetSuite Python Integration - Generic Files

    Python 3

  3. On liner that can be used to remove ... On liner that can be used to remove duplicates from an array. Great for use in NetSuite scripts.
    1
    var newArray=oldArray.reduce(function(a,b){if(a.indexOf(b)<0)a.push(b);return a;},[]);
  4. Simple function to calculate the due... Simple function to calculate the due date based on an invoice date and terms ID.
    1
      function calculateDueDate(termID,invDate){
    2
        var dueDate=''
    3
        try{
    4
          var daysToAdd=search.lookupFields({type:'term',id:termID,columns:['daysuntilnetdue']}).daysuntilnetdue;
    5
          dueDate=new Date(format.parse({value:invDate,type:format.Type.DATE}));
  5. jitterbit_NetSuite_to_Salesforce_Cou... jitterbit_NetSuite_to_Salesforce_Country_Conversion.js
    1
    <trans>
    2
    accoundAddressSFCountry=CASE(
    3
      accountAddressNSCountry=="_afghanistan","AF",
    4
      accountAddressNSCountry=="_alandIslands","AX",
    5
      accountAddressNSCountry=="_albania","AL",
  6. NetSuite - Convert Date Object into ... NetSuite - Convert Date Object into NetSuite usable Date Format
    1
    // function to add leading zeros on date parts.
    2
    function zeroPad(num,len){
    3
      var str=num.toString();
    4
      while(str.length<len){str='0'+str;}
    5
      return str;