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
<?xml version="1.0" encoding="UTF-8"?> | |
<DefaultAssociations> | |
<!-- Web Protocols --> | |
<Association Identifier="http" ProgId="ChromeSSHTM.KRNFTZRS7HSWQNPYUD3H3UQ74E" ApplicationName="Google Chrome Canary" /> | |
<Association Identifier="https" ProgId="ChromeSSHTM.KRNFTZRS7HSWQNPYUD3H3UQ74E" ApplicationName="Google Chrome Canary" /> | |
<!-- Web Files --> | |
<Association Identifier=".htm" ProgId="ChromeSSHTM.KRNFTZRS7HSWQNPYUD3H3UQ74E" ApplicationName="Google Chrome Canary" /> | |
<Association Identifier=".html" ProgId="ChromeSSHTM.KRNFTZRS7HSWQNPYUD3H3UQ74E" ApplicationName="Google Chrome Canary" /> | |
<Association Identifier=".svg" ProgId="VSCodeInsiders.svg" ApplicationName="Visual Studio Code - Insiders" /> |
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 h(html) { | |
return html.replace(/<p>/g, '\n\n') | |
.replace(/<\/p>/g, '') | |
.replace(/<b>/g, '**') | |
.replace(/<\/b>/g, '**') | |
.replace(/<i>/g, '_') | |
.replace(/<\/i>/g, '_') | |
.replace(/<code[^>]*>/g, (match) => { | |
const lm = match.match(/class="[^"]*language-([^"]*)"/); | |
return lm ? '\n```' + lm[1] + '\n' : '```'; |
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
{"name":"Default","settings":"{\"settings\":\"{\\n // ------------------------------------------------\\n // Updates\\n // ------------------------------------------------\\n \\\"update.mode\\\": \\\"start\\\",\\n \\\"update.showReleaseNotes\\\": true,\\n // ------------------------------------------------\\n // Security\\n // ------------------------------------------------\\n \\\"security.workspace.trust.enabled\\\": false,\\n \\\"security.workspace.trust.banner\\\": \\\"never\\\",\\n \\\"security.workspace.trust.emptyWindow\\\": true,\\n \\\"security.workspace.trust.startupPrompt\\\": \\\"never\\\",\\n \\\"security.workspace.trust.untrustedFiles\\\": \\\"open\\\",\\n // ------------------------------------------------\\n // Telemetry\\n // ------------------------------------------------\\n \\\"telemetry.telemetryLevel\\\": \\\"off\\\",\\n \\\"redhat.telemetry.enabled\\\": false,\\n // ------------------------------------------------\\n // Proxy\\ |
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
# an example server: acquaint's MCP server for R sessions | |
r_process <- callr::r_bg( | |
function() acquaint::mcp_server(), | |
stdout = "|", | |
stdin = "|" | |
) | |
Sys.sleep(1) | |
log_cat_client <- function(x, append = TRUE) { |
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
YAHOO_CLIENT_ID="" | |
YAHOO_CLIENT_SECRET="" |
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
// --- Workbook Module --- | |
// Module containing named range definitions for the GMH Data Model Workbook. | |
/** | |
* Get Sheet Names of Current Workbook | |
*/ | |
Workbook.GetSheetNames = TRANSPOSE(SUBSTITUTE(GET.WORKBOOK(1), "[" & GET.WORKBOOK(16) & "]", "")); | |
/** | |
* Define SheetNames |
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
// --- SQL Module --- | |
// Module containing Lambdas for generating SQL DDL Statements. | |
/** | |
* Generates SQL ENUM statements from header and values | |
*/ | |
SQLEnum = LAMBDA(header_cell, values_range, | |
"CREATE TYPE ""survey""." & CHAR(34) & header_cell & CHAR(34) & " AS ENUM (" & CHAR(10) & | |
TEXTJOIN("," & CHAR(10), TRUE, " '" & FILTER(values_range, values_range <> "") & "'") & CHAR(10) & | |
");" |
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
// --- AddressTools Module --- | |
// Module containing Lambdas for working with Addresses. | |
/* | |
* Extract the Street from an Address | |
*/ | |
AddressStreet = LAMBDA(address, LEFT(address,FIND(",",address)-1)); | |
/* | |
* Extract the City from an Adderss |
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
/* | |
* Extract the Street from an Address | |
*/ | |
AddressStreet = LAMBDA(address, LEFT(address,FIND(",",address)-1)); | |
/* | |
* Extract the City from an Adderss | |
*/ | |
AddressCity = LAMBDA(address, TRIM(MID(address,FIND(",",address)+1,FIND(",",address,FIND(",",address)+1)-FIND(",",address)-1))); |
NewerOlder