- 평양냉면
- 메밀국수 (소바)
- 막국수
- 콩국수
- 국밥, 해장국
- 설렁탕
- 감자탕
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 { | |
Canvas, | |
DataSourceParam, | |
dist, | |
ImageShader, | |
rect, | |
RoundedRect, | |
rrect, | |
Shader, | |
Skia, |
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 PhotosUI | |
extension AVAsset { | |
func videoOrientation() -> (orientation: UIInterfaceOrientation, device: AVCaptureDevice.Position) { | |
var orientation: UIInterfaceOrientation = .unknown | |
var device: AVCaptureDevice.Position = .unspecified | |
let tracks :[AVAssetTrack] = self.tracks(withMediaType: AVMediaType.video) |
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 후잉 hide figures | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description 후잉 숫자를 가려드립니다. | |
// @author Robert Park | |
// @match https://whooing.com/ | |
// @match https://new.whooing.com/ | |
// @require https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js | |
// @grant none |
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 r = 3; | |
const comb = [-1, -0.5, 0, 0.5, 1]; | |
let final_combinations = []; | |
( ( (f) => f(f) ) | |
( (f) => (r, v) => { | |
if (r) for (let c in comb) { v.push(comb[c]); f(f)(r-1, v); v.pop(); } | |
else final_combinations.push(v.slice()); | |
} |
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
// Mixamo Animation downloadeer | |
// The following script make use of mixamo2 API to download all anims for a single character that you choose. | |
// The animations are saved with descriptive long names instead of the short ones used by default by mixamo UI. | |
// | |
// This script has been written by gnuton@gnuton.org and the author is not responsible of its usage | |
// | |
// How to use this script | |
// 1. Browse mixamo.com | |
// 2. Log in | |
// 3. Open JS console (F12 on chrome) |
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 timeit | |
statements = \ | |
""" | |
import numpy as np | |
from numba import vectorize | |
def python_f(x,y): | |
if x > y: |
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
class A(object): | |
def p1(self): | |
""" | |
This is P1 | |
:return: nothing | |
""" | |
def p2(self): | |
""" | |
This is P2 |
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
// http://m.podty.me/pod/MU993 | |
copy($("li[data-src]") | |
.map((idx,e)=>[[$(e).find("p").text(),$(e).attr("data-src")]]) | |
.map((idx,e)=>`wget -O "${e[0]}.mp3" ${e[1]}`).toArray().join("\n")) |
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
from glob import glob | |
for filename in glob("[!utf8_]*"): | |
with open(filename, encoding="cp949") as fr, \ | |
open("utf8_" + filename, encoding="utf-8", mode="w") as fw: | |
fw.writelines(fr.readlines()) |
NewerOlder