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 onInstall(e) { | |
onOpen(); | |
} | |
function onOpen(e) { | |
SlidesApp.getUi().createAddonMenu() | |
.addItem('Hightlight(Black)', 'highlightBlack') | |
.addItem('Hightlight(White)', 'highlightWhite') | |
.addToUi(); | |
} |
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 onInstall(e) { | |
onOpen(); | |
} | |
function onOpen(e) { | |
SlidesApp.getUi().createAddonMenu() | |
.addItem('Update TOC Link Page Number', 'updateTocLinkPageNumber') | |
.addToUi(); | |
} |
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 onInstall(e) { | |
onOpen(); | |
} | |
function onOpen(e) { | |
SlidesApp.getUi().createAddonMenu() | |
.addItem('Cartoonish Emphasis', 'createCircularLayout') | |
.addToUi(); | |
} |
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
CREATE OR REPLACE MATERIALIZED VIEW | |
`project.dataset.viwe_table` AS | |
WITH | |
with_path AS ( | |
SELECT | |
*, | |
REGEXP_REPLACE(request_url, r"https?://.*?/", "/") AS path | |
FROM | |
`project.dataset.table` ) | |
SELECT |
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
const { Client, LogLevel } = require("@notionhq/client") | |
const notion = new Client({ | |
logLevel: LogLevel.DEBUG, | |
auth: process.env.NOTION_TOKEN | |
}); | |
(async() => { | |
const pageId = process.env.NOTION_PAGE_ID; | |
const checks = await notion.databases.create({ |
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
2021/04/03 10:28:28 [WARN] Log levels other than TRACE are currently unreliable, and are supported only for backward compatibility. | |
Use TF_LOG=TRACE to see Terraform's internal logs. | |
---- | |
2021/04/03 10:28:28 [INFO] Terraform version: 0.14.6 | |
2021/04/03 10:28:28 [INFO] Go runtime version: go1.15.6 | |
2021/04/03 10:28:28 [INFO] CLI args: []string{"/home/sawafuji/.tfenv/versions/0.14.6/terraform", "apply", "-var-file=default.tfvars"} | |
2021/04/03 10:28:28 [DEBUG] Attempting to open CLI config file: /home/sawafuji/.terraformrc | |
2021/04/03 10:28:28 [DEBUG] File doesn't exist, but doesn't need to. Ignoring. | |
2021/04/03 10:28:28 [DEBUG] ignoring non-existing provider search directory terraform.d/plugins |
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
diff --git client/app/pages/queries/query.html client/app/pages/queries/query.html | |
index 7837571f..14fa8fe3 100644 | |
--- client/app/pages/queries/query.html | |
+++ client/app/pages/queries/query.html | |
@@ -85,9 +85,12 @@ | |
<div class="editor__left__data-source"> | |
<ui-select ng-model="query.data_source_id" remove-selected="false" ng-disabled="!isQueryOwner || !sourceMode" | |
on-select="updateDataSource()" data-test="SelectDataSource"> | |
- <ui-select-match placeholder="Select Data Source...">{{$select.selected.name}}</ui-select-match> | |
+ <ui-select-match placeholder="Select Data Source..." class="align-items-center"> |
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
diff --git client/app/services/query-result.js client/app/services/query-result.js | |
index a267cee0..a0ae32a4 100644 | |
--- client/app/services/query-result.js | |
+++ client/app/services/query-result.js | |
@@ -265,6 +265,10 @@ function QueryResultService($resource, $timeout, $q, QueryResultError, Auth) { | |
} | |
return v; | |
}); | |
+ | |
+ if (filter.multiple) { |
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
#!/usr/bin/env ruby | |
# hatenablog.rb | |
# 別途下記環境変数が必要 | |
# HATENABLOG_CONSUMER_KEY | |
# HATENABLOG_CONSUMER_SECRET | |
# HATENABLOG_ACCESS_TOKEN | |
# HATENABLOG_ACCESS_TOKEN_SECRET | |
# 例 | |
# ruby hatenablog.rb --filename docs/hoge/fuga.md --draft --user hoge --site hoge-fuga.hatenablog.com |
NewerOlder