You can decide 'App name' freely.
https://api.slack.com/apps
This file contains 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
#include "stdio.h" | |
#include "stdlib.h" | |
#include "string.h" | |
// 数独解読プログラム | |
int np[9][9]; //数独表 | |
int fixed[9][9]; //最初から数字が入っていた場合は1 | |
// 数独表生成(空欄は0, 区切り文字はなしorカンマorスペース) |
This file contains 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
import urllib.request | |
import base64 | |
import sys | |
import os | |
# BASIC認証を使用する: download.py usr psw | |
def auth(url): | |
usr = sys.argv[1] | |
psw = sys.argv[2] | |
basic_header = base64.b64encode('{}:{}'.format(usr,psw).encode('utf-8')) |
This file contains 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
/* [Chrome]各種不具合対応 */ | |
img { | |
image-rendering: -webkit-optimize-contrast; | |
} | |
.blocks-gallery-grid, .wp-block-gallery{ | |
width:100%; | |
} | |
/* 色変更 */ |
This file contains 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
/* アイコンを丸くする */ | |
.account__avatar,.account__avatar-overlay-base,.account__avatar-overlay-overlay{ | |
border-radius:50%; | |
} | |
.account__avatar-overlay-base{ | |
width:40px; | |
height:40px; | |
background-size: 40px 40px; | |
} |
This file contains 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
/*緑ベースのUIにする*/ | |
svg.r-13gxpu9.r-4qtqp9.r-yyyyoo.r-16y2uox.r-1q142lx.r-8kz0gk.r-dnmrzs.r-bnwqim.r-1plcrui.r-lrvibr,.r-nw8l94 { | |
color: #00BC00; | |
} | |
.r-b5skir { | |
background-color: #00BC00; | |
} | |
/*サイドバーを非表示にする*/ |
This file contains 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
:root{ | |
--color-mastodon:#008cff; | |
--color-hatenablog:#444444; | |
--color-qiita:#55C500; | |
--color-twitter:#1DA1F2; | |
--color-github:#44494e; | |
--color-soundcloud:#f50; | |
--color-twitch:#7940CF; | |
--color-youtube:#FF0000; | |
--color-facebook:#3C5A99; |
This file contains 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
# coding: utf-8 | |
# 参照 | |
import copy | |
import pathlib | |
import glob | |
import re | |
import pprint | |
import openpyxl | |
import sys |