Skip to content

Instantly share code, notes, and snippets.

View claudiajkang's full-sized avatar

Juhee Kang claudiajkang

View GitHub Profile
# debuggin ver Dockerfile
FROM ubuntu:16.04
MAINTAINER floweryroads@gmail.com
RUN apt-get -y update
RUN apt-get install -y curl
RUN curl -sL https://deb.nodesource.com/setup_9.x | bash -
RUN apt-get install -y git python3-pip python3-dev nodejs
RUN echo '{ "allow_root": true }' > /root/.bowerrc
@claudiajkang
claudiajkang / python35_downgrade.sh
Last active March 5, 2018 16:24
Fedora26 KDE python3.6 -> python3.5 downgrade
#!/bin/bash
# Fedora KDE 26 python3.6 -> python3.5 downgrade
# reference : https://tecadmin.net/install-python-3-5-on-centos/#
# gcc install
dnf install gcc wget
sudo cd /usr/src
@claudiajkang
claudiajkang / Fedora26_kde_fcitx_hangul_install.sh
Last active April 8, 2018 17:12
Fedora 26 KDE hangul install
#!/bin/bash
# Fedora 26 fcitx-hangle install
# reference : http://srobb.net/jpninpt.html#Fedora
# reference : https://wiki.archlinux.org/index.php/fcitx#Other_languages
# fcitx install
sudo dnf install -y fcitx-hangul
sudo dnf install -y fcitx-qt4 fcitx-qt5
sudo dnf install -y kcm-fcitx
jekylly install error
1. extensions
sudo dnf install redhat-rpm-config
2. g++
sudo dnf install gcc-g++