Skip to content

Instantly share code, notes, and snippets.

View donysukardi's full-sized avatar

Dony Sukardi donysukardi

View GitHub Profile
@donysukardi
donysukardi / Code.gs
Last active December 14, 2020 08:24
Google Sheets Apps Script
// 1. Run > setup
// - to set the document id
//
// 2. Publish > Deploy as web app
// - enter Project Version name and click 'Save New Version'
// - set security level and enable service (most likely execute as 'me' and access 'anyone, even anonymously)
//
// 3. Copy the 'Current web app URL' and post this in your form/script action
//
// 4. Insert column names on your destination sheet matching the parameter names of the data you are passing in (exactly matching case)
@donysukardi
donysukardi / custom.css
Last active January 14, 2024 22:57
Rounded VS Code Tabs
.tabs-container {
padding-left: 22px;
}
.tabs-container > .tab {
transform: skewX(25deg);
border-radius: 5px 5px 0 0;
height: 28px;
}