일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- python
- javascript
- github
- TypeScript
- AWS
- nodejs
- axios
- Troubleshooting
- docker
- 500
- MongoDB
- Spring
- macbook
- Java
- Jenkins
- webhook
- React
- MUI
- error
- EC2
- RDS
- Github Actions
- linux
- deploy
- fastapi
- js
- ngrok
- Express
- AWS EC2
- springboot
- Today
- Total
목록분류 전체보기 (79)
BEAT A SHOTGUN
pd.mean 하면 칼럼마다 평균값을 구해준다. 1.xx버전에서는 pd.mean(numeric_only=False)였다. 2.xx버전에서는 pd.mean(numeric_only=True) 로 바뀌었다. 그래서 2.xx 버전을 사용한다면 신경써서, 필요하면 numeric_only=False 라고 옵션을 넣어서 사용해야한다. 끝
Error ❌ Error❌ Access to fetch at 'https://localhost:8000/test' from origin 'http://localhost:3000' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource. If an opaque response serves your needs, set the request's mode to 'no-cors' to fetch the resource with CORS disabled. client에서 server로 요청을 보내니 에러가 발생한..
Error 1 Error message selenium.common.exceptions.InvalidArgumentException: Message: invalid argument: invalid locator solution driver.find_element("class_name", "AAA").click() ❌ 🔽 from selenium.webdriver.common.by import By driver.find_element(By.CLASS_NAME, "AAA").click() ✅ 참고 https://stackoverflow.com/questions/71097378/selenium-common-exceptions-invalidargumentexception-message-invalid-argume..
Django 를 이용해 User Create 를 시도하고 있었다. Database 에 잘 저장되지만, 에러페이지를 출력했다. ConnectionRefusedError: [WinError 10061] No connection could be made because the target machine actively refused it 혹은 DoesNotExist: Site matching query does not exist 라는 에러. 어떤 상황에서 어떻게 해결할 수 있는지 한 번 알아보자. 시작 우선 현재 환경은 Django 를 사용해서 서버를 만들고 있는 중이다. Djangorestframework 를 사용하고 dj-rest-auth, allauth 를 사용하고 있다. email 항목 우선 user 에..
시작 설치와 코드 allauth 설치 pip install django-allauth main app 의 settings.py 에 추가할 것들이 많다. # main/settings.py ... INSTALLED_APPS = [ ... # allauth 'django.contrib.sites', 'allauth', 'allauth.account', 'allauth.socialaccount', # allauth - google 'allauth.socialaccount.providers.google', # allauth - naver 'allauth.socialaccount.providers.naver', # allauth ..
ERROR ❌ 아 왜이러시는데요 ; // web chrome emulator Access to XMLHttpRequest at 'https://image-comic.pstatic.net/webtoon/758150/thumbnail/thumbnail_IMAG21_4135492154714961716.jpg' from origin 'http://localhost:11821' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource. Failed to load resource: net::ERR_FAILED// console ══╡ ..
배포를 하면서 linux 명령어를 자주 다뤘다. 그러면서 근본을 등한시한 인간의 말로를 슬쩍 슬쩍 봐왔다. (바로 나). 그리고 내 블로그에 linux OS 사용자가 1명 들어왔다는 통계. 🙂? 똥싸개의 개발블로그(사실 거의 일기)에 왜 linux 가 들어가 있지? 나 뭐 잘못 했나 무서워진 근본충은 더 이상 근본을 외면할 수 없었다. Linux 의 시작 👊 window 는 git 설치합시다. 먼저, 근본을 이야기하면서 유래를 설명하지 않을 수 없지. 때는 바야흐로 90년대 초.. 아무튼 그 때 태어난 unix가 여러갈래로 나눠지며 WIKI - https://en.wikipedia.org/wiki/List_of_Linux_distributions#Ubuntu-based 이렇게 이어짐. 아무튼 그럼. 그래..
Error ❌ Fluttrer 를 설치하고, flutter doctor 를 실행하면 ❌ Visual Studio not installed; this is necessary for Windows development. Download at https://visualstudio.microsoft.com/downloads/. Please install the "Desktop development with C++" workload, including all of its default components라는 에러가 발생할 수 가 있다. 이런 에러를 무시하려해도, 이 상태에선 VSCode 에서 Debugging 을 실행할 수가 없다. 고쳐야한다. Solution ✅ VSCode 를 쓰고 있는데 뭔소리세요 진짜ㅠㅠ ..