본문 바로가기 메뉴 바로가기

VoidNoble IT Zone

프로필사진
  • 글쓰기
  • 관리
  • 태그
  • 방명록
  • RSS

VoidNoble IT Zone

검색하기 폼
  • 분류 전체보기 (720)
    • AI (1)
    • 모바일 (119)
      • Flutter (0)
      • React Native (1)
      • 모바일웹 (20)
      • Android (54)
      • iOS (39)
      • 윈도우모바일 (1)
    • 웹프로그래밍 (313)
      • html (12)
      • js (77)
      • css (31)
      • NodeJS (13)
      • Python (1)
      • PHP (42)
      • ASP Classic (68)
      • GoLang (1)
      • Wordpress (6)
      • JSP (3)
      • .NET (6)
      • Scala (1)
      • XML (4)
      • 웹접근성 (6)
      • Adobe Air & Flex (2)
    • SQL (35)
      • MS-SQL (26)
      • MySql (5)
      • MongoDB (2)
    • OS-서버-서비스 (152)
      • macOS (9)
      • Docker (9)
      • CloudFlare (1)
      • NginX (5)
      • Git (3)
      • AWS (6)
      • Azure (4)
      • 구글 DFP (광고서버) (1)
      • Windows (72)
      • Elasticsearch (3)
      • IoT (1)
      • Linux (27)
    • 응용프로그래밍 (11)
      • Java (1)
      • C# (8)
      • Visual Basic (0)
      • VB.NET (0)
    • 디자인 (16)
      • Photoshop (5)
      • illustrator (0)
      • Flash (1)
      • 웹디자인 (6)
      • 디자인 리소스 (1)
      • Inspiration (0)
    • Tools (12)
      • Visual Studio Code (5)
      • sublime text (1)
      • PHPStorm (4)
    • 개발 옆차기 (1)
    • 서비스들 (18)
    • 용어?영어? (2)
    • 문서-사무-OA (0)
    • 자료실 (34)
    • 하드웨어 (0)
    • 네트워크 (2)
    • 개발자 생활로그 (4)
  • 방명록

웹프로그래밍 (313)
PHP 9.0의 새로운 기능과 변화 미리보기

향상된 증가 및 감소 연산자 동작++와 -- 연산자의 동작 개선불필요한 문자열 증가가 제거되고, 불리언 및 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..

웹프로그래밍/PHP 2025. 4. 3. 12:12
Qt Designer 독립 실행

사전설정 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..

웹프로그래밍/Python 2023. 4. 24. 15:21
Firestore 안전하지 않은 규칙이 있습니다 경고 대응

대개의 인터넷 글들에서 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..

웹프로그래밍/js 2022. 10. 31. 00:30
java.util.zip.ZipException: error in opening zip file

국산 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..

웹프로그래밍/JSP 2022. 1. 18. 15:38
전자정부프레임웍 뷰용 HTML 보일러플레이트

Google Fonts Making the web more beautiful, fast, and open through great typography fonts.google.com

웹프로그래밍/html 2022. 1. 6. 09:34
IE 10 이상 브라우저 미디어 쿼리 이용한 CSS Style 적용

예전이라면 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 */ }

웹프로그래밍/css 2021. 12. 28. 14:34
CSS Media query breakpoints 미디어 쿼리 중단점

/* 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..

웹프로그래밍/css 2021. 12. 17. 00:02
Clear cache 캐시 클리어

HTML JSP JSP static file

웹프로그래밍 2021. 12. 16. 23:54
GoLang Hello World 시작하기

기본 코드 작성 main.go package main import "fmt" func main() { fmt.Println(“Hello World") }빌드 $ go build실행 $ go run main.go Hello World참고 https://medium.com/@pandey.ritwik/starting-with-golang-f3b376ffcec1

웹프로그래밍/GoLang 2019. 10. 19. 14:32
serverless 로컬 디버깅 방법

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..

웹프로그래밍/NodeJS 2019. 3. 31. 23:33
이전 1 2 3 4 ··· 32 다음
이전 다음
공지사항
  • 비방 욕설 의견은 바로 삭제해 드립니다
최근에 올라온 글
최근에 달린 댓글
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
  • 한컴 인터넷 오피스
TAG
  • 워드프레스
  • Wordpress
  • IOS
  • javascript
  • CSS
  • nodejs
  • 한글
  • 안드로이드
  • iphone
  • PHP
  • JQuery
  • IE
  • iis
  • classic asp
  • Debug
  • Linux
  • Docker
  • centos
  • Mac
  • Android
  • ASP
  • Prototype
  • sencha touch
  • laravel
  • git
  • macos
  • API
  • mssql
  • JSON
  • nginx
more
«   2025/05   »
일 월 화 수 목 금 토
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
글 보관함

Blog is powered by Tistory / Designed by Tistory

티스토리툴바