convert from hex by @shallax
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
aahed | |
aalii | |
aargh | |
aarti | |
abaca | |
abaci | |
aback | |
abacs | |
abaft | |
abaka |
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
(async function () { | |
const sleep = t => new Promise(resolve => { setTimeout(resolve, t) }) | |
while (!window.jsSnippetsPromise) await sleep(100) | |
await window.jsSnippetsPromise | |
await sleep(1000) | |
const plugins = _.chain(_.keys(window)) | |
.filter(k => _.startsWith(k, 'dayjs_plugin_')) | |
.value() | |
console.log(`found ${plugins.length} plugins of dayjs`) | |
for (const plugin of plugins) window.dayjs.extend(window[plugin]) |
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
<% function gaScreenView (lineId, name) { | |
return `https://www.google-analytics.com/collect?${Qs.stringify({ | |
an: 'My App', | |
cd: name, // 畫面名稱, | |
cid: lineId.replace(/^U(\w{8})(\w{4})(\w{4})(\w{4})(\w{12})$/, '$1-$2-$3-$4-$5'), // client id | |
ds: 'app', // 資料來源,填寫為 app | |
t: 'screenview', | |
tid: 'UA-xxxxxxxxx-1', // GA 追蹤代碼 | |
uid: lineId, // LINE userId | |
ul: 'zh-tw', // locale |
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
{ | |
"type": "bubble", | |
"hero": { | |
"type": "image", | |
"url": "https://scdn.line-apps.com/n/channel_devcenter/img/fx/01_1_cafe.png", | |
"size": "full", | |
"aspectRatio": "20:13", | |
"aspectMode": "cover" | |
}, | |
"body": { |
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
MIT License | |
Copyright (c) 2020 戴均民 | |
Permission is hereby granted, free of charge, to any person obtaining a copy | |
of this software and associated documentation files (the "Software"), to deal | |
in the Software without restriction, including without limitation the rights | |
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
copies of the Software, and to permit persons to whom the Software is | |
furnished to do so, subject to the following conditions: |
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
{ | |
"awards": [ | |
{ | |
"awarder": "教育部長 蔣偉寧", | |
"date": "2013-06-25", | |
"summary": "「新聞推推樂」作品榮獲 2013 全國大專校院開放軟體創作競賽 雲端網際服務與其他應用組 銅牌", | |
"title": "2013 全國大專校院開放軟體創作競賽 銅牌" | |
} | |
], | |
"basics": { |
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
const axios = require('axios') | |
exports.helloWorld = async (req, res) => { | |
res.set('Access-Control-Allow-Origin', '*') | |
res.set('Access-Control-Allow-Credentials', 'true') | |
if (req.method === 'OPTIONS') { | |
// Send response to OPTIONS requests | |
res.set('Access-Control-Allow-Methods', 'POST, OPTIONS') | |
res.set('Access-Control-Allow-Headers', 'authorization,content-type') |
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
// ==UserScript== | |
// @name 爐石牌組代碼預覽 | |
// @version 1.1.14.6 | |
// @description 預覽文章中牌組代碼的牌組內容 | |
// @author starfi5h(海星) | |
// @namespace https://home.gamer.com.tw/starfi5h | |
// @include https://forum.gamer.com.tw/C.php?*bsn=24044* | |
// @include https://forum.gamer.com.tw/G2.php?*bsn=24044* | |
// @match https://forum.gamer.com.tw/C.php?*bsn=60076*&snA=4483814* | |
// @include https://m.gamer.com.tw/forum/C.php?bsn=24044* |
NewerOlder