Some stats: - Total number of links: 24459
This is a report for the documentation comments for the functions of Google Apps Script.
When the documentation comments for functions of Google Apps Script are considered, you will think JsDoc. At Google Apps Script, a part of JsDoc can be used. But, in this report, I would like to introduce the documentation comments including JsDoc.
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 parseNetstat { | |
param([object[]]$Lines) | |
if ($IsWindows) { | |
$skip = 4 | |
} else { | |
$skip = 3 | |
} | |
$Lines | Select-Object -Skip $skip | ForEach-Object { |
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
var oauth = {}; | |
/** @const */ | |
oauth.OAUTH_CLIENT_ID = 'OAUTH_CLIENT_ID'; | |
/** @const */ | |
oauth.OAUTH_CLIENT_SECRET = 'OAUTH_CLIENT_SECRET'; | |
/** | |
* This builds an OAuth2 service for connecting to Spotify |
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
#noEnv | |
#singleInstance, force | |
sendMode input | |
return ; end of auto-execute --------------------------------------------------- | |
!s:: goSub, text_swap | |
!+s::goSub, repeat_last_swap | |
; !+s::goSub, repeat_last_swap_interactive |
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
#Requires -Version 5.1 | |
Using Assembly PresentationCore | |
Using Assembly PresentationFramework | |
Using Assembly WindowsBase | |
Using Namespace System.Collections.Generic | |
Using Namespace System.Collections.ObjectModel | |
Using Namespace System.Globalization | |
Using Namespace System.Reflection | |
Using Namespace System.Windows |
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
#Requires -Version 5.1 | |
Using Assembly PresentationCore | |
Using Assembly PresentationFramework | |
Using Namespace System.Collections.Generic | |
Using Namespace System.ComponentModel | |
Using Namespace System.Linq | |
Using Namespace System.Reflection | |
Using Namespace System.Text | |
Using Namespace System.Windows | |
Using Namespace System.Windows.Input |
April 20, 2019: GAS library for this situation was published. Please check it at https://github.com/tanaikech/FetchApp.
These sample scripts are for requesting multipart post using Google Apps Script.
In most cases, the multipart request is used for uploading files. So I prepared 2 sample situations as follows. For each situation, the request parameters are different.
- Upload a file from Google Drive to Slack.
- Convert an excel file to Spreadsheet on Google Drive using Drive API v3.
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
$T = @" | |
using System; | |
using System.Diagnostics; | |
using System.Runtime.InteropServices; | |
namespace Win32 | |
{ | |
public static class SetupApi | |
{ | |
// 1st form using a ClassGUID only, with Enumerator = IntPtr.Zero |
NewerOlder