본문 바로가기

전체 글

(47)
Clean Code 3. 함수 함수의 목적 or 종류 행위 : man.setName("Tom") 변환 : age = man.getAge() 상태 : if(man.isGirl()) 함수의 추상화 레벨 함수 내부의 추상화 레벨을 일치시킬것. public void CreateTestPage() { IncludeSetups(); IncludeTestPageContent(); IncludeTeardowns(); } public void IncludeSetups() { if(this.IsSuite()) { IncludeSuiteSetup(); } IncludeRegularSetup(); } public void IncludeSuiteSetup() { var parentPage = FindParentSuitePage(); // add ..
RPGLE CODE STYLE GUIDE https://www.nicklitten.com/rpg-ile-coding-style-standards-for-ibm-i-iseries-and-as400-programmers/ RPG Programming Standards - Code Style Guide for IBM i, iSeries and AS400 Programmers - Nick Litten is IBM-i, AS400 iSeries RPG RPG Programming Standards? “RPG Programming Standards” have been debated since the invention of the wheel. With an entire generation of RPG programmers evolving from the e..
Thymeleaf https://velog.io/@max9106/Thymeleaf-자주-사용하는-문법 불러오는 중입니다...
PM 1. 소프트웨어 품질에 대한 이해 효율성 : 목적과 상관없이 경제적 능률을 높이려고 하는 특성 성능 품질: 경쟁제품과 비교우위 성능, 기능, 서비스 등 -> 매력 품질: 특별한 부가서비스, 최신 기능 등 개발: 모호한 요구사항을 구체화하는 과정이며, 위험과 결함을 조기에 식별하고 대응하는 과정 QC, QUAILITY CONTROL : 제품의 평가(테스팅) -> QA, QUAILITY ASSURANCE: 제품을 만드는 프로세스의 평가 (제품 생산, 관리, 지원 프로세스 정립의 선행 필요) 실천전략 1. 매일 10분씩 나누는 품질 관련 대화 2. 산출물 실명제(품질 책임 강화) 3. 프로젝트별로 우수사례(Best Practice) 할당(우수성 추구) - 달성시 포상 : 프로젝트를 통해 만들고 싶은 우수사례 ..
Cheat - Typescript 변수선언 : Var (일반), Let (블럭범위), Const (상수선언) var 일반적인 변수선언, let 선언된 블럭범위안에서만 사용가능, const 상수선언 자료형 : Var Type //Number let _num :number = 10.345; _num.toFixed(2); // "10.35" _num.valueOf(); // 10.345 _num.toString(); // "10.345" _num.toPrecision(2); //"10" //------------------------------------------------------------------------------------- //String let _str:string = "Typescript"; _str.charAt(1); ..
엑셀 VBA https://trumpexcel.com/excel-vba/ Online Excel VBA Tips & Tutorials (Resource Guides + Videos) Want to learn Excel VBA? You're at the right place. Here you'll find a collection of useful VBA tips and tutorials that will help you understand the concepts and VBA and how to use these to automate your work in Excel. trumpexcel.com
C# Excel Library NPIO https://github.com/tonyqus/npoi/blob/master/examples/xssf/ApplyFontInXlsx/Program.cs tonyqus/npoi a .NET library that can read/write Office formats without Microsoft Office installed. No COM+, no interop. - tonyqus/npoi github.com
Flask, django - Python web framework https://flask-docs-kr.readthedocs.io/ko/latest/index.html Flask의 세계에 오신것을 환영합니다. — Flask 0.11-dev documentation © Copyright 2012, Armin Ronacher. flask-docs-kr.readthedocs.io https://flask-restplus.readthedocs.io/en/stable/scaling.html Scaling your project — Flask-RESTPlus 0.13.0 documentation Scaling your project This page covers building a slightly more complex Flask-RESTPlus app that will cov..