Development
-
Ubuntu에 Bugzilla설치하는 방법Development 2021. 8. 3. 16:17
Bugzilla를 설치할 일이 있어서, 가능하면 Docker로 설치하고 싶었지만... Bugzilla Docker image가 만들어진지, 3년전... 4년전... 5년전이라서... 직접 설치할 수 밖에 없었네요. https://hub.docker.com/u/bugzilla 🠔 여기 가보세요. Bugzilla의 Official Docker Image가 없을 줄이야... -_-a Docker Hub hub.docker.com * 이번달 AWS 사용료가 7만원 넘게 나오다니 ㄷㄷㄷ, Udacity 과제하느라고, EKS좀 사용했더니.. 허걱.. 7만원.. 아래 참고 자료대로 설치되면 좋겠지만.... 흠... 잘 안되기 때문에... https://bugzilla.readthedocs.io/en/latest/in..
-
Postmortem, Udacity Full Stack Web Developer Nanodegree ProgramDevelopment 2021. 7. 27. 16:39
This article is a postmortem, after I graduated Udacity Full Stack Web Developer Nanodegree Program. Course link : https://www.udacity.com/course/full-stack-web-developer-nanodegree--nd0044 Become a Full Stack Web Developer Learn to design and develop powerful modern web applications that form the foundation for apps, websites and more. Learn online with Udacity. www.udacity.com It is a really g..
-
Flask basic commandsDevelopment 2021. 7. 27. 15:45
If there is app.py (Flask app), we can run it simply like below. python3 app.py However, it is recommended to use Flask own environmental variable to run Flask app, please see below. export FLASK_APP=app 🠔 Flask app name, it means 'app.py' export FLASK_ENV=development 🠔 We run as developement purpose, otherwise production export PORT=9010 🠔 Port number to use, normally, 80 port is already taken ..
-
My tweaks after installing UbuntuDevelopment 2021. 7. 26. 15:29
Here is the list of my Linux configuration, after I installed Ubuntu. Basic As the chapter is basic, I'm going to show my very simple tweaks. Remove reverse slash when I type tab key I don't remember since when I have to remove back slash in the front of path, whenever I touch tab key. Add this line in the end of your .bashrc shopt -s direxpand Adding user to group Adding skysign to docker group..
-
초보자용 리눅스 커맨드 학습 추천Development 2020. 12. 2. 13:26
영어의 압박이 조금 있기는 하지만, 초보자 분들의 리눅스 커맨드 학습에 추천사이트입니다. 정확히는 모르겠지만, 원래는 유료로 컨텐츠를 만들다가, 어떤이유로, 무료로 github에 풀렸습니다. 기본적인 ls 부터 시작해서, 어느정도 지나면 네트웍관련 ss까지 잘 설명되어 있습니다. github.com/snori74/linuxupskillchallenge snori74/linuxupskillchallenge Learn the skills required to sysadmin a remote Linux server from the commandline. - snori74/linuxupskillchallenge github.com
-
누구나 원하는 개발자되기Development 2020. 11. 30. 13:20
이직을 준비하시는 분이라면, 아래 글을 꼭 읽어보시고, 단단히 준비하세요. 원문 : blog.shiren.dev/2020-11-23/ 누구나 원하는 개발자되기 5~6년 차 즈음부터 개발자 채용에 조금씩 관여하기 시작했고 현 회사에서는 면접관으로 활동한지 5년이 넘은 것 같다. 면접은 1차 면접에 해당하는 기술 면접이었고 팀의 채용 프로세스를 개선하 blog.shiren.dev 원문을 읽어보고, 귀감이 되는 부분이 많아서, 요약해 봅니다. 1. 이력서를 주기적으로 업데이트하는 것은 주기적으로 반성(?) 하는 시간을 가질 수 있어 동기부여와 목표 설정에 도움이 된다. 이렇게 이력서를 관리하다가 “때가오면” 지원하는 회사 양식에 맞게 수정한다. 2. 단순히 경험을 구구절절 늘어놓는 게 아니라 역량을 어필할 수..
-
Bitmap index의 WAH 압축방식이 설명되어 있는 논문Development 2020. 10. 4. 14:24
Bitmap index의 WAH 압축방식이 설명되어 있는 논문링크입니다. Optimizing bitmap indices with efficient compression www.researchgate.net/publication/200084986_Optimizing_bitmap_indices_with_efficient_compression (PDF) Optimizing bitmap indices with efficient compression PDF | Bitmap indices are efficient for answering queries on low-cardinality attributes. In this article, we present a new compression scheme called....
-
ORACLE Cloud free tier 체험해보기Development 2020. 9. 30. 12:51
평생 무료로, free tier를 사용할 수 있다고 해서, oracle 계정도 만들고, clould에 compute instance도 하나 만들었습니다. 목표는 오라클 계정이 없는 상태에서 부터 시작해서, 최종적으로 ssh로 접속까지 해보기 입니다. 이미 잘 작성된 글들이 있어서, 링크를 걸어드리고, 유의할 부분 정리하겠습니다. http://taewan.kim/oci_docs/10_quickstart/vcn/simple_vcn/ 기본적으로는 위의 글 보고 따라하시면 되지만, 몇가지 부족한 부분이 있습니다. internet gateway설정및 route table을 하지 않으면, ssh 뿐만 아니라, 외부에서 compute instance로 접속이 되지 않습니다. https://thekoguryo.gith..