Skip to content

Instantly share code, notes, and snippets.

View quest4i's full-sized avatar

Sa Myeonggu 사명구 quest4i

  • DASAN Network Solutions
  • Seoul
View GitHub Profile
@lesstif
lesstif / nanum-font-install.sh
Last active December 13, 2020 05:03
JAVA_HOME 의 fonts/fallback 디렉터리에 나눔 폰트 설치. Confluence 의 편집 macro 에서 한글 깨짐 방지
#!/bin/sh
if [ "$#" -lt 1 ]; then
echo -e "$# is Illegal number of parameters.\n"
echo -e "Usage: $0 confluence-installed-dir\n"
echo "Example: $0 /var/atlassian/atlassian-confluence-6.7.0"
exit 1
fi
CONF_DIR=$1
@feminie
feminie / trendchart.java
Last active June 15, 2016 15:45
JIRA Google Image Chart Custom Field
<!-- @@Formula:
String GenerateChartUrl(String prmRawData, String prmLabelData)
{
String log = "";
int recentCount = 20;
int scaleScope = 4;
String urlHeader = "https://chart.googleapis.com/chart?";
String urlCht = "cht=lc";
String urlChs = "chs=800x320";
@hrldcpr
hrldcpr / tree.md
Last active January 6, 2025 22:43
one-line tree in python

One-line Tree in Python

Using Python's built-in defaultdict we can easily define a tree data structure:

def tree(): return defaultdict(tree)

That's it!