Skip to content

Instantly share code, notes, and snippets.

View izumiikezaki's full-sized avatar

ikezaki izumiikezaki

  • Japan
  • 11:56 (UTC +09:00)
View GitHub Profile
@izumiikezaki
izumiikezaki / url_share.js
Last active February 16, 2021 05:57
クロームのブックマークレットを使ってSlackに共有するやつ
javascript: (
function () {
const ENDPOINT = 'https://slack.com/api/chat.postMessage';
const TOKEN = 'トークン';
const CHANNEL = '#チャンネル';
const BY = "@SlackのID";
const url = location.href;
fetch(`${ENDPOINT}?token=${TOKEN}`, { method: 'POST', body: EncodeHTMLForm({ channel: CHANNEL, text: `${url} by ${BY}`, link_names: true, unfurl_links: true }), headers: { "Content-Type": "application/x-www-form-urlencoded; charset=utf-8", } });
function EncodeHTMLForm(data) {
const params = [];
Ireland In The Sahara 水の音 & 海の音
Shake That (Remix) Nate Dogg & Emine
A Day At The Races Jurassic 5 & Perc
Party We Will Throw Now! Warren G & Nate D
melt bitter satomoka
チュープリ ZOC
dreamin dreamin MEG
N.Y. State of Mind Nas
はくちゅーむ BPM15Q
Mass Destruction Lotus Juice & 川村
@izumiikezaki
izumiikezaki / week_counter.html
Created November 14, 2021 18:32
はてなブログに今日が第何週目かを表示するやつ
<p>
今週は<span id="izumi-year"></span>年の第<span id="izumi-week-counter"></span>週目です🐠<br/>
<small>(全<span id="izumi-week-max"></span>週)</small>
</p>
PHP 13 hrs 36 mins ███████████████▍░░░░░ 73.4%
Vue.js 1 hr 51 mins ██░░░░░░░░░░░░░░░░░░░ 10.0%
Blade T... 1 hr 22 mins █▌░░░░░░░░░░░░░░░░░░░ 7.4%
CSS 43 mins ▊░░░░░░░░░░░░░░░░░░░░ 3.9%
JavaScript 35 mins ▋░░░░░░░░░░░░░░░░░░░░ 3.2%