향상된 증가 및 감소 연산자 동작++와 -- 연산자의 동작 개선불필요한 문자열 증가가 제거되고, 불리언 및 null 값도 숫자로 간주// PHP 8 및 이전$foo = 'a9';$foo++;echo $foo; // 결과: 'b0'// PHP 9$foo = 'a9';$foo++; // TypeError 발생빈 문자열이 숫자로 변환되는 것 금지// PHP 8 및 이전$baz = '';$baz--; // 결과: int(-1)// PHP 9$baz = '';$baz--; // TypeError 발생역직렬화 오류 발생 시 예외 처리역직렬화 실패시 E_WARNING에서 UnserializationFailedException으로 상향// PHP 8.3unserialize("foo"); // 경고 발생// P..
사전설정 Linux sudo apt-get install qttools5-dev-tools 실행 PyQt6 tools 이용 pip install pyqt6-tools pyqt6-tools designer PySide6 이용 pip install pyside6 pyside6-designer 참고 https://www.pythonguis.com/installation/install-qt-designer-standalone/ Download Qt Designer for Windows, Mac and Linux Qt Designer Download for Windows, Mac and Linux. Qt Designer is a cross-platform drag and drop GUI designer, whic..
대개의 인터넷 글들에서 Firestore 규칙 설정을 아래의 allow로 시작하는 줄과 같이 하라고 함. rules_version = '2'; service cloud.firestore { match /databases/{database}/documents { match /{document=**} { allow read, write: if true; } } } 위와 같이 전체에 그냥 허용하면 아래와 같은 보안 규칙 경고 메일을 계속 받게 됨. 해당 문제에 대한 대응으로 구글링에서 답해주는 코드 예시 중 간단한 예시로 allow 줄을 수정했음. rules_version = '2'; service cloud.firestore { match /databases/{database}/documents { matc..
국산 JSP 커뮤니티들이나 블로그들에서 얻을 수 있는 해결책은 WEB-INF/lib/*.jar 깨진게 없나 점검해봐라 에서 조언 끝! 중생들 답답하게 하네... 대체 깨진걸 어떻게 찾아내냐? 스택오버플로에서 방법을 찾음. 아래 Bash 쉘 명령을 실행하면 어떤 *.jar 파일들이 문제인지 리스팅된다. /path/to/lib 경로만 자신의 환경에 맞게 수정하여 사용. for j in $(find /path/to/lib -name '*.jar'); do jar -tvf $j > /dev/null 2>&1; [ "$?" -ne 0 ] && echo "$j jar is broken"; done https://stackoverflow.com/a/54930734 Tomcat Caused by: java.util.z..
예전이라면 IE hack 쓰는것을 먼저 생각했었는데 코드가 지저분해지기에 꺼림하여 찾아보니 지원해야 할 IE 버젼이 10 이상이라면 아래와 같은 미디어 쿼리 내에 스타일들을 할당하면 된다 /* IE 10 and above */ @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) { /* Some styles for IE 10 and above */ }
/* Media Query for Mobile Devices */ @media only screen and (max-width: 480px), only screen and (max-device-width: 480px) { } /* Media Query for 320px — 480px: Mobile devices */ @media only screen and (min-width: 320px) and (max-width: 480px) { } /* Media Query for 481px — 768px: iPads, Tablets */ @media only screen and (min-width: 481px) and (max-width: 768px) { } /* Media Query for 769px — 102..
HTML JSP JSP static file
1. handler.js callback() 필드 중 body 의 값 Type은 String 이어야만 함. 만약 다른 형식을 지정하면 postman 같은 툴에서 502 Internal Server Error 를 만나게 됨. module.export.run = (event, context, callback) => { return callback(null, { statusCode: 200, headers: { 'Access-Control-Allow-Origin': '*', 'Access-Control-Allow-Credentials': true }, body: event }); }; 2. postman 에서 api uri 로 호출 Body > raw > application/json { “foo": “bar..
- Total
- Today
- Yesterday
- Make Use Of
- How to geek
- 인터넷 통계정보 검색시스템
- 트위터 공유 정보모음
- 웹표준KR
- 치우의 컴맹탈출구
- Dev. Cheat Sheets
- w3schools
- Dev. 조각들
- ASP Ajax Library
- CSS Tricks
- WebResourcesDepot
- jQuery Selectors Tester
- DeveloperSnippets
- Smashing Magazine
- Nettuts+
- devListing
- 웹 리소스 사이트(한)
- Mobile tuts+
- Dream In Code
- Developer Tutorials
- CSS3 Previews
- 자북
- 안드로이드 사이드
- Code Visually
- Code School
- SQLer.com
- 무료 파워포인트 템플릿
- iconPot
- Free PowerPoint Templates
- Design Bombs
- Web Designer Wall
- 1st Webdesigner
- Vandelay Design
- 무료 벡터 이미지 사이트들
- Tripwire Magazine
- Web TrendSet
- WebMonkey
- 윤춘근 프리젠테이션 디자이너 블로그
- cz.cc 무료 DNS
- [웹하드] MediaFire
- [웹하드] DivShare
- 한컴 인터넷 오피스
- Prototype
- ASP
- Debug
- sencha touch
- nginx
- 안드로이드
- JSON
- git
- iphone
- Mac
- mssql
- centos
- classic asp
- javascript
- iis
- JQuery
- 워드프레스
- nodejs
- CSS
- IOS
- Linux
- Wordpress
- API
- Chrome
- laravel
- Android
- 한글
- PHP
- Docker
- IE
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |