본문 바로가기

반응형

개발자정보

(310)
Modernizr 오픈소스 자바스크립트 라이브러리 HTML5와 CSS3의 명세에 정의된 요소와 속성들에 대한 지원여부를 점검하는 방식으로 기존의 방식보다 더 정확한 분류가 가능하다. https://modernizr.com/ Modernizr: the feature detection library for HTML5/CSS3 What is Modernizr? It’s a collection of superfast tests – or “detects” as we like to call them – which run as your web page loads, then you can use the results to tailor the experience to the user. modernizr.com https://github...
JavaScript 콘솔 로그 출력 : console.log("콘솔 테스트!"); 자료형 - 숫자형 : 정수형(Integer), 소수(floating point) - 문자형 - 불린(Boolean) : true 또는 false 값을 가지는 자료형 추상화(Abstraction) : 구체적인 정보를 빼고 목적에 맞는 꼭 필요한 핵심만 가지고 있는 것 // 변수 선언 let iwmsLocatorId; iwmsLocatorId = 3000; console.log(iwmsLocatorId); 식별자는 '문자(a-z, A-Z)', '밑줄(_)' 혹은 $로 시작 두 번째 글자는 숫자(0-9)'도 가능함. 대소문자 구별함. 예약어 사용 안함(if, for, let....) 변수명은 camelCase 스타일로 작성함. https://git..
mariadb 문자열 합치기 Example: SELECT CONCAT('Agent', 47); space: SELECT CONCAT('Agent ', 47) AS "Option 1", CONCAT('Agent', ' ', 47) AS "Option 2"; Result: +----------+----------+ | Option 1 | Option 2 | +----------+----------+ | Agent 47 | Agent 47 | +----------+----------+
Open JDK 다운로드 받는 곳, & Maria DB 원도우 환경 설치 파일 http://www.autoset.org 오토셋 소개 AutoSet 유지보수 종료 안내 1. 오토셋에 대한 유지보수 계획이 없기에 사용자분들께 이 내용을 알려드립니다. 2. 현재 사이트를 통해 제공되는 버전이 최종 버전이며, 더 이상의 업그레이드가 없 autoset.net https://www.openlogic.com/openjdk-downloads OpenJDK Downloads | Download Java JDK 8 & 11 | OpenLogic The JDK is the platform for building and deploying Java applications. It is comprised of the JRE (Java Runtime Environment), the JVM (Java Virtu..
React 학습자료 #001 index.html index.js import React from "react"; import ReactDOM from "react-dom"; import App1 from "./tutorial/01-react-is-declarative"; import App2 from "./tutorial/02-fx-component-useState"; import App3 from "./tutorial/03-fx-component-useState-sol"; import App4 from "./tutorial/04-fx-component-useEffect-didmount"; ReactDOM.render(, document.getElementById("container")); import App1 from "./tut..
Salesforce Not Exists SELECT Count(Id) FROM Opportunity WHERE VIW_PUSER__C != null AND mig_TableName__c != null AND Id not in ( SELECT opportunityId FROM Opportunityteammember WHERE TeamMemberRole ='PUser' )
요즘 관심있는 오픈소스 관련 사이트 정보 https://www.findbestopensource.com https://www.openhub.net/ https://github.com/ GitHub: Let’s build from here GitHub is where over 83 million developers shape the future of software, together. Contribute to the open source community, manage your Git repositories, review code like a pro, track bugs and feat... github.com 고품질 프로토타입 개발 대화하고 고객과 자사의 인력과의 믿음으로 서로 협업하여 표준화 시스템 구축합니다. Java, HTML, Jquer..
[IDE] IntelliJ 주석 단축키 [IDE] IntelliJ 주석 단축키 줄 단위 : ctrl + / 블럭 단위 : ctrl + shift + / 파라미터 정보 커맨드 사용 : ctrl + p. 자동완성 : ctrl + shift + enter. getter/setter 생성 : ctrl + enter.

반응형