This file contains hidden or 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
[ | |
{ | |
"hex_code": "#AC487E", | |
"rgb": [172, 72, 126], | |
"description_ko": "진달래" | |
}, | |
{ | |
"hex_code": "#8F5165", | |
"rgb": [143, 81, 101], | |
"description_ko": "개암핑크" |
This file contains hidden or 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
/** | |
* querySelector | |
* @param {string} query | |
* @returns {HTMLElement} value of querySelector | |
*/ | |
const q = (query) => document.querySelector(query) | |
/** | |
* DOM 요소 숨기기 | |
* @param {Element | null} element 요소 |
This file contains hidden or 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
/* 변환하기 귀찮아서 만든 대충 변환하는 유틸 */ | |
/* 라이센스: The Unlicense */ | |
/* Node.js로 실행해주세요 */ | |
import fs from "node:fs/promises" | |
const bitmapPath = "./assets/minecraft/textures/font/" | |
const includePath = "./assets/minecraft/font/include" | |
const bitmapPrefix = "unicode_page_" |
This file contains hidden or 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
bbs.ruliweb.com###main_top_game_news2 > .widget_page_index_1 |
This file contains hidden or 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
using System; | |
using System.IO; | |
using System.Linq; | |
namespace Java_practice_exporter | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ |
This file contains hidden or 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 { cLog } from "chocolog" | |
import encoding from "encoding" | |
import { EventEmitter } from "events" | |
import { HID } from "node-hid" | |
export class HidScanner extends EventEmitter { | |
private hid:HID | |
private startTime:number = 0 | |
private lastTime:number = 0 | |
private lastAltTime:number = 0 |
This file contains hidden or 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 { spawn } = require('child_process') | |
function pipe(cp) { | |
cp.stdout.on('data', (data) => { | |
console.log(`stdout: ${data}`); | |
}); | |
cp.stderr.on('data', (data) => { | |
console.log(`stderr: ${data}`); | |
}); | |
cp.on('close', (code) => { |
This file contains hidden or 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
{ | |
"서울특별시": { | |
"강남구": { | |
"개포동": null, | |
"논현동": null, | |
"대치동": null, | |
"도곡동": null, | |
"삼성동": null, | |
"세곡동": null, | |
"수서동": null, |
This file contains hidden or 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 fs from "fs-extra" | |
const fs = require("fs-extra") | |
const dir = __dirname + "/sounds/" | |
async function run() { | |
const list = await fs.readdir(dir) | |
const mapper = new Map() | |
list.sort() | |
for (const file of list) { | |
if (file.startsWith("Normal_Female_Emotion") || file.startsWith("Normal_Male_Emotion")) { |
This file contains hidden or 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 fs = require("fs-extra") | |
const request = require("request-promise-native") | |
const latitude = 47.6503649 | |
const longtitude = -122.3754345 | |
async function run() { | |
// const nordvpnAPI = await fs.readJSON("~\\Documents\\server.json") | |
console.log("Downloading...") |
NewerOlder