Command line in Windows is more common than it was
Drives > Folders/Directories > Files
Ways to navigate:
-
Absolute = Start from the top
-
Relative = start from current folder
-
home directory:
~
TMScopeRegistry.ts:45 Overwriting grammar scope name to file mapping for scope text.log. | |
Old grammar file: file:///Applications/Visual%20Studio%20Code.app/Contents/Resources/app/extensions/log/syntaxes/log.tmLanguage.json. | |
New grammar file: file:///Users/<snip>/.vscode/extensions/salesforce.salesforcedx-vscode-apex-replay-debugger-48.11.0/syntaxes/apexlog.tmLanguage.json | |
register @ TMScopeRegistry.ts:45 | |
r @ TMGrammarFactory.ts:73 | |
_getOrCreateGrammarFactory @ abstractTextMateService.ts:194 | |
async function (async) | |
_getOrCreateGrammarFactory @ abstractTextMateService.ts:187 | |
(anonymous) @ abstractTextMateService.ts:219 | |
_registerDefinitionIfAvailable @ abstractTextMateService.ts:217 |
' Error thrown: | |
' ---------------------------------------------------------------- | |
' Purpose: Generic error handler. | |
' Logs errors to table "tLogError". | |
' Arguments: lngErrNumber - value of Err.Number | |
' strErrDescription - value of Err.Description | |
' strCallingProc - name of sub|function that generated the error. | |
' vParameters - optional string: List of parameters to record. | |
' bShowUser - optional boolean: If False, suppresses display. | |
' Author: Allen Browne, [email protected] |
------------------------------------------------------------------------------- | |
-- A Microsoft Access Query to get net transaction totals by Fund and Fiscal Year. | |
-- | |
-- The process: | |
---- Incoming: Sum all incoming amounts by Fund and Fiscal Year | |
---- Outgoing: Sum all outcoming amounts by Fund and Fiscal Year | |
---- Result: Incoming - Outgoing by Fund and Fiscal Year | |
-- | |
-- Known to work in MS Access 2010 | |
-- |
/************************************************** | |
/ Button: Email Affiliated Contacts / | |
/ Author: Matt Horine / | |
/ Client: Step Up to Serve / | |
/ Date: 28 January 2015 / | |
/ / | |
/ Description: Button on Affiliated Contacts / | |
/ related list to allow selection and email of / | |
/ affiliated contacts from the Account Page in / | |
/ the same way the Send an Email button allows / |
//////////////////////////////////////////////////////////////// | |
// Title: Send Email from Affiliated Contacts of Organization | |
// Description: | |
// Allows for mass Salesforce emails without templates, with simply a click. | |
// Note that you could easily go over Salesforce's limits if you're not careful. | |
// | |
// By Alex Kadis, based on sources listed below, especially | |
// Matt Horine's "Email Affiliated Contacts button for use with | |
// Salesforce NPSP" | |
// |
//////////////////////////////////////////////////////////////// | |
// Title: Salesforce Send Mass Email from Campaign Members (uses built-in email) | |
// Description: | |
// Allows for mass Salesforce emails without templates, with simply a click. | |
// Note that you could easily go over Salesforce's limits if you're not careful. | |
// | |
// By Alex Kadis, based on sources listed below, especially | |
// Matt Horine's "Email Affiliated Contacts button for use with | |
// Salesforce NPSP" |
//////////////////////////////////////////////////////////////// | |
// Title: Send email to contacts from a list view (no templates needed). | |
// Description: | |
// Allows for mass Salesforce emails without templates, with simply a click. | |
// Note that you could easily go over Salesforce's limits if you're not careful. | |
// | |
// By Alex Kadis, based on sources listed below, especially | |
// Matt Horine's "Email Affiliated Contacts button for use with | |
// Salesforce NPSP" | |
// |
/** | |
* Adds a custom menu to the active spreadsheet, containing a single menu item | |
* for invoking the exportEvents() function. | |
* The onOpen() function, when defined, is automatically invoked whenever the | |
* spreadsheet is opened. | |
* For more information on using the Spreadsheet API, see | |
* https://developers.google.com/apps-script/service_spreadsheet | |
* FROM: https://stackoverflow.com/questions/15788897/create-google-calendar-events-from-spreadsheet-but-prevent-duplicates | |
*/ | |
function onOpen() { |
#!/usr/bin/perl | |
use strict; | |
use warnings; | |
use diagnostics; | |
use Cwd; | |
use File::Find; | |
use File::Copy; | |
use File::Basename; | |
use Cwd 'realpath'; |