본문 바로가기

전체 글

(1835)
[WakaTime]Week 2 of May(20.05.11 ~ 20.05.17) WakaTime 20.05.11 ~ 20.05.17 Coding : 28hrs 20mins IDEL : VS Code Language : Python / HTML
[Free Wifi]버스 와이파이 노트북 연결 방법(How to connect a bus wifi laptop) https://developer-ankiwoong.tistory.com/1396?category=795676 [Free Wifi]공공 와이파이 노트북 접속 방법 변경(How to connect to public wifi) 2020.05.21 - [ETC/Software] - [Free Wifi]버스 와이파이 노트북 연결 방법(How to connect a bus wifi laptop) [Free Wifi]버스 와이파이 노트북 연결 방법(How to connect a bus wifi laptop) 출/퇴근을 버스로.. developer-ankiwoong.tistory.com 출/퇴근을 버스로 하는데 요즘 프로젝트 때문에 노트북을 들고 다니는 경우가 많아졌다. 하지만 와이파이를 사용할려해도 잘 되지 않아서 ..
[Django]Blog Creation Tutorial(Translation/Correction) 3 원문> https://matthewdaly.co.uk/blog/2012/03/24/yet-another-tutorial-for-building-a-blog-using-python-and-django-part-3/ Yet Another Tutorial for Building a Blog Using Python and Django - Part 3 - Matthew Daly's Blog 24th March 2012 6:23 pm Yet Another Tutorial for Building a Blog Using Python and Django - Part 3 Welcome back! In this installment, we’ll make some changes to our URL structure for b..
[Django]Blog Creation Tutorial(Translation/Correction) 2 원문> https://matthewdaly.co.uk/blog/2012/03/19/yet-another-tutorial-for-building-a-blog-using-python-and-django-part-2/ Yet Another Tutorial for Building a Blog Using Python and Django – Part 2 - Matthew Daly's Blog 19th March 2012 3:18 pm Yet Another Tutorial for Building a Blog Using Python and Django – Part 2 In the first part of this tutorial, we got the core elements of our blogging applicat..
[Django]Blog Creation Tutorial(Translation/Correction) 1 원문> https://matthewdaly.co.uk/blog/2012/02/24/yet-another-tutorial-for-building-a-blog-using-python-and-django-part-1/ Yet Another Tutorial for Building a Blog Using Python and Django - Part 1 - Matthew Daly's Blog 24th February 2012 4:17 pm Yet Another Tutorial for Building a Blog Using Python and Django - Part 1 While I’m extremely fond of Perl for quick hacks and scripts, and have used PHP a ..
[WakaTime]Week 1 of May(20.05.04 ~ 20.05.10) WakaTime 20.05.04 ~ 20.05.10 Coding : 21hrs 38mins IDEL : VS Code Language : Python / HTML
[WakaTime]Week 5 of April(20.04.27 ~ 20.05.03) WakaTime 20.04.27 ~ 20.05.03 Coding : 26hrs 31mins IDEL : VS Code Language : Python / HTML
[Django]Survey WEB Application Tutorial 7 1. style.css 설정 ''' polls/static/polls/style.css ''' li a { color: green; } 2. 정적 파일의 절대 URL 생성 ''' polls/templates/polls/index.html ''' {% load static %} 3. 배경 이미지 추가 ''' polls/static/polls/style.css ''' body { background: white url("images/background.gif") no-repeat; } 폴더 위치 : polls/static/polls/images/ 4. 관리자 폼 커스터마이징 ''' polls/admin.py ''' from django.contrib import admin from .models import..