[ Django ] Django REST Framework 000
·
Archive/Develop
https://www.django-rest-framework.org/tutorial/quickstart/#quickstart Quickstart - Django REST framework We're going to create a simple API to allow admin users to view and edit the users and groups in the system. Create a new Django project named tutorial, then start a new app called quickstart. # Create the project directory mkdir tutorial cd tutorial # Cre www.django-rest-framework.org Django..
[ C/C++ ] Window Thread 프로그래밍
·
Archive/Develop
#include #include #include /* run this program using the console pauser or add your own getch, system("pause") or input loop */ unsigned WINAPI ThreadFunc(void *arg); int g_checkid = 0; int main(int argc, char *argv[]) { HANDLE hThread,hThread2; unsigned threadID; int param=5; hThread=(HANDLE)_beginthreadex(NULL, 0, ThreadFunc, (void*)&param, 0, &threadID); hThread2=(HANDLE)_beginthreadex(NULL, ..
[ 정규표현식 ] 패스워드 정책(영문자, 숫자, 특수문자, 8글자 이상) 패턴
·
Archive/Develop
반드시 포함해야하는 문자를 표현할 때, lookaround 를 이용하면 된다. 각각 영문자(대,소), 특수문자, 숫자가 반드시 하나이상 포함되어있어야한다. 이건 기억해놓고 있으면 편할 것 같다. + 다른 문제 문장찾기 : Tom이 들어간 문장 찾기 응용하면 이렇게도 쓸 수 있다. 숫자를 콤마로 포맷팅하기 이런식으로 코드를 짜면 자리수대로 나누는 것 같은 효과가 난다. 저렇게 1,4,7을 잡고 바꿀때는 replace 쓰면 된다.
[ Android ] 이미지 처리 라이브러리 글라이드(Glide)
·
Archive/Develop
Glide 는 동적으로 이미지를 로드할 수 있게해주는 라이브러리이다. 이미지가 타일형식으로 로드되어 로드 도중 메모리 문제가 발생되지 않는다. 이미 범용적으로 쓰이고 있는 라이브러리이다. https://github.com/bumptech/glide GitHub - bumptech/glide: An image loading and caching library for Android focused on smooth scrolling An image loading and caching library for Android focused on smooth scrolling - GitHub - bumptech/glide: An image loading and caching library for Android focu..