Skip to content

Instantly share code, notes, and snippets.

엘리베이터 스피치

고객 지원은 저희 깃플에게 맡기고, 여러분의 핵심 서비스에 집중하세요.

고객지원 센터를 구축 하려는 홈페이지 및 모바일앱 서비스 제공사를 위해 채팅기반의 고객지원 서비스깃플 채팅상담상담원의 고객대응 생산성을 높여주고, 앱 사용자가 쉽게 문의할수 있도록 도와줍니다. 네이버톡톡이나 카톡같이 타사 플랫폼에 종속되는 것과 다르게

@ys-qb
ys-qb / prism.css
Created August 24, 2019 13:31
prism
/* PrismJS 1.17.1
https://prismjs.com/download.html#themes=prism-dark&languages=markup+css+clike+javascript+markdown */
/**
* prism.js Dark theme for JavaScript, CSS and HTML
* Based on the slides of the talk “/Reg(exp){2}lained/”
* @author Lea Verou
*/
code[class*="language-"],
pre[class*="language-"] {
@ys-qb
ys-qb / slack-files-downloader.sh
Last active August 31, 2023 12:41 — forked from greird/slack-files-downloader.sh
Download all files from a Slack workspace export folder.
#!/bin/bash
#
# This script will browse a Slack export folder and download all files in a new /export folder
#
# HOW TO:
# 1. As a Workspace admin, download an export of your Slack history (https://www.slack.com/services/export)
# 2. Make sure you have jq installed (https://stedolan.github.io/jq/)
# 3. Place this file at the root of your Slack export folder, next to channels.json
# 4. Run `bash slack-files-downloader.sh` in your terminal
#
@ys-qb
ys-qb / terms-style
Last active January 19, 2024 02:59
h1, h2 {
text-align: center;
}
/* ① 항, 1.호 */
ol > li:nth-child(1)::marker { content: '① '; }
ol > li:nth-child(2)::marker { content: '② '; }
ol > li:nth-child(3)::marker { content: '③ '; }
ol > li:nth-child(4)::marker { content: '④ '; }
ol > li:nth-child(5)::marker { content: '⑤ '; }
ol > li:nth-child(6)::marker { content: '⑥ '; }
@ys-qb
ys-qb / get apple note link
Last active July 12, 2025 15:44
copying the link of apple note into clipboard - macos
@ys-qb
ys-qb / cert-add-descripton.sh
Created December 12, 2024 13:42
adding descriptions into the public cert
#!/bin/bash
ARG1=$1
META_ONLY=false
NL=$'\n'
if [ "$ARG1" = "-m" ]; then
META_ONLY=true
elif [ "$ARG1" = "-h" ]; then
echo "Usage: $0 -hm"
flowchart TD
    subgraph 보유 및 파기 절차
        A[소비자 불만/분쟁처리 기록] -->|보유 근거| B["전자상거래 등에서의 소비자 보호에 관한 법률"]
        A -->|보유 기간| C["3년"]
        C -->|경과 시| D["「개인정보 보호법」 및 자사 개인정보 처리방침에 따라 지체 없이 파기"]
        D -->|법령에 따라 보존 필요 시| E["별도 DB로 분리 보관"]
        E -->|보존기간 종료 시| F["즉시 파기"]
        G[공개 및 안내] -->|근거| H["자사 개인정보 처리방침 및 이용약관"]
        H --> I["이용자에게 공개"]