import match from './name-match'
console.log([...match('고등어', '꽁치')])[
[ '고', '꽁', '등', '치', '어', '*' ],
[ 4, 7, 5, 5, 3, 0 ],
[ 1, 2, 0, 8, 3 ],| awk -F, '{ gsub(/[" ]/, "", $2) } length($2) == 6 { print $2 }' Item.csv | uniq | sort > ffxiv-wordle.txt |
| { | |
| "sources": [ | |
| { | |
| "name": "Final Fantasy XIV", | |
| "path": "/mnt/c/Users/user/Documents/My Games/FINAL FANTASY XIV - KOREA/screenshots", | |
| "rule": "ffxiv_[YYYY][MM][DD]_[HH][mm][ss]_[SSS].png" | |
| }, | |
| { | |
| "name": "Final Fantasy XIV - Global", | |
| "path": "/mnt/c/Users/user/Documents/My Games/FINAL FANTASY XIV - A Realm Reborn/screenshots", |
import match from './name-match'
console.log([...match('고등어', '꽁치')])[
[ '고', '꽁', '등', '치', '어', '*' ],
[ 4, 7, 5, 5, 3, 0 ],
[ 1, 2, 0, 8, 3 ],| // example: deno run -A main.ts 52 10 | |
| import { decode } from 'https://deno.land/x/pngs@0.1.1/mod.ts' | |
| import puppeteer from 'https://deno.land/x/puppeteer_plus@0.24.0/mod.ts' | |
| const isOdd = async (num: number) => { | |
| const browser = await puppeteer.launch({ | |
| defaultViewport: { width: 1024, height: 1024 }, | |
| }) | |
| try { |
| 🇰🇷 | 🇺🇸 |
|---|---|
| 뜨겁게 불타올랐던 마음 | Heart of ember, autumntide |
| 어느새 식고 잦아들어 | Cooling swiftly, bleeding light |
| 하지만 때를 기다려 | Smold'ring softly, biding time |
| 웅크린 채 고갤 들어 | Marching forward, left behind |
| 🇰🇷 | 🇺🇸 |
|---|---|
| 꺼져가는 생명의 불꽃 | Fire as shadows clash |
| import java.math.BigDecimal | |
| import java.math.MathContext | |
| fun main (args: Array<String>) { | |
| println(calculate("0" + readLine())) | |
| } | |
| val operators: Map<Char, (BigDecimal, BigDecimal) -> BigDecimal> = sortedMapOf( | |
| '+' to { a, b -> a.add(b) }, | |
| '-' to { a, b -> a.minus(b) }, |
| // ==UserScript== | |
| // @name filter-best-parses | |
| // @namespace https://gist.github.com/ChalkPE | |
| // @version 1.0 | |
| // @description filter best parses per job for FF Logs website | |
| // @match https://*.fflogs.com/* | |
| // @run-at document-idle | |
| // ==/UserScript== | |
| (() => { |
| /** | |
| * Required permissions: | |
| * - GitHub PAT: `repo:status` | |
| * - Function ARN: `amplify:GetApp`, `amplify:GetJob` | |
| */ | |
| const AWS = require('aws-sdk') | |
| const { request } = require('https') | |
| const { GITHUB_ACCESS_TOKEN } = process.env |
| import React from 'react'; | |
| import axios from 'axios'; | |
| import { countryCodeEmoji } from 'country-code-emoji'; | |
| type TextRenderer = (v: string) => React.ReactNode | string; | |
| type SetCountry = React.Dispatch<React.SetStateAction<string>>; | |
| type CountryEffect = (ip: string, setter: SetCountry) => void | (() => void); | |
| interface IPAddressProps { | |
| ip: string; |