This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ | |
| { | |
| "id": "667fdf0f9a80a951", | |
| "type": "tab", | |
| "label": "GrapeWeb v3", | |
| "disabled": false, | |
| "info": "", | |
| "env": [] | |
| }, | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| curl –compressed -sD – -L -e “http://google.com” -A “Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)” “https://blogs.msdn.microsoft.com/mssmallbiz/2017/07/11/largest-free-microsoft-ebook-giveaway-im-giving-away-millions-of-free-microsoft-ebooks-again-including-windows-10-office-365-office-2016-power-bi-azure-windows-8-1-office-2013-sharepo/” | grep -E -i “PDF” | sed -n ‘s/.*href=”\([^”]*\).*/\1/p’ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Logging and configuration functions adapted from the script: | |
| * 'A Google Apps Script for importing CSV data into a Google Spreadsheet' by Ian Lewis. | |
| * https://gist.github.com/IanLewis/8310540 | |
| * @author [email protected] (Ian Lewis) | |
| * @author [email protected] (Shane Dunn) | |
| * De Bortoli Wines July 2017 | |
| */ | |
| /* =========== Globals ======================= */ | |
| /** |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Logging and configuration functions adapted from the script: | |
| * 'A Google Apps Script for importing CSV data into a Google Spreadsheet' by Ian Lewis. | |
| * https://gist.github.com/IanLewis/8310540 | |
| * @author [email protected] (Ian Lewis) | |
| * @author [email protected] (Shane Dunn) | |
| * De Bortoli Wines July 2017 | |
| */ | |
| /* =========== Globals ======================= */ | |
| var CONFIG_SHEET = 'Configuration'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* =========== Setup Menu ======================= */ | |
| /** | |
| * Create a Menu when the script loads. Adds a new csvconfig sheet if | |
| * one doesn't exist. | |
| */ | |
| function onOpen(e) { | |
| var ui = SpreadsheetApp.getUi(); | |
| // Or DocumentApp or FormApp. | |
| ui.createMenu('DBW Menu') | |
| .addItem('Weight Adjustment Report', 'createReport') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //add a menu when the spreadsheet is opened | |
| function onOpen() { | |
| var ui = SpreadsheetApp.getUi(); | |
| // Or DocumentApp or FormApp. | |
| ui.createMenu('Calendar Menu') | |
| .addItem('Update Calendar', 'pushToCalendar') | |
| .addToUi(); | |
| } | |
| //push new events to calendar |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * == A script to automate data load from existing National Cold Call spreadsheet. == | |
| * | |
| * Adapted from and using the logging and configuration functions from the script: | |
| * 'A Google Apps Script for importing CSV data into a Google Spreadsheet' by Ian Lewis. | |
| * https://gist.github.com/IanLewis/8310540 | |
| * @author [email protected] (Ian Lewis) | |
| * @author [email protected] (Shane Dunn) | |
| * De Bortoli Wines Nov 2016 | |
| */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| curl -H "Content-Type: application/json" -X POST -d '{"authentication": {"username": "sdun","password": "xxxx"},"call": {"library": "dbgmvint.p", "procedure": "getVintage"}}' http://visched-dev.debortoli.private:3000/qad | |
| curl -H "Content-Type: application/json" -X POST -d '{"authentication": {"username": "****","password": "****"},"call": {"library": "dbgmblock.p","procedure": "getSingleBlockDetail", "filters": [{"procedure": "getSingleBlockDetail", "block_ids": [337, 339, 1150]}]}}' http://visched-dev.debortoli.private:3000/qad | |
| curl -H "Content-Type: application/json" -X POST -d '{"authentication": {"username": "****","password": "****"},"call": {"library": "dbgmblock.p","procedure": "setActualBlockTest", "action": [{"procedure": "setActualBlockTest", "block_id": 337, "date": "2015-01-05", "sequence": 43200, "source": "V"}]}}' http://visched-dev.debortoli.private:3000/qad | |
| curl -H "Content-Type: application/json" -X POST -d '{"authentication": {"username": "****","password": "****"},"call": {"library": "dbgmb |