Skip to content

Instantly share code, notes, and snippets.

View marvac's full-sized avatar

Marc Vaccaro marvac

  • Southern California
View GitHub Profile
@Taiizor
Taiizor / VisualStudio.key
Last active May 25, 2022 04:16
Visual Studio => Product Key / Ürün Anahtarı / Clave de Producto / Clé de Produit
Visual Studio 2012 =>
Premium:
MH2FR-BC9R2-84433-47M63-KQVWC
Visual Studio 2013 =>
Ultimate:
BWG7X-J98B3-W34RT-33B3R-JVYW9
@iloveitaly
iloveitaly / create_and_pay_netsuite_invoice_with_stripe.rb
Last active January 10, 2022 19:37
Example of creating a NetSuite invoice using SuiteTalk and paying it using Stripe and http://SuiteSync.io/
# Michael Bianco <mike@suitesync.io>
# Description: Example of creating a NetSuite invoice using SuiteTalk and paying
# it using a Stripe payment.
# https://dashboard.suitesync.io/docs/payment-application
# Link: https://gist.github.com/iloveitaly/bc4e3fafd58fc2b01cc5e37d8f357dd0
#
# Usage:
#
# export STRIPE_KEY=sk_test NETSUITE_EMAIL=user@company.com NETSUITE_PASSWORD=password NETSUITE_ACCOUNT=
# gem install stripe netsuite
@W3BGUY
W3BGUY / NetSuite_2.0_InventoryItemSearch.js
Last active January 25, 2023 15:20
NetSuite SuiteScript 2.0 - Search for Inventory Items and return an array of all active items.
require(['N/search','N/record'],function(search,record){
function buildItemArray(){
var itemArray=[];
searchItems();
itemArray=runSearch(itemArray);
deleteSearch();
log.debug(itemArray);
}
function searchItems(context){