- ViewData
- 맥 오라클설치
- 말줄임표시
- XSS PHP
- javascript redirection
- javascript 유효성체크
- Mac Oracle
- jquery 바코드
- SSD 복사
- asp.net core Select
- asp.net Select
- 404에러페이지
- jquery 바코드생성
- 타임피커
- django 엑셀불러오기
- 바코드 스캔하기
- ASP.Net Core 404
- javascript 바코드스캔
- php 캐쉬제거
- 하드 마이그레이션
- 파일업로드 유효성체크
- 하드 윈도우 복사
- javascript 바코드 생성
- 파일업로드 체크
- ViewBag
- 강제이동
- XSS방어
- 바코드 생성하기
- TempData
- asp.net dropdownlist
목록분류 전체보기 (753)
웹개발자의 기지개
최초 라즈비안 설치후 한글이 깨질때 sudo apt install fonts-unfonts-core 하고 sudo reboot 웹캠 설정을 위한 가상디렉토리 설정하기 (cctv) 필자는 /home/pi 안에 설치함 aihub@raspberrypi:~/works $ mkdir cam aihub@raspberrypi:~/works $ cd cam aihub@raspberrypi:~/works/cam $ python -m venv cam_env aihub@raspberrypi:~/works/cam $ source cam_env/bin/activate (cam_env) aihub@raspberrypi:~/works/cam $ deactivate aihub@raspberrypi:~/works/cam $ sourc..
row_number() 순위 함수이다. 페이징 작업시 유용하다. 그룹으로 묶어서 순서를 줄때는 partition by 칼럼 을 넣어준다. ROW_NUMBER() OVER( partition by name order by no asc ) AS RN SELECT *, ROW_NUMBER() OVER(PARTITION BY name ORDER BY name ASC) AS RN coupon_download where cno=1 다만, 유의할 것은 Mysql 5.5, 5.7 등의 버전에서는 ROW_NUMBER() 가 지원되지 않고 8점대 이상에서 지원됨을 유의 만약 이 ROW_NUMBER() 가 지원안된다면, 다중쿼리로 조금 복잡하게 처리해야 한다. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15..
오라클에서 ROW_NUMBER() 를 이용하는 것을 MS-SQL 에서도 이용할 수 있다. with 문으로 일련의 가상 테이블을 만들고, row_num 으로 페이징 처리한다. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 WITH cte_customers AS ( SELECT ROW_NUMBER() OVER( ORDER BY first_name, last_name ) row_num, customer_id, first_name, last_name FROM sales.customers ) SELECT customer_id, first_name, last_name FROM cte_customers WHERE row_num > 20 AND row_num
12345678910a img { transition: all 0.2s linear;} a:hover img { transform: scale(1.03); margin: 0px auto; overflow: hidden;}cs transition 으로 서서히 자연스럽게 움직이는 효과를 주고, 롤오버시에는 scale 을 줘서 약간 키운다. 1234567hero .animated { animation: up-down 2s ease-in-out infinite alternate-reverse both;} style="cursor:pointer;transition: transform .2s;margin: 0 auto;"cs
Visual Studio 2019 에서는 기존에 ASP.Net WebForm 이 디폴트로 같이 설치가 되는데, Visual Studio 2022 에서는 디폴트로 설치되지 않는다. 필자도 추후 .NetFrameWork 과거 WebForm 작업을 위하여 Visual Studio 2022 에서 수정으로 아래와 같이 추가 설치하였다.
자 우선 에러페이지 틀을 만들 수 있는 무료소스 페이지이다. https://www.bootdey.com/snippets/view/404-error-page-with-particles Bootstrap html snippet. 404 error page with particles Bootstrap snippet and html example. 404 error page with particles, this UI example was created for web development using HTML, Javascript and CSS by Bootdey Admin www.bootdey.com https://www.bootdey.com/snippets/view/500-error-page-with-parti..
ASP.Net Core 의 WebAPI 강의를 들어보자. 아주 쉽게 영상 강의를 소스와 함께 제공해 준다. https://www.youtube.com/watch?v=_uZYOgzYheU
기존 앱을 업데이트 하다보면 버전 때문에 고생을 많이 한다. Task :app:processDebugResources FAILED Execution failed for task ':app:processDebugResources'. > Android resource linking failed C:\...\AndroidManifest.xml:14: AAPT: error: unexpected element found in . 해결법 Project build.gradle 에서 버전을 수정 classpath 'cohttp://m.android.tools.build:gradle:3.4.1' 을 classpath 'cohttp://m.android.tools.build:gradle:3.4.3' 변경했다. 참고 : h..