2022.01 자청 단톡방에서 글쓰기 챌린지를 보고, 오늘부터 2주간 매일 글쓰기를 하기로 한다. 최근 자기개발에 대한 계기나 촉매재가 다소 부족했었던 것 같은데, 새해 다짐과 함께 적절한 타이밍인듯하다. 꾸준히 진행하는게 어렵다는 사실은 누구나 알고있는 터라, 대충 짧게라도 실행하는 것에 초점을 두려고 한다. (이런 다짐을 하는 모습이 낯설지가 않네..) 마음이 다소 풀어질때 자청 강의 Keun.R 2 min read 2022.01
Powerline 플러그인 설치 on Ubuntu 20.04 AWS Ubuntu 20.04 Python2.7 설치 $ sudo apt install python2.7 $ sudo add-apt-repository universe $ sudo apt update $ curl https://bootstrap.pypa.io/get-pip.py --output get-pip.py $ sudo python2 get-pip.py $ sudo apt install curl # curl 없을 경우 Powerline 플러그인 설치 $ sudo pip install git+git://github.com/Lokaltog/ Keun.R 1 min read 2021.12
Git 기본설정 $ rm -rf ./.git #초기설정을 위한 삭제 (필요시) $ git init $ git add . $ git commit -m "Comments" $ git remote add origin <url> $ git push -u origin master $ git remote -v $ git push --force --set-upstream origin master $ gitignore git rm -r --cached . #Repository cache 모두 삭제 git rm Keun.R 2 min read 2021.03
PHP Story ## 문자열 다루기 strpos("문자열", "찾을문자열") : 문자 시작하는 위치 substr("문자열", 시작번호, 길이) mb_stristr("문자열", "자") => "자열" 발견 처음문자부터 나머지 문자열 반환 explode() : 문자열을 분할하여 배열로 저장하는 함수 explode ( delimiter, string [, limit ] ) $a = '1 2 3& Keun.R 6 min read 2021.03
AWS - VPC VPC / S3 Setting * 기본 개념 정리 Amazon VPC(Virtual Private Cloud)생성하기 * 실습 블로그 * 비용절감 원리 * VPC * 테라폼 실습 Keun.R 1 min read 2020.12
Elfin - EW11 Setting 1. AP로 무선 연결 2. Web 로그인 http://10.10.100.254/ * 계정 : admin // admin 3. System Setting > WiFi Settings : WiFi STA 모드로 셋팅 후 적용 * WAN DHCP 수동설정은 편의상 재접속 후 셋팅 (바로 진행가능) 4. Serial Port Settings * Basic : Baud Rate - 9600 * Protocol : Modbus 5. Others > Keun.R 2 min read 2020.08
MSSQL 쿼리문에서 For 문 사용 DECLARE @i int SET @i = 149 WHILE(@i <= 149) BEGIN update [table] set content= (select [content] from [table] where idx=@i) where idx=@i SET @i = @i + 1 END 데이터 길이 측정 컬럼의 데이타 타입이 text, ntext 형일때는 DATALENGTH(), 일반적으로는 LEN()함수 사용 DATALENGTH( expression Keun.R 1 min read 2020.07
라즈베리파이 설치하기 SD 카드 설치 (64기가 넘는 경우, SDXC 형식이라 포멧 아래와 같이 챙겨줄 것) 1. SD Card Formatter 2. guiformat 참고자료 https://www.youtube.com/watch?v=JuiVELvy9T0&t=733s 해상도 셋팅 (Advanced Options > Overscan과 Resolution 을 확인해서 본인 환경) $ sudo raspi-config 카메라 기본 raspistill -o cam.jpg Keun.R 3 min read 2020.07