전체 글 (1185) 썸네일형 리스트형 랄랄라~ 호의를 배풀었더니 권리 인줄 아시는 분들(정확히는 한글을 못읽은 분들)이 많기에 이제부턴 절대로! 완성된 프로그램은 않올림.해당 블로그에 올려진 소스를 제외한 프로그램 단위로 올린 포스팅은 삭제 예정. python Fibonacci Sequence x = 0y = 1p = 0for i in range(10): print p p = x + y x = y y = p FTP 550: Permission Denied FTP 550: Permission Denied solution:1. $vi /etc/vsftpd.conf allow_writeable_chroot=YES or write_enable=YES 2. $sudo service vsftpd restart if don't work?That folder add attribution to root $ sudo chmod -R 777 FOLDERNAME DONE! django 버전 확인 python2.x$python -c "import django; print(django.get_version())" python3.x$python3 -c "import django; print(django.get_version())" celery root C_FORCE_ROOT error Running a worker with superuser privileges when theworker accepts messages serialized with pickle is a very bad idea! If you really want to continue then you have to set the C_FORCE_ROOTenvironment variable (but please think about this before you do). User information: uid=0 euid=0 gid=0 egid=0 If an error occurs, run celery $ export C_FORCE_ROOT = "true"$ celery -A TASKNAME worker django 1px 투명 이미지 response img = Image.new('RGBA', (1, 1), (0, 0, 0, 1))response = HttpResponse(mimetype="image/png", content_type="image/png")img.save(response, "png") python aes encrypt decrypt def AESencrypt(password, plaintext, base64=False): import hashlib, os from Crypto.Cipher import AES SALT_LENGTH = 32 DERIVATION_ROUNDS=1337 BLOCK_SIZE = 16 KEY_SIZE = 32 MODE = AES.MODE_CBC salt = os.urandom(SALT_LENGTH) iv = os.urandom(BLOCK_SIZE) paddingLength = 16 - (len(plaintext) % 16) paddedPlaintext = plaintext+chr(paddingLength)*paddingLength derivedKey = password for i in range(0,DERIVA.. ERROR: epmd error for host rabbitmq timeout (timed out) for mac ERROR: epmd error for host rabbitmq timeout (timed out) for macrabbimq-server 서버 실행시 ERROR: epmd error for host rabbitmq timeout (timed out) 만일 rabbitmq 를 설치 하고 timeout 에러가 난다면 host 에 설정이 안되어 있는 문제입니다.맥의 커맨드 창에서 vi 편집기로 hosts 을 열어서 다음의 문구를 집어 넣어 줍니다.1sudo vi /etc/hosts127.0.0.1 컴퓨터 이름 추가!중요한점은 사용자 이름이 아닌 컴퓨터 이름입니다!!!!! 위의 이미지에서 제일 마지막 문구 입니다. 또한 에러 발생시 가장 처음에 등장하는 문자열이 자신의 컴퓨터 이름이므로 참고 하시기 바랍니다... 이전 1 ··· 44 45 46 47 48 49 50 ··· 149 다음