SAP Analysis for Office has a bunch of defined functions which can be used in VBA or otherwise, This function list was extracted from the BiExcelBase.tlb
type library.
Function BExGetCellData(iMemberX As String, iMemberY As String, iDataProviderName As String)
Member of BiExcelBase.EaExcelFunctions
Function BExGetData(iDataProviderName As String, iDimensionValueList() As String)
Member of BiExcelBase.EaExcelFunctions
Sub CallbackAfterWorkbookClose()
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
'use strict'; | |
const functions = require('firebase-functions'); | |
const {WebhookClient} = require('dialogflow-fulfillment'); | |
const {Card, Suggestion} = require('dialogflow-fulfillment'); | |
const axios = require('axios'); | |
const nodemailer = require("nodemailer"); | |
const mysql = require('mysql'); | |
const transporter = nodemailer.createTransport({ |
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
'use strict'; | |
const axios = require('axios'); | |
const functions = require('firebase-functions'); | |
const {WebhookClient} = require('dialogflow-fulfillment'); | |
const {Card, Suggestion} = require('dialogflow-fulfillment'); | |
process.env.DEBUG = 'dialogflow:debug'; // enables lib debugging statements | |
exports.dialogflowFirebaseFulfillment = functions.https.onRequest((request, response) => { |
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
function Get-PublicIPInfo { | |
<# | |
.Description | |
Returns Public IP info from ip.nf | |
.Parameter IPAddress | |
Supply an IP address that you would like to lookup. | |
.Parameter ComputerName | |
Names of computers to run this command on. | |
.Parameter Credential | |
Credential used by Invoke-Command when performing the lookup on a remote machine. |
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
/* | |
This Function is designed to clear the adjacent cell to the right of the one | |
that has just been edited - so long as it is within the column we specify | |
(so only edits in column 2 here). | |
*/ | |
function onEdit(e) { | |
// get edited cell from the event object | |
var cell = e.range; |
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
# Path to the profile when installed from the Windows Store. | |
$profilePath = "C:\Users\$Env:Username\AppData\Local\Packages\Microsoft.WindowsTerminal_8wekyb3d8bbwe\LocalState\profiles.json" | |
# Remove existing comments from the profiles.json file. | |
$profile = (Get-Content $ProfilePath) -replace '(?m)(?<=^([^"]|"[^"]*")*)//.*' -replace '(?ms)/\*.*?\*/' | Out-String | ConvertFrom-Json | |
$backupProfilePath = "$home\Documents\WindowsTerminalprofiles.json" | |
Write-Verbose "Backing up profile to $backupProfilePath" | |
$profile | ConvertTo-Json | Set-Content $backupProfilePath |
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
{ | |
"background":"#000000", | |
"black":"#000000", | |
"blue":"#2980b9", | |
"brightBlack":"#7f8c8d", | |
"brightBlue":"#3498db", | |
"brightCyan":"#1abc9c", | |
"brightGreen":"#2ecc71", | |
"brightPurple":"#9b59b6", | |
"brightRed":"#e74c3c", |
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
'use strict'; | |
process.env.DEBUG = 'actions-on-google:*'; | |
// Create and Deploy Your First Cloud Functions | |
// https://firebase.google.com/docs/functions/write-firebase-functions | |
const functions = require('firebase-functions'); | |
const Assistant = require('actions-on-google').ApiAiAssistant; | |
const admin = require('firebase-admin'); |
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
// agent is an instance of WebhookClient | |
function setContextData(agent) { | |
const handler = { | |
set(target, property, value) { | |
const parameters = agent.context.get("data") | |
? agent.context.get("data").parameters | |
: {}; | |
parameters[property] = value; |
NewerOlder