POST http://192.168.1.1/cgi-bin/webmain.cgiContent-Type: multipart/form-data
| ์ด๋ฆ | ๊ฐ |
|---|
| source /home/chalk/antigen.zsh | |
| antigen use oh-my-zsh | |
| antigen bundle git | |
| antigen bundle sudo | |
| antigen bundle common-aliases | |
| antigen bundle command-not-found | |
| antigen bundle zsh-users/zsh-autosuggestions | |
| antigen bundle zsh-users/zsh-syntax-highlighting | |
| antigen bundle MichaelAquilina/zsh-you-should-use |
| /* fit resize handle position */ | |
| body.overlay::after { | |
| right: 0.25rem; | |
| bottom: 0.25rem; | |
| } | |
| /* round border */ | |
| nav > .container { |
| [57] ๊ฐ์๋ณผ | |
| [41] ๊ฐ์๋ณผํ๊น | |
| [38] ๋์ก๊ฐ์์กฐ๋ฆผ | |
| [34] ๊ฐ์ํ | |
| [28] ๊ฐ์ํ๊น | |
| [28] ๋ฉ์ฌ๋ํฌํ ์ดํ | |
| [20] ๊ฐ์์ฑ๋ณถ์ | |
| [19] ํ์ค๋ฆฌ๊ฐ์ | |
| [18] ๊ฐ์์กฐ๋ฆผ | |
| [18] ์ฃผ๋ฆ๊ฐ์ |
| const R = Math.PI / 180 | |
| const S = [0, 30, 45, 60, 90] | |
| const T = ['sin', 'cos', 'tan'] | |
| const range = n => [...Array(n).keys()] | |
| const merge = oo => Object.assign({}, ...oo) | |
| const rad = (f, a) => Math[f](a * R).toFixed(8) | |
| const inf = x => | |
| x > Number.MAX_SAFE_INTEGER && Number.POSITIVE_INFINITY || |
| setInterval((_ = Date.now() / 30 % 360) => | |
| console.clear() || console.log('%c[Warning]', ` | |
| font-size: 500%; | |
| font-weight: bold; | |
| color: hsl(${_}, 100%, 90%); | |
| background-color: hsl(${_}, 100%, 30%); | |
| text-shadow: .08em .08em hsl(${_}, 100%, 20%)`), 75) |
Rx์ high๋ฅผ ์ฃผ์์ ๋ Cy์์ high๊ฐ ์ฝํ๋ฉด ๋ฒํผx y๊ฐ ๋๋ฆฐ ๊ฒ
byte R[4] = { ?, ?, ?, ? };| function* read (n) { | |
| while ((n = Number(prompt('enter a number')))) yield n } | |
| const main = (arr = [...read()].sort((a, b) => a - b)) => | |
| console.log('arr:', arr.slice(), '\nmin:', arr.shift(), '\nmax:', arr.pop()) |
| const axios = require('axios') | |
| const chatId = ??? | |
| const token = '???' | |
| const api = 'https://api.telegram.org' | |
| const page = 'https://www.ubuntu.com/download/desktop' | |
| const delay = t => new Promise((res, rej) => setTimeout(res, t)) | |
| async function wow () { |