안녕하세요, 강사님. 강의를 듣고 따라하고 있는데... 이미지가 auto: true로 해도 옆으로 슬라이드 되지 않습니다. 그래서 개발자화면을 보니 아래와 같이 --- index.html:12 Uncaught TypeError: $(...).bxslider is not a function at HTMLDocument.<anonymous> (index.html:12) at i (jquery.1.12.4.js:2) at Object.fireWith [as resolveWith] (jquery.1.12.4.js:2) at Function.ready (jquery.1.12.4.js:2) at HTMLDocument.K (jquery.1.12.4.js:2) --- 가 발생하고 있습니다. 경로를 재 확인해도 문제가 없는데.. 이유를 알 수 있을까요?ㅠㅠ 입력한 소스는 아래와 같습니다. <!DOCTYPE html> <html lang="ko"> <head> <meta charset="utf-8"> <title>Simple Site</title> <link rel="stylesheet" href="css/reset.css" type="text/css"> <link rel="stylesheet" href="css/style.css" type="text/css"> <script src="js/jquery.1.12.4.js" type="text/javascript"></script> <script src="plugins/bxslider/js/jquery.bxslider.js" type="text/javascript"></script> <script> $(document).ready(function(){ $('.slider').bxslider ({ controls: false, pager: false, auto: true }); }); </script> </head> <body> <div class="slider"> <div class="background__01"></div> <div class="background__02"></div> <div class="background__03"></div> </div> </body> </html>
Traceback (most recent call last): File "C:\ProgramData\Miniconda3\envs\my_project\lib\site-packages\matplotlib\font_manager.py", line 1353, in <module> fontManager = json_load(_fmcache) File "C:\ProgramData\Miniconda3\envs\my_project\lib\site-packages\matplotlib\font_manager.py", line 888, in json_load with open(filename, 'r') as fh: FileNotFoundError: [Errno 2] No such file or directory: 'C:\\Users\\Zoon\\.matplotlib\\fontlist-v300.json' During handling of the above exception, another exception occurred: Traceback (most recent call last): File "chapter12.py", line 1, in <module> import matplotlib.pyplot as plt File "C:\ProgramData\Miniconda3\envs\my_project\lib\site-packages\matplotlib\pyplot.py", line 32, in <module> import matplotlib.colorbar File "C:\ProgramData\Miniconda3\envs\my_project\lib\site-packages\matplotlib\colorbar.py", line 32, in <module> import matplotlib.contour as contour File "C:\ProgramData\Miniconda3\envs\my_project\lib\site-packages\matplotlib\contour.py", line 18, in <module> import matplotlib.font_manager as font_manager File "C:\ProgramData\Miniconda3\envs\my_project\lib\site-packages\matplotlib\font_manager.py", line 1363, in <module> _rebuild() File "C:\ProgramData\Miniconda3\envs\my_project\lib\site-packages\matplotlib\font_manager.py", line 1344, in _rebuild fontManager = FontManager() File "C:\ProgramData\Miniconda3\envs\my_project\lib\site-packages\matplotlib\font_manager.py", line 978, in __init__ ttffiles = findSystemFonts(paths) + findSystemFonts() File "C:\ProgramData\Miniconda3\envs\my_project\lib\site-packages\matplotlib\font_manager.py", line 264, in findSystemFonts fontfiles.update(win32InstalledFonts(fontext=fontext)) TypeError: 'NoneType' object is not iterable 이렇게 길가 나오는데요... 중간중간 font 뭐라뭐라하는거같은데.. 제 PC가 문제일까요?ㅠㅠ
안녕하세요 교수님 우선 과제는 모두 Pass 로 완료하였습니다만....몇가지 코드를 oneline 으로 도저히 구현을 못해서 말씀하신 좀...구린 코드고 구현했습니다. 혹시 oneline 코드 해답 공유가 가능하다면 참고하고 공부를 하고 싶습니다... 부탁 드립니다. (과제는 정말 완료했습니다 ㅠ)
과제 중 encoding_sentence(english_sentence) 함수만 계속 fail 이 떠서... (작동은 매우 깔끔하게 잘 됩니다) 혹시 어느부분이 문제가 있는지 봐주실수 있는지요? def encoding_sentence(english_sentence): clear_sentence = get_cleaned_english_sentence(english_sentence) clear_sentence_up = clear_sentence.upper() inner_morse = [] for i in range(len(clear_sentence_up)): if clear_sentence[i] == " ": inner_morse.append("") else: inner_morse.append(encoding_character(clear_sentence_up[i])) result = " ".join(inner_morse).strip() return result
안녕하세요 교수님 갑자기 제출이 잘 되다가 안됩니다..ㅠ 아래와 같이 backendAPIError 가 뜨는데....무엇이... 문제일까요?ㅠㅠ ∙ Session token prefix: d11622a875 ∙ In the legacy mode, all cases will run serially! ✘ BackendAPIError: 500 Internal Server Error Internal server error.
안녕하세요 파이썬 공부를 시작한 직장인입니다. 앞으로 잘부탁드립니다. 2가지 질문이 있습니다. 1. Waring 관련 cmd 창에서 python 이라고 입력하면 Warning: This Python interpreter is in a conda environment, but the environment has not been activated. Libraries may fail to load. To activate this environment please see https://conda.io/activation Type "help", "copyright", "credits" or "license" for more information. 이러한 Waring이 뜨고 진행이 되더라구요 구글링을 해보니까 conda activate base python 이렇게 키인을 하면 된다해서 그렇게 하니 해결은 되던데... 혹시 제 PC에서 어떤 설정을 변경해야 하는지 아시나요? 2. cmd 창에서 매번 경로를 치려니 빡시던데 강의를 보니 교수님께서는 무언가 폴더 내 파일경롤 빨리 찾아오는 단축기 같은게 있어보여서요... 혹시 무엇인지 그 꿀팁을 알려 주실수 있을까요? 감사합니다.
자바 스크립트로 로그인 기능 구현 동영상에서 1. 왜 7.html이 아니라 7.php에 구현하나 궁금합니다. 7.html에 구현 시 클라이언트에서 실행되고 7.php에 구현시 자바스크립트가 클라이언트 언어임에도 불구하고 서버에서 실행되나요? 2. php페이지를 구현하는데 ..... 사이에 구현했는데 자바스크립트, php, jsp, asp 등은 모두 html 위에서 동작하는 언어인가요? 답변부탁드립니다.