분류 전체보기
네트워크 관리사 2급 실기 요약본
네트워크 관리사 2급 실기 유형 분석 : http://blog.naver.com/limits2018/220429820407 라우터 케이블 제작 Windows 2008 Server R2 Linux TCP/IP 네트워크 장비 신경향 및 보안 합계 3 1 8 2 3 1 18 5.5 6.5 5.5 5.5 5.5 5.5 100 라우터 (확인/변경) 1. 확인 1) 인터페이스 정보를 확인하라 enable - show interface - copy r s 2) 접속한 사용자를 확인하라 enable - show user(s) - copy r s 3) 라우팅 테이블을 확인하라 enable - show ip route - copy r s 4) 플래쉬를 확인하라 enable - show flash - copy r s 2. ..
R 1편 / 설치 및 데이터 포맷
Install for R on mac download page 에서 다운을 받는다. 사용방법 libarary확인 > library() System package path > .libPaths() Install package from CRAN(Comprehensive R Archive Network) network > install.package("package-name") manual install package > install.packages("ggplot2", lib = "/data/Rpackages/") > library(ggplot2, lib.loc="/data/Rpackages") Data format 값 할당은 a b c d e first second c(first, second) [1] "..
javascript로 linked list 만들기 (느낌대로)
Linked List on Javascript class Node, class LinkedList 를 만들고 push, pop, printall, size 함수를 만든다아래는 코드 전문이다. class Node { constructor(data) { this.data = data; this.next = null; } } class LinkedList { constructor() { this.root = null; this.curNode = null; this.size = 0; } push(data) { const node = new Node(data); if (this.root == null) { this.root = node; this.curNode = node; } else { this.curNode..
drupal 다시 설치하기 (drupal reinstall)
Drupal reinstall 드루팔을 재설치 하면서 겪은 경험 어느 날, 드루팔이 공격을 당하고 있다.. 라는 기사를 봤다.그래서 코어 업데이트를 해보는 도중 update에 막혀서 그냥 드루팔을 다시 설치하기록 했다. 1. 백업 겸 폴더 삭제 어떤 것이든 변경하거나 설치할 때는 백업을 해두는 습관을 들이자.내가 코어를 밀려다가 드루팔을 다시 설치하는 이유도 백업을 하지 않은 상태로 rm으로 다 날려먹어서 그렇다. $ mkdir -p /tmp/backup/drupal $ cd [drupal path] $ cd .. $ mv [drupal folder] /tmp/backup/drupal/drupal.backup.190306 2. mySQL database삭제 mysql에 drupal install 정보가 ..
[react-native] android build시 npm list의 compile버전에 대한 문제
Error react-native npm 하위 프로젝트의 android compile 버전이 root project의 버전과 상이하여 발생하는 문제 error: resource android:style/TextAppearance.Material.Widget.Button.Borderless.Colored not found. error: resource android:style/TextAppearance.Material.Widget.Button.Colored not found. Solution this fixed for megradle.build에서 하위 프로젝트에 대한 버전을 명시해준다.in android/build.gradle subprojects { afterEvaluate {project -> if ..
[Visual Studio Code] terminal에서 code 명령어 입력하기
보통 vs code내에서 설정을 통해 code 명령어를 입력시키는데 재부팅을 하게 되면 도로묵이 되고 만다.그래서 아예 .bash_profile에 넣어놓는 것을 찾아보았다. OK, it seems "ln" command not work for me (I use this command set up sublime text). But I got an another solution.edit your ~/.bash_profile file.add the following code in it. code () { VSCODE_CWD="$PWD" open -n -b "com.microsoft.VSCode" --args $* ;}after save. do not forget to run source ~/.bash_prof..
[error] Cannot find module 'asap/raw'
Cannot find module 'asap/raw' npm install 을 하면 해결됩니다.(yarn install을 대신해서) ref) https://stackoverflow.com/questions/53031689/cannot-find-module-asap-raw
Visual Studio Code 사용중인 Plugin
Visual Studio Code 사용중인 Plugin Visual Studio Code에서는 다양한 플러그인을 제공하는데 몇 가지만 설치하면 더 편리하게 사용할 수 있다. 1) Prettier - Code formatter 저장시 자동으로 코드 정렬설정창에서 아래와 같이 설정editor.formatOnSave Preferences > SettingsOn macOS - Code > Preferences > Settings 2) Vim Vim