일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- it
- 백테스트
- backtrader
- AWS
- 프로그래밍
- 오토사
- 확률
- 자동차sw
- 비트코인
- 클라우드
- python
- 자동매매
- Bitcoin
- toefl writing
- 암호화폐
- 토플 라이팅
- 블록체인
- 파이썬
- 퀀트
- can
- TOEFL
- 백트레이더
- 개발자
- Cloud
- GeorgiaTech
- AUTOSAR
- 아마존 웹 서비스
- 토플
- backtest
- probability
- Today
- Total
목록개발 (10)
Leo's Garage
기본적으로 Django에서는 User 관리용 데이터 구조나 해당 관리 페이지에서 사용할 다양한 기능들을 제공해준다. 하지만 유저 입장에서는 Django가 기본적으로 제공해주는 관리 페이지가 아니라 커스텀해서 사용하고 싶을 수 있다. 예를 들면, 현재 기본적으로 제공되는 User 데이터의 경우 User Name과 Password를 통해서 로그인하고 있지만, Third Party Login을 하고 싶을 수도 있다. Django 문서를 보면, https://docs.djangoproject.com/en/4.1/topics/auth/customizing/#extending-the-existing-user-model Django The web framework for perfectionists with deadl..
Django를 공부하면서 느낀 점 중 하나가 와 이런 것까지 된다고? 였다. 사실 한 두 가지가 아니라 공부를 할 수록 정말 정교하고 다양하게 만들어졌다는 생각이 든다. 혹자는 Python을 혹은 백엔드를 밑바닥부터 해보지 않고 Django부터 공부하면 성장에 한계가 올 수도 있다고 하던데 그 말이 맞는말 같다 그정도로 Django는 이 FrameWork 자체만으로 엄청난 파워를 가지고 있고 정말 손쉽게 다양한 기능을 추가할 수 있게 해준다. 자 admin에 기능을 추가해보자 우선 기존에 user admin 창을 들어가보자. 화면에서 보이는 것과 같이 Column이 존재하고, 오른쪽에는 Filter가 존재한다. 또한 사용자 이름에는 실제 사용자의 이름이 들어가 있다. 자 그러면 신규로 생성한 House라..
from django.db import models # Create your models here. class House(models.Model): """Model Definition for House""" name = models.CharField(max_length=140) price = models.PositiveIntegerField() description = models.TextField() address = models.CharField(max_length=140) Django에서 설계할 때는 마치 블럭을 쌓는 것과 같이 설계를 하게 된다. 무슨 말이냐 하면, 어떤 기능을 구현하려고 할 때, 그 기능에 필요한 데이터와 로직을 캡슐화해서 개발할 수 있게 해준다는 것이다. 그러한 개념을 Djan..
Django 그동안 이야기는 많이 들어왔지만, 사용해 본 적은 솔직히 없었다. Python 공부할 겸 해서 간단한 프로젝트를 진행해볼까 한다. 필자는 ubuntu 환경에서 개발한다. 기본적으로 Python 프로젝트를 개발할 때면, 아나콘다를 통해 가상환경을 만들어서 사용하곤 했다. 이번에는 poetry를 사용해볼까 한다. https://python-poetry.org/ Poetry - Python dependency management and packaging made easy Dependency resolver Poetry comes with an exhaustive dependency resolver, which will always find a solution if it exists. And get..
Truffle : Solidity 개발 환경 - 배포, 테스트 등등 Ganache : Ethereum Blockchain Local 환경 https://github.com/DonationMarketNFT/SmartContractForBapp GitHub - DonationMarketNFT/SmartContractForBapp: smart contract for Bapp smart contract for Bapp. Contribute to DonationMarketNFT/SmartContractForBapp development by creating an account on GitHub. github.com git repository clone 후 아래 명령어 입력 $ npm install $ cd nod..
Easy A school is trying to take an annual photo of all the students. The students are asked to stand in a single file line in non-decreasing order by height. Let this ordering be represented by the integer array expected where expected[i] is the expected height of the ith student in line. You are given an integer array heights representing the current order that the students are standing in. Eac..
Easy A valid parentheses string is either empty "", "(" + A + ")", or A + B, where A and B are valid parentheses strings, and + represents string concatenation. For example, "", "()", "(())()", and "(()(()))" are all valid parentheses strings. A valid parentheses string s is primitive if it is nonempty, and there does not exist a way to split it into s = A + B, with A and B nonempty valid parent..
[Bronze V] 개 - 10172 https://www.acmicpc.net/problem/10172
[Bronze V] 고양이 - 10171 https://www.acmicpc.net/problem/10171 10171번: 고양이 아래 예제와 같이 고양이를 출력하시오. www.acmicpc.net 성능 요약 메모리: 2020 KB, 시간: 0 ms 분류 구현(implementation) 문제 설명 아래 예제와 같이 고양이를 출력하시오. 입력 없음. 출력 고양이를 출력한다. #include int main() { std::cout
[Bronze V] A-B - 1001 https://www.acmicpc.net/problem/1001 1001번: A-B 두 정수 A와 B를 입력받은 다음, A-B를 출력하는 프로그램을 작성하시오. www.acmicpc.net 성능 요약 메모리: 1984 KB, 시간: 0 ms 분류 사칙연산(arithmetic), 구현(implementation), 수학(math) 문제 설명 두 정수 A와 B를 입력받은 다음, A-B를 출력하는 프로그램을 작성하시오. 입력 첫째 줄에 A와 B가 주어진다. (0 < A, B < 10) 출력 첫째 줄에 A-B를 출력한다. #include using namespace std; int main(int argc, const char * argv[]) { // insert co..