$ chmod +x millie.sh
$ brew install jq
or
$ apt-get install jq
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
function hds { | |
arrs=("20221029" "20221030" "20221110" "20221112" "20221113") | |
echo | |
echo " 화담숲 체크: https://m.hwadamsup.com/reservation/checkTermsAgree.do" | |
echo | |
for value in "${arrs[@]}"; do | |
result=$(curl -s -d "selDate=$value&itemCode=00001" -X POST https://hwadamsup.com/mReserve/reserveInfo.do | jq '.timeList | map(select(.reQuantity >= 2)) | map(.startTime) | join(", ")') | |
echo " $value: $result" |
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
{ | |
"title": "Esc & Tilde - revised by @dongminkim", | |
"rules": [ | |
{ | |
"description": "Esc as Tilde", | |
"manipulators": [ | |
{ | |
"type": "basic", | |
"from": { | |
"key_code": "escape", |
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
enum class Provider(val service: String) { | |
KAKAO("kakao"), | |
APPLE("apple") | |
} | |
@RestController | |
class TestController { | |
@PostMapping("/test") | |
fun testFunc( |
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
package com.example.auth.models | |
import java.util.* | |
import javax.persistence.* | |
@Entity | |
@Table(name = "authentications") | |
data class Authentication( | |
@get:Id | |
@get:GeneratedValue(strategy = GenerationType.IDENTITY) |
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
.with_frame { | |
&::before { | |
background-image: url("data:image/svg+xml,%3Csvg class='ico_obj' width='160px' height='160px' viewBox='0 0 160 160' version='1.1' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M170,-10 L170,170 L-10,170 L-10,-10 L170,-10 Z M80,0 C20.5777778,0 0,20.5777778 0,80 C0,139.422222 20.5777778,160 80,160 C139.422222,160 160,139.422222 160,80 C160,20.5777778 139.422222,0 80,0 Z' stroke-width='0'%3E%3C/path%3E%3Cpath class='obj_stroke' d='M160,80 C160,139.422222 139.422222,160 80,160 C20.5777778,160 0,139.422222 0,80 C0,20.5777778 20.5777778,0 80,0 C139.422222,0 160,20.5777778 160,80 Z' fill='none'%3E%3C/path%3E%3C/svg%3E"); | |
} | |
} |
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
# set path to kexec.sh | |
alias kexec='~/shortcuts/kexec.sh' |
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
deb http://mirror.kakao.com/ubuntu/ bionic main restricted | |
deb http://mirror.kakao.com/ubuntu/ bionic-updates main restricted | |
deb http://mirror.kakao.com/ubuntu/ bionic universe | |
deb http://mirror.kakao.com/ubuntu/ bionic-updates universe | |
deb http://mirror.kakao.com/ubuntu/ bionic multiverse | |
deb http://mirror.kakao.com/ubuntu/ bionic-updates multiverse | |
deb http://mirror.kakao.com/ubuntu/ bionic-backports main restricted universe multiverse | |
deb http://mirror.kakao.com/ubuntu bionic-security main restricted | |
deb http://mirror.kakao.com/ubuntu bionic-security universe | |
deb http://mirror.kakao.com/ubuntu bionic-security multiverse |
NewerOlder