목록Personal DB/Unclassified record (50)
Silver Library (Archived)
![](http://i1.daumcdn.net/thumb/C150x150.fwebp.q85/?fname=https://blog.kakaocdn.net/dn/bG4m60/btqVe66deR0/NrKplFASpYf03XUZ7K2ww1/img.jpg)
Fixed: 1. Photo shown as broken file issue. -> It was due to the non-existing directory. I did not notice that VSCode cannot read the inside of zip file. Extracted to its folder as I designated the directory. And, Accessed the admin page of that picture(as a part of seeding task). When I seed that photo with fake data, that's the time where the error happened. If directory does not exist when I ..
[FIXED] directory: users/forms.pyCaused by : typo mistake(...). Just confused myself with JS camel case. class SignUpForm(forms.ModelForm): =============== IntegrityError at /users/login/github/callback NOT NULL constraint failed: users_user.username Request Method: GET Request URL: http://127.0.0.1:8000/users/login/github/callback? Note: As soon as when I press 'github login' - linked by Oauth ..
How to test something from user's viewpoint? Purpose is clear, to let user allow enjoying all features as intended. def github_callback(request): code = request.GET.get("code") print(request.GET) pass That print allows the developer to see and refer the terminal message. Literally, this is an essential method to test out whether it works as intended or not.
![](http://i1.daumcdn.net/thumb/C150x150.fwebp.q85/?fname=https://blog.kakaocdn.net/dn/nfuNJ/btqTwWYeI4X/RjZn6wXGseU7xQovaOOwT1/img.png)
1. Encountered Unicode error. 2. Panic...and returned to the trackback page (jango). What can be the problem? And got some hint from somebody... ourcstory.tistory.com/39 [Python] UnicodeEncodeError: 'ascii' codec can't encode characters in position 0-3: ordinal not in range(128) 들어가며 파이썬으로 구현을 하다보면 한번씩은 겪는 UnicodeEncodeError: 'ascii' codec can't encode characters in position 0-3: ordinal not in ..