Programming(18)
-
JSDoc
[ JSDoc 이란 ] - Javascript 소스코드 파일에 주석을 달기위해 사용되는 마크업언어이다. - 즉, Javascript API 문서 작성할 수 있는 기능이다. - 형식: /** */ - 작성 후 함수 호출할때 자동완성 말풍선에서 해당 Comment 를 보고 참고할 수 있다. - 타입스크립트에서 잘 사용했는데, 요즘은 라이브러리를 사용하여 Javascript 에서도 자주 사용한다. [ 사용 예 ] 1 2 3 4 5 /** * 함수 설명 및 기능 안내 * @param {string} firstParam * */ cs [ 주요 속성 ] param : 함수 파라미터 타입 및 파라미터 설명 ex) @param {string} address author : 작성자 정보 설명. ex) @author Dd..
2022.08.25 -
Universal Extractor (exe 파일 까기)
[ .exe / .msi 설치 파일을 압출풀 듯 풀어주는 프로그램 ] [ 다운로드 ] https://github.com/Bioruebe/UniExtract2 GitHub - Bioruebe/UniExtract2: Universal Extractor 2 is a tool to extract files from any type of archive or installer. Universal Extractor 2 is a tool to extract files from any type of archive or installer. - GitHub - Bioruebe/UniExtract2: Universal Extractor 2 is a tool to extract files from any type of arch..
2022.05.23 -
RFC Function (Feat. JCO)
[ SAP 인터페이스 방식 중 하나 ] - Legacy - SAP 인터페이스 방식에는 PO 방식 (*EAI 통한 방식, SAP PO Legacy) 과 RFC (SAP 함수 직접 호출)이 있다. * EAI (Enterprise Application Integration, 기업 어플리케이션 통합) - Destination 으로 연결정보 설정 후 Function 호출 (SAP RFC Function 구조 파악) - SAP Function 스펙 받아오면 Parameter 바인딩 후 함수 호출 - 결과 받아보기(실시간) [ JCO ] SAP RFC Function 구현 시 필요한 라이브러리 (커넥터) JAVA 에서 SAP RFC Function 호출 시 사용 [ 리뷰 ] 처음 SAP 에서 제공하는 RFC Func..
2022.05.23 -
PLAY Nexacro
[ Nexacro 관련 커뮤니티 ] https://www.playnexacro.com/ play nexacro:플레이 넥사크로 Play Nexacro is a community site for nexacro platform. 넥사크로 플랫폼 사용자 커뮤니티 www.playnexacro.com
2022.05.23 -
Module 패턴
[ JavaScript 구현 시 자주사용하는 템플릿 ] var BASIC = BASIC || {}; BASIC = (function() { return { init : function() { ... }, event : function() { ... }, validate : function(proc, type) { ... return true; }, save : function() { ... } } })(); [ 참고 ] CONST = { TITLE : "타이틀", PREFACE : "(서문) 테스트 파일입니다.", BUTTON : { SHOW : "노출", HIDE : "숨김" } } var BASIC = BASIC || {}; BASIC = (function() { return { init : func..
2022.05.23 -
w3schools [ HTML / CSS 매뉴얼 ]
https://www.w3schools.com/ W3Schools Free Online Web Tutorials W3Schools offers free online tutorials, references and exercises in all the major languages of the web. Covering popular subjects like HTML, CSS, JavaScript, Python, SQL, Java, and many, many more. www.w3schools.com
2022.02.15