Skip to content

Instantly share code, notes, and snippets.

View benjsicam's full-sized avatar
:octocat:
Kaizen

Benj Sicam benjsicam

:octocat:
Kaizen
View GitHub Profile

Keybase proof

I hereby claim:

  • I am benjsicam on github.
  • I am benjnextpay (https://keybase.io/benjnextpay) on keybase.
  • I have a public key whose fingerprint is 1769 F783 B7E7 5D01 EE13 2DB6 5978 B4D5 4DEC 4FC9

To claim this, I am signing this object:

@benjsicam
benjsicam / metabase-scaling.md
Last active October 19, 2022 07:53
Metabase Horizontal Scaling

Overview

Below is a Docker Compose file with 3 instances of Metabase connecting to the same PostgreSQL database and a shared volume mount.

version: "3"

services:
  metabase-instance1:
    image: "metabase/metabase:v0.32.9"
@benjsicam
benjsicam / netsuite_file_upload_wizard_css.js
Last active August 16, 2018 02:29
This code is the Client Side Script for a NetSuite Wizard or NetSuite Assistant which has a File Upload functionality.
/**
* Executes when the wizard page loads. Binds a function/callback on the Browse button.
* @returns {Void}
*/
function onPageInit() {
var fileUploadButton = jQuery('#browse');
if (fileUploadButton.length == 0) return;
@benjsicam
benjsicam / netsuite_file_upload_suitelet.js
Last active December 28, 2023 00:00
This code is the File Upload Suitelet for the NetSuite Wizard or NetSuite Assistant which has a File Upload functionality.
/**
* File Upload Suitelet.
* @param {nlobjRequest} request Request object
* @param {nlobjResponse} response Response object
* @returns {Void} Any output is written via response object
*/
function main(request, response) {
if (request.getMethod() == 'GET') {
/* Build the upload form. */
@benjsicam
benjsicam / netsuite_file_upload_wizard_css.js
Last active December 28, 2023 00:00
This code is a NetSuite Wizard or NetSuite Assistant which has a File Upload functionality.
/**
* Executes when the wizard page loads. Binds a function/callback on the Browse button.
* @returns {Void}
*/
function onPageInit() {
var fileUploadButton = jQuery('#browse');
if (fileUploadButton.length == 0) return;
@benjsicam
benjsicam / netsuite_file_upload_wizard.js
Last active October 29, 2021 19:38
This code is a NetSuite Wizard or NetSuite Assistant which has a File Upload functionality.
/**
* File Upload Wizard.
* @param {nlobjRequest} request Request object
* @param {nlobjResponse} response Response object
* @returns {Void} Any output is written via response object
*/
function main(request, response) {
var assistant = nlapiCreateAssistant("File Upload Wizard", true);
assistant.setOrdered(true);
/**
* WIZARD CODE
* This is the step where you create your file upload page.
*/
if (step == 'custstep_upload_file') {
var fileField = this.wizard.addField('custpage_file', 'select', 'File');
var uploadButton = this.wizard.addField('custpage_btn_upload', 'inlinehtml', 'Browse');
fileField.setPadding(2);
fileField.setMandatory(true);
@benjsicam
benjsicam / netsuite_suitetalk_file_download.java
Last active December 27, 2023 23:59
A code snippet that demonstrates how to download a file from the NetSuite file cabinet and save onto a local folder.
private void getFileAndSaveLocally() throws IOException {
//Login to NetSuite Web Service
/*
* Get the File from NetSuite by invoking the get operation
*/
_console.writeLn("Enter Internal ID of the File: ");
String internalID = _console.readLn();
RecordRef NSFileRef = new RecordRef();
NSFileRef.setInternalId(internalID);
@benjsicam
benjsicam / netsuite-online-form-template.html
Last active June 5, 2024 20:00
NetSuite Online Lead Form Template using HTML5, Bootstrap, Google reCaptcha, and jQuery.
<!-- Declare HTML5 DOCTYPE. This is needed because Bootstrap will no work if the DOCTYPE isn't HTML5 -->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Registration Form</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Include Bootstrap CSS from CDN -->
<link href="https://netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/css/bootstrap-combined.min.css" rel="stylesheet">
@benjsicam
benjsicam / netsuite_date_time_zone_util_test.js
Last active December 17, 2015 04:49
Demonstrates how to use netsuite_date_time_zone_util.js and tests its functionality.
/*
* Demonstrates how to use the utility.
*/
var dateTimeInUSWestCoast = new Date();
var convertedDateTime = DateTimeZoneUtils.getCurrentDateTime(1);
var convertedDateTimeText = DateTimeZoneUtils.getCurrentDateTimeText(1, 'datetimetz');
var convertedCompanyDateTime = DateTimeZoneUtils.getCompanyCurrentDateTime();
var convertedCompanyDateTimeText = DateTimeZoneUtils.getCompanyCurrentDateTimeText('datetimetz');