- javascript 바코드스캔
- SSD 복사
- 강제이동
- asp.net core Select
- 바코드 생성하기
- 맥 오라클설치
- TempData
- XSS방어
- 타임피커
- 404에러페이지
- XSS PHP
- javascript redirection
- jquery 바코드생성
- django 엑셀불러오기
- Mac Oracle
- ASP.Net Core 404
- javascript 바코드 생성
- javascript 유효성체크
- asp.net dropdownlist
- ViewBag
- asp.net Select
- 파일업로드 체크
- jquery 바코드
- 바코드 스캔하기
- ViewData
- php 캐쉬제거
- 말줄임표시
- 파일업로드 유효성체크
- 하드 마이그레이션
- 하드 윈도우 복사
목록python (87)
웹개발자의 기지개
아주 좋은 보안시스템 구축 유투브 강좌와 소스가 있어서 소개한다. 유투버 쪼이님의 글중에서 https://www.youtube.com/watch?v=sXlED0DqNH8 https://jolly-lens-03c.notion.site/f7f1988c9c2b4ed3bf2995c9f4824713 라즈베리파이 - 보안시스템 | Notion1장. V2 카메라 연결 및 설치하기jolly-lens-03c.notion.site
https://www.datasciencelearner.com/python/change-python-version-in-google-colab-steps/ How to Change Python Version in Google Colab : 3 Steps OnlyMost of the coders or developers use Google Colab for executing their codes very fast as it provides you access to faster GPUs like the T4 and P100 if resources are available at a very cheap rate. But sometimes your code requires a specific version of ..
Centos7 Django nginx gunicorn Django 와 nginx 웹서버와 연동하는 과정중에 nginx: [emerg] open() "/etc/nginx/proxy_params" failed (2: No such file or directory) in /etc/nginx/sites-enabled 와 같은 에러가 나면서 해당 proxy_params 설정 부분내용이 없다고 메세지가 나왔다. 1 2 3 4 5 6 7 8 9 (venv) [root@localhost alzssol_django]# sudo systemctl daemon-reload (venv) [root@localhost alzssol_django]# sudo systemctl start gunicorn (venv) [root@lo..
현재 시간에서 7일이내의 최근글에 new 아이콘 붙이는 기능을 만들어본다. 일단 각 게시글에는 datetime 형태의 날짜 정보가 들어가 있다고 해보자. (2012-11-22 12:34:22 ) datetime 날짜끼리 남은 시간을 구하는 Custom Template Filter 를 하나 만든다. [ filter.py ] 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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 from django import template from datetime import datetime register = templat..
Django 상에서 다음 페이지로 이동시에는 보통의 경우 render 함수나 redirect 함수를 보통쓴다. [ render 함수 ] context = {} context['search'] = search context['keyword'] = keyword context['page'] = page return render(request, 'adm/notice_detail.html', context) 위의 간단한 예시처럼 context 라는 딕셔너리를 하나 선언하고 이안에 담아서 보낼수 있다. 그러나, 문제는 다음페이지로 이동은 하는데, 주소창도 그래도 바뀌지 않으며, notice_detail 다음페이지로 refresh 가 되지 않아서 썰렁한 빈화면 페이지를 접하게 된다. 이를 위해서 redirect 함..
개발자 지망생 님의 좋은 포스팅을 글을 참고하여 공부 정리해봤습니다. https://blockdmask.tistory.com/531 [python] 파이썬 map 함수 사용법과 예제 안녕하세요. BlockDMask입니다. 오늘은 파이썬 map 함수에 대한 이야기를 해보려 합니다. 1. 파이썬 map 함수 설명과 사용법 2. 파이썬 map 함수 예제 1. map 함수 설명과 사용법 1-1) 파이썬 맵 함수 기본 blockdmask.tistory.com https://blockdmask.tistory.com/520 [python] 파이썬 람다(lambda) 함수 설명 및 예제 안녕하세요. BlockDMask 입니다. 오늘은 파이썬에서 람다함수에 대해서 알아보겠습니다. 람다함수는 적절한 곳에 잘 쓰인다면 코드..
이번에 적용한 SummerNote 에디터이다. 부트스트랩4, 5 별도 구분하여 적용하는 부분도 있다. https://summernote.org/getting-started/#simple-example Summernote - Super Simple WYSIWYG editor Super Simple WYSIWYG Editor on Bootstrap Summernote is a JavaScript library that helps you create WYSIWYG editors online. summernote.org 구글웹 한글폰트도 같이 연동했다. https://fonts.google.com/noto/specimen/Noto+Sans+KR Noto Sans Korean - Google Fonts Noto ..
코딩할때 한줄로 처리할때 아주 유용한 삼항 연산자이다. Django 에서 if a % 2 == 0: print("짝수") else: print("홀수") print("짝수") if a % 2 == 0 else print("홀수") 자세한 내용은 아래의 개발자 지망생님의 포스팅 글을 참고 하도록 하자. https://blockdmask.tistory.com/551 [python] 파이썬 삼항 연산자 (if ~ else ~) 안녕하세요. BlockDMask입니다. 오늘은 파이썬에서 사용하는 삼항 연산자에 대해서 알아보겠습니다. 1. 파이썬에서의 삼항 연산자 2. 파이썬 삼항 연산자 예제 1. 삼항 연산자 (Ternary Operators) 1-1) 삼 blockdmask.tistory.com 참고로 위의 삼..