Skip to content

Instantly share code, notes, and snippets.

View Park9eon's full-sized avatar
:shipit:
개발한다람쥐

Park Geon · 박 건 Park9eon

:shipit:
개발한다람쥐
View GitHub Profile
@Park9eon
Park9eon / brew-install.sh
Last active April 15, 2026 05:32
brew-install
#!/usr/bin/env bash
say '홈 디렉토리 삭제중...'
test("first test", () => {
expect(1 + 1).toEqual(2)
})
describe("all test", () => {
beforeAll(() => {
console.log("beforeAll")
})
beforeEach(() => {
console.log("beforeEach")
@Park9eon
Park9eon / genpeer
Created April 4, 2022 02:27
Wireguard Generate Peer Script
#!/usr/bin/env bash
name=$1
address=$2
if [[ -z $name ]]; then
echo "Plz input peer name"
exit
fi
[{"day":1,"newMaleUserCount":10.200000000000001,"maleUserCount":10.200000000000001,"maleUserCanReceivedCardCount":5.0489999999999995,"maleUserCantReceivedCard":false,"newFemaleUserCount":10.1,"femaleUserCount":10.1,"femaleUserCanReceivedCardCount":0,"femaleUserCantReceivedCard":true},{"day":2,"newMaleUserCount":10.404000000000002,"maleUserCount":20.604000000000003,"maleUserCanReceivedCardCount":10.147499999999997,"maleUserCantReceivedCard":false,"newFemaleUserCount":10.200999999999999,"femaleUserCount":20.301,"femaleUserCanReceivedCardCount":0,"femaleUserCantReceivedCard":true},{"day":3,"newMaleUserCount":10.61208,"maleUserCount":31.216080000000005,"maleUserCanReceivedCardCount":15.296004899999994,"maleUserCantReceivedCard":false,"newFemaleUserCount":10.303009999999999,"femaleUserCount":30.604009999999995,"femaleUserCanReceivedCardCount":0,"femaleUserCantReceivedCard":true},{"day":4,"newMaleUserCount":10.824321600000001,"maleUserCount":42.04040160000001,"maleUserCanReceivedCardCount":20.49502454999999,"maleUs
//
// Source code recreated from a .class file by IntelliJ IDEA
// (powered by FernFlower decompiler)
//
class Scratch {
Scratch() {
}
public static void main(String[] var0) {
@Park9eon
Park9eon / index.html
Created January 11, 2021 07:41
UMD + unpack + Antd
<html lang="ko">
<head>
<title>UMD</title>
<link type="text/css" rel="stylesheet" href="https://unpkg.com/antd@4.10.1/dist/antd.min.css">
</head>
<body>
<div id="app"></div>
<script src="https://unpkg.com/react@17/umd/react.production.min.js"></script>
<script src="https://unpkg.com/react-dom@17/umd/react-dom.production.min.js"></script>
<script src="https://unpkg.com/babel-standalone@6/babel.min.js"></script>
1. 모든 업데이트
2. 파이어 폭스 다운
3. alacritty 다운로드
4. homebrew 설치
5. ohmyzsh 설치
6. powerlevel10k 설치
7. neovim, tj/n, bat, exa, openjdk 설치
8. Jetbrains 툴 설치 및 설정, 플러그인 다운
9. Jetbrains 폰트 설치 및 세팅
@Park9eon
Park9eon / command.bash
Created August 26, 2020 02:55
Node --max-old-space-size in yarn
node --max-old-space-size=4090 $(which yarn) YARN_COMMAND
@Park9eon
Park9eon / script.sh
Created February 27, 2020 05:43
certbot-manual-dns
#!/usr/bin/env bash
sudo certbot --manual --preferred-challenges dns certonly -d #{domain}
@Park9eon
Park9eon / 변환하기
Created December 2, 2019 08:09
$_GET, $_POST => $this->input->get('')
\$_(GET|POST)\[(['"A-Za-z0-9_-]+)\]
\$this->input->\L$1($2)