본문 바로가기

Ankiwoong

(1841)
runas를 이용한 AD(Active Directory)계정 테스트 방법 runas 를 이용하여 AD(Active Directory) 계정의 테스트를 해볼 수 있는 방법을 소개할려 합니다. runas는 일반 계정에서 권한 상승을 해서 관리자 작업을 할 수 있게 해주는 명령어 입니다. https://en.wikipedia.org/wiki/Runas runas - Wikipedia In computing, runas is a command in the Microsoft Windows line of operating systems that allows a user to run specific tools and programs under a different username to the one that was used to logon to a computer interactively..
Section06>파일 및 디렉토리 생성 및 실습 퀴즈 답안 Q1> # mkdir my-app Q2> # cd my-app # touch README.md package.json Q3> # mkdir public Q4> # touch ./public/index.html Q5> # mkdir src # cd src Q6> # touch App.css App.js index.css index.js Q7> # mkdir -p components/Navbar
코드 리뷰 요청 가이드 라인 리뷰요청이란, 저장소(Repository)에 반영하고자 하는 코드의 리뷰를 Reviewer에게 요청하는 활동입니다. - Commit은 단일 기능, 단일 주제로 구성한다. - Commit을 Atomic하게 구성함으로써 리뷰하는 사람이 짧은 시간에 효율적인 리뷰가 가능하다. - 개발 업무 시스템화를 위해 Commit을 WBS, Issue, Defect 단위로 구성 가능하다. - 1시간 내 리뷰를 고려하여 200라인 이하의 짧은 코드로 Commit을 구성한다. - 예외 : 파일 전체를 삭제하거나, 신뢰할 수 있는 자동 리팩토링 도구를 활용한 경우 많은 양의 코드 변경이 있을 수 있다. - 리뷰가 빨..
Section05>파일 시스템 탐색 퀴즈 답안 Q1> # pwd Q2> # ls ~ Q3> # cd .. # cd .. # cd /home/user/바탕화면 # cd ~/바탕화면 Q4> # cd Farms/ Q5> # ls -la Farm/ Q6> # cd Coop/ Q7> # ls -la Q8> # cd Chickens/ Q9> # ls -la # ls -l | grep ^- | wc -l Q10> # ls -ltu # ls -la --sort:time Q11> # cd ../Geese Q12> # ls -la # ls -l | grep ^- | wc -l Q13> # ls -lah --sort=size Q14> # cd ../../Stable/Horses Q15> # ls -la | grep ^- | wc -l Q16> # ls -m
[컴퓨터활용능력1급]수업 정리 6 - 자료 관리 프로그램 - 통합된 데이터, 저장된 데이터, 공유된 데이터, 운용되는 데이터 (통합 저장하고 공유해서 사용하는 데이터 관리 시스템) : 실시간적인 접근, 계속적인 변화, 내용에 의한 참조, 보안성, 데이터 무결성 - 기존 파일 시스템의 문제점 때문에 나타남. : 자료의 중복(프로그램별로 자료를 가짐), 자료의 불일치(자료의 종속) 성적관리 프로그램 - 학생 data - 학번 숫자->텍스트 변경 학생관리 프로그램 - 학생 data - 학번 숫자 - 따라서 자료의 중복을 최소화하고 업데이트나 추가시 불일치를 없애고, 데이터의 독립성(논리/물리) 보장하는 것이 목적 -DB시스템 구성요소 : DBMS, DBA, 개발자, 사용자, 스키마, 언어, SQL : 데이터베이스 정의, 조작, 제어를 하는 언..
Samsung Second Screen 16:10 적용 방법 Samsung Second Screen 은 기본적으로 16:9으로 되어있어 Second Screen을 사용하면 레터박스가 생겨 몬가 불편하다. 이를 개선하기 위해 간단하게 어플을 설치 하면 가능하다. 해상도 이름 해상도 비율 설명 FHD 1920x1080 16:9 Full HD, 2K, 1080p HD+ 1600x900 16:9 HD Plus HD 1280x720 16:9 Full HD 4/9, 720p 1. 시작 > Microsoft Store 검색 2. Second Screen 검색 3. Second Screen 설치 4. 배율 및 레이아웃 확인 해상도 이름 해상도 비율 설명 WUXGA 1920..
코드 검토 수행시 확인 사항 · The code is well-designed. · The functionality is good for the users of the code. · Any UI changes are sensible and look good. · Any parallel programming is done safely. · The code isn’t more complex than it needs to be. · The developer isn’t implementing things they might need in the future but don’t know they need now. · Code has appropriate unit tests. · Tests are well-designed. · The devel..
C/C++, Java, C#, Python 코딩 스타일 표준 규칙 / 지원 도구 지원 언어 Code Checker 가이드라인 Code Formatter 가이드라인 Coding Style 가이드라인 C/C++ cpplint AStyle, clang-format Google Style Guide (C/C++) Java checkstyle AStyle, clang-format Google Style Guide (Java) C# dotnet-format dotnet-format Microsoft Coding Convention Python pycodestyle(PEP8) autopep8 PEP8 Style Guide - https://github.com/cpplint/cpplint GitHub - cpplint/cpplint: Static code ..