Skip to content

Instantly share code, notes, and snippets.

View Rakk4403's full-sized avatar

Rak-Kyoung, Choi Rakk4403

  • Noul inc.
  • Korea
View GitHub Profile
@longfin
longfin / writing.md
Last active October 31, 2024 05:50
엔지니어를 위한 글쓰기

이 글은 Heinrich Hartmann 님이 작성하신 글을 한국어로 번역한 것입니다. 원문은 https://www.heinrichhartmann.com/posts/writing/ 에서 확인하실 수 있습니다.


글쓰기는 큰 조직에서 영향력을 발휘하는 데 중요합니다. 경력 있는 소프트웨어 엔지니어로서의 글쓰기는 직무 범위를 확장하고 경력을 발전시키기 위해 획득해야 하는 가장 중요한 기술입니다.

글쓰기는 어렵습니다. 많은 소프트웨어 엔지니어들이 글쓰기와 씨름하죠. 저도 개인적으로 문학에 대한 관심이 없기 때문에 글쓰기가 자연스럽지 않았습니다.

@ksmin23
ksmin23 / AWS_Lambda-Runtime-ImportModuleError-No_module_named-numpy.core._multiarray_umath.md
Last active March 28, 2023 06:07
AWS Lambda Runtime.ImportModuleError: No module named 'numpy.core._multiarray_umath' 해결 방법

문제

아래와 같이 numpy를 사용하기 위해서 AWS Lambda Layer에 numpy를 패키징해서 등록했는데도, AWS Lambda 함수를 실행할 경우, No module named 'numpy.core._multiarray_umath' 에러가 발생함

import sys
import os

import numpy
@elitan
elitan / ContactForm.js
Last active August 11, 2025 03:44
React Router V4 Redirect after form submission
import React, { Component } from 'react';
import { withRouter } from 'react-router-dom'; // <--- import `withRouter`. We will use this in the bottom of our file.
class ContactForm extends Component {
submitForm (e) {
e.preventDefault()
this.props.history.push('/thank-you'); // <--- The page you want to redirect your user to.
}
@redism
redism / kr_won_to_backquote.sh
Created April 26, 2017 16:20
macOS Sierra에서 원화(₩) 대신 백 쿼트(`) 입력하기
#!/bin/bash
if [ -f ~/Library/KeyBindings/DefaultkeyBinding.dict ]; then
echo "~/Library/KeyBindings/DefaultkeyBinding.dict already exists"
exit -1
fi
mkdir -p ~/Library/KeyBindings
cat << EOF > ~/Library/KeyBindings/DefaultkeyBinding.dict
{
"₩" = ("insertText:", "\`");
@daemin-hwang
daemin-hwang / gist:4346406ff1049d415da88540bc139ed9
Created September 26, 2016 06:51
우분투 shutter 캡쳐 후 이미지 편집
shutter 사용시 캡쳐 후 이미지 편집 아이콘이 비 활성화 되어있어서 편집이 불가능하다.
(편집 후 특정 영역에 빨간색 네모 박스를 치고 싶다 ;;)
shutteg를 띄운뒤 편집 아이콘에 마우스를 over 하면 goo:lib-canvas-perl 이 없다고 나온다
** 소프트웨어 센터에서
libgoo-canvas-perl 패키지를 설치해주면 된다. **
@perhapsspy
perhapsspy / django-test-easy-and-fast.md
Last active May 20, 2022 05:06
Django에서 Test 쉽고 빠르게 하기
@bastman
bastman / docker-cleanup-resources.md
Created March 31, 2016 05:55
docker cleanup guide: containers, images, volumes, networks

Docker - How to cleanup (unused) resources

Once in a while, you may need to cleanup resources (containers, volumes, images, networks) ...

delete volumes

// see: https://github.com/chadoe/docker-cleanup-volumes

$ docker volume rm $(docker volume ls -qf dangling=true)

$ docker volume ls -qf dangling=true | xargs -r docker volume rm

package main
import (
"fmt"
"io"
"os"
)
var path = "/Users/novalagung/Documents/temp/test.txt"
@softwaredoug
softwaredoug / ubuntu_py3.md
Last active November 9, 2021 19:38
Ubuntu 14.04 Python 3.4.2 Setup using pyenv and pyvenv

What I did to get Python 3.4.2 on Ubuntu 14.04. The stock version of Python 3 on Ubuntu is 3.4.0. Which is missing some of the best parts! (asyncio, etc). Luckily I discovered pyenv which solved my problem.

Install pyenv

Pyenv (not to be confused with pyvenv) is the Python equivelant of rbenv. It lets you configure which Python environment/version is available per directory, user, or other session variables.

I followed the instructions here to install pyenv in my home directory. Verbatem, those instructions are:

sudo apt-get install git python-pip make build-essential libssl-dev zlib1g-dev libbz2-dev libreadline-dev libsqlite3-dev