Skip to content

Instantly share code, notes, and snippets.

@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 / 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 / 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 / .bashrc
Last active October 22, 2017 01:47
git prompt : branch only
# see https://coderwall.com/p/fasnya/add-git-branch-name-to-bash-prompt
# Terminal colours (after installing GNU coreutils)
NM="\[\033[0;38m\]" # means no background and white lines
GR="\[\033[0;90m\]" # dark grey
HI="\[\033[0;37m\]" # change this for letter colors
HII="\[\033[0;31m\]" # change this for letter colors
SI="\[\033[0;33m\]" # this is for the current directory
IN="\[\033[0m\]"
@ys-qb
ys-qb / .bash_profile
Last active October 23, 2017 00:14
git prompt
if [ -f ~/.bash-git-prompt/gitprompt.sh ]; then
GIT_PROMPT_ONLY_IN_REPO=1
GIT_PROMPT_THEME=Custom # use custom theme specified in file GIT_PROMPT_THEME_FILE (default ~/.git-prompt-colors.sh)
source ~/.bash-git-prompt/gitprompt.sh
fi
@ys-qb
ys-qb / wordpress.md
Last active October 19, 2017 08:40
gitple short description in english

Gitple is a cloud application available online at https://gitple.io With Giple Chat, your visitors can talk with you directly at your homepage or mobile app. Many productivity features are ready for you to handle multple conversations at the same time.

After a few clicks, you can add Gitple chat widget to your homepage. Diverse settings are available at Gitple Workspace application. You can change the widget's looks, allowing from either logined user or not etc.

@ys-qb
ys-qb / hacluster..md
Created April 4, 2017 09:37
HA cluster

HA


SPOF

A single point of failure (SPOF) is a part of a system that, if it fails, will stop the entire system from working.

source: wikipedia
@ys-qb
ys-qb / agile.md
Last active July 11, 2017 01:52
agile@startup
@ys-qb
ys-qb / 0_reuse_code.js
Created January 15, 2017 23:57
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console