# | Parts Number | Supersession |
---|---|---|
3 | 93306-30202 | https://www.monotaro.com/p/3472/8355 |
4 | 93102-22014 | https://www.monotaro.com/p/5155/1614 |
7 | 93105-45017 | https://www.monotaro.com/p/5155/5787 |
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 Fuck Elon | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description try to take over the world! | |
// @author og24715 | |
// @match https://twitter.com/* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=twitter.com | |
// @grant none | |
// ==/UserScript== |
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
interface Endpoint<Parameter, Response> { | |
parameter: Parameter, | |
response: Response, | |
} | |
/** | |
* @link https://www.typescriptlang.org/play?#code/JYOwLgpgTgZghgYwgAgKIgCYAcD2owA8ACnFHALYSRQA0yAShAM64hMQB8yA3gLABQyIciykKVaAC5kJMpWo0Bw5FGat20xixxsIi-gF8BAjBAQAbUigtwmTZAEEiASQDC54BHAF02POHsIAA9ITHtuZABtBBxycjhMaSYwKFAAcwBdaV9cfAIAVxAAaxAcAHcQOkKS8pAuAy4+QREcZIIAFWRg0Ix7VBCyBEIiiABPHBg0TFyAumTUkDSODgAKGLiEjGl2uhwsMGAdAH5s6f8wJkj2jMiAclE5CShbjIBKU798S+u71W1dF7IARGfgCGJsMDIOBYYDIAC8yBAEDKjhc7k83iaynYmAA+ggABZwMAfGaEebpOgAIxwOHMEASHH0yjSVFx+SwGGJEFJ5wIEUQMUKYFxwC2iPy5Cp0GQBjoERpOCK8SgRWk1VKFUiGVlHGBq1exn40OAADpcMkVrccRh8USwLdXgBuME6ZI8ZCK5WkIqy+FQmHm1pgK2skUcrmQW7yqEIIXgUXigCMssNxsDFpDt1M9MgduJjpd-CAA | |
**/ | |
declare class APIClient<Endpoints extends { [command: string]: Endpoint<unknown, unknown> }> { | |
post<T extends Extract<keyof Endpoints, string>>(command: T, option?: Endpoints[T]['parameter']): Endpoints[T]['response'] |
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 Anti protector | |
// @namespace https://twitter.com/og24715 | |
// @version 0.1 | |
// @description try to take over the world! | |
// @author og24715 | |
// @match https://www.melonbooks.co.jp/viewer/* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=melonbooks.co.jp | |
// @grant none | |
// ==/UserScript== |
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 Return Product Page After Login | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description try to take over the world! | |
// @author og24715 | |
// @match https://www.melonbooks.co.jp/mypage/ | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=melonbooks.co.jp | |
// @grant none | |
// ==/UserScript== |
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 { composeStories } from '@storybook/testing-react'; | |
import { render } from '@testing-library/react'; | |
import * as stories from './Counter.stories'; | |
const { ClickOnce, ClickTwice } = composeStories(stories); | |
test('Click once', () => { | |
const { container, getByRole } = render(<ClickOnce />); | |
ClickOnce.play({ canvasElement: container }); |
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
alert([...document.querySelectorAll("#main_content > table > tbody > tr > td:nth-child(2)")].filter(element => element.innerText.includes('Dead by Daylight')).map(element => element.parentElement.querySelector('.wht_total').innerText.replace('¥ ', '').replace(',', '')).reduce((a, b) => Number(a) + Number(b))) |
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
module.exports = { | |
"extends": "airbnb", | |
"plugins": [ | |
"babel" | |
], | |
"parser": "babel-eslint", | |
"rules": { | |
"no-underscore-dangle": [ | |
2, { | |
"allowAfterThis": true |
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
#!/usr/bin/env node | |
const { exec } = require('child_process'); | |
const fs = require('fs'); | |
exec("git branch | grep '^\* '", (err, stdout, stderr) => { | |
const branchName = stdout.replace(/\n$/g, ''); | |
const ticketName = branchName.split('/')[1]; | |
const commitEditMessage = process.argv[2]; | |
const commitMessage = fs.readFileSync(commitEditMessage); |
NewerOlder