본문 바로가기
728x90

분류 전체보기139

[django] admin계정 만들기 (superuser) python manage.py createsuperuser email 은 비워도 됨 password는 너무 짧으면 안됨 url 8000뒤에 /admin붙여주면 로그인 화면이 뜸 아까 만들었던 superuser계정으로 로그인 하면 됨 2020. 7. 25.
[django] 소셜 로그인 (구글/페이스북) pip install django-allauth 먼저 설치 settings.py INSTALLED_APPS = [ 'django.contrib.admin', 'django.contrib.auth', 'django.contrib.sites', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.messages', 'django.contrib.staticfiles', 'blogapp.apps.BlogappConfig', 'portfolio.apps.PortfolioConfig', #allauth 'allauth', 'allauth.account', 'allauth.socialaccount', #providers 'allauth... 2020. 7. 24.
html 이모지 코드표 https://www.w3schools.com/charsets/ref_emoji.asp HTML Emoji Reference Emoji Unicode Reference Emojis For Web. If you want any of these emojis displayed in HTML, you can use the decimal (dec) or hexadecimal (hex) reference found in the table below. Example 🦁 I will display 🦁 www.w3schools.com Blog 💗 이 사이트에 있는 두번째 코드앞에 &#x를 붙여 사용하면 된다 좀 더 귀여워진다... 2020. 7. 21.
[C언어] 자료구조 - 포인터,배열,malloc 모든 변수는 주소를 가진다. 포인터(pointer) : 메모리 주소를 값으로 가지는 변수 int *ptr; & : 주소 추출 int c = 10; int *p; p = &c; //변수 c가 저장되어있는 메모리주소를 p에 넣음 int x = 1; int y = 1; int *ip; ip = &x; //x의 주소값1003가 ip에 저장됨. y = *ip; //ip에 있던 1003의 주소값을 가진 x값, 즉 1이 y에 저장됨. *ip = 0; //x가 0으로 됨. 1003 1 x 1004 1 y 1005 1006 1003 ip 1007 배열의 이름은 배열의 첫번째 값을 저장하는 포인터 int calculateSum(int *array) int함수에서 배열을 매개변수로 넘겨줄 때, 포인터 사용 가능 array[.. 2020. 7. 17.
[C언어] 문자열 접합,정렬 예제 (merge) 알파벳순(모두 소문자!)으로 정렬되어있는 문자열 a와 문자열 b를 정렬되게 merge하여 c에 넣는 프로그램을 작성하라. 문자열 a와 문자열 b는 길이가 19이하로 가정하자. 예1 ace bd 2020. 6. 19.
[java] 파일 입출력 [예제] 텍스트 파일 읽기 import java.io.FileReader public class FileReaderExample{ public static void main(String args[])Throws Exeption{ FileReader fr = new FileReader("D://test.txt"); int ch; while((ch = fr.read()) != -1) System.out.print((char)ch); fr.close(); } } 입출력스트림 문자스트림 입력 바이트 스트림 입력 문자 스트림 출력 바이트 스트림 출력 문자 스트림 byte stream - 이진데이터 위함 InputStream 클래스 abstract int read() OutputStream 클래스 abstract .. 2020. 6. 13.
[django] 가상환경 설정, 프로젝트 생성, 앱생성 python -m venv myvenv 입력해주면 왼쪽에 myvenv 폴더가 생김 python -m venv '가상환경이름' source myvenv/Scripts/activate 가상환경 실행 source '가상환경이름'/Scripts/activate django-admin startproject firstproject 프로젝트 생성 django-admin startproject '프로젝트이름' 왼쪽바에서 폴더를 확인하면 프로젝트, 가상환경 순으로 생성됨 (매번 시작할 때마다 까먹어서 여기다 박제 ..) cd firstproject 경로 변경 cd '프로젝트이름' 이러고 앱만들어주려는데 에러 뜸 Traceback (most recent call last): File "manage.py", line 10.. 2020. 5. 6.
[django 첫걸음] Git Bash, VSCode, Python3.7 설치하기(링크) 1. Git Bash https://git-scm.com/ Git git-scm.com Download 2.26.2 for Windows클릭 2. VSCode https://code.visualstudio.com/download Download Visual Studio Code - Mac, Linux, Windows Visual Studio Code is free and available on your favorite platform - Linux, macOS, and Windows. Download Visual Studio Code to experience a redefined code editor, optimized for building and debugging modern web and cloud.. 2020. 5. 1.
codecademy(코드카데미) HTML정리 4 Table - 데이터 표시 행 추가 데이터 추가 행과 열에 제목 추가 테두리의 두께 Out of Town 열 두개 자리 차지 rowspan="2" 행 두개 자리 차지 열제목(열머리글) 분류해줌 맨밑행에서 total 보여주는 용도로 분류해줌 css에서 font size나 color 변경가능. 2020. 4. 25.
728x90