Skip to content

Instantly share code, notes, and snippets.

View okash1n's full-sized avatar

Shintaro Okamura okash1n

View GitHub Profile
@okash1n
okash1n / deleteDMsByChannelId.gs
Last active August 31, 2024 12:53
Slackで誰かに送った自分のDMを全部消すやつ
'use strict';
function deleteDMsByChannelId() {
const token = 'slack_api_token'; // Slack APIのUserトークン(xoxp-)を設定
const channel_id = 'im_id'; // 削除するダイレクトメッセージのチャンネルID(DMの中のメッセージのリンクの「archive/****」の部分)を設定
const api_endpoint = 'https://slack.com/api/conversations.history?channel=' + channel_id;
// DMのメッセージ履歴を取得
const response = UrlFetchApp.fetch(api_endpoint, {
'headers': {
@okash1n
okash1n / insert_row_and_copy_value.vbs
Last active March 9, 2023 23:51
特定の列に値が入っていたら、一行追加して特定列をコピーするVBAスクリプト
Sub insertRowAndCopyValue()
'
' insertRowAndCopyValue
' T列に値が入っていたら下に行を追加して、その行に各種値をコピーする(一行目は除く)
'
'
Dim lastRow As Long
Dim i As Long