일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
- Unity IAP
- Git
- --watch
- Google Refund
- mongoDB
- Spring Boot
- Packet Network
- OverTheWire
- springboot
- docker
- Digital Ocean
- Unity Editor
- Camera Zoom
- draganddrop
- Google Developer API
- java
- MySQL
- css framework
- express
- server
- react
- nodejs
- Camera Movement
- linux
- rpg server
- spread 연산자
- unity
- SDK upgrade
- critical rendering path
- screencapture
- Today
- Total
목록ETC (8)
우당탕탕 개발일지

이전 문제들은 여기에 https://journal-devchop.tistory.com/33 [Linux] OverTheWire Lv0 ~ Lv10 https://overthewire.org/wargames/bandit/bandit0.html journal-devchop.tistory.com https://journal-devchop.tistory.com/34 [Linux] OverTheWire Lv11~ Lv20 다른문제들은 아래 링크 [Linux] OverTheWire Lv0 ~ Lv10 https://overthewire.org/wargames/bandit/bandit0.html journal-devchop.tistory.com [Linux] OverTheWire Lv21~ Lv34 Lv20 jour..
다른문제들은 아래 링크 [Linux] OverTheWire Lv0 ~ Lv10 https://overthewire.org/wargames/bandit/bandit0.html journal-devchop.tistory.com [Linux] OverTheWire Lv21~ Lv34 Lv20 journal-devchop.tistory.com lv11. tr 명령어에 대한 문제이다. 아스키에서 a의 13번째 위 문자는 n이다 문자 a-z 를 n-z,a-m 으로 변경하는 명령어는 다음과 같다. cat data.txt | tr '[a-z]' '[n-za-m]' ##대문자도 적용하려면 cat data.txt | tr '[a-z]' '[n-za-m]' | tr '[A-Z]' '[N-ZA-M]' ## 간단하게 줄이면 아..
https://overthewire.org/wargames/bandit/bandit0.html

이미지는 docker Hub 사이트에서 찾을 수 있다. https://hub.docker.com/ Docker Hub Container Image Library | App Containerization Increase your reach and adoption on Docker Hub With a Docker Verified Publisher subscription, you'll increase trust, boost discoverability, get exclusive data insights, and much more. hub.docker.com 나는 kalilinux/kali-last-release 를 다운받았다. https://hub.docker.com/r/kalilinux/kali-last-r..
로컬의 원하는 git 프로젝트 경로로 들어가서 다음을 입력 git credential-osxkeychain erase ↵ host=github.com ↵ protocol=https ↵ 하고나서 다시 git push ~~ 를 하면 다시 계정과 비밀번호(personal access token)을 입력하라고 나온다 ++ git 레포지토리를 연결한 후 pull 을 하려하는데, 매번 할때마다 id와 accesstoken을 입력해야 하는 문제가 발생함. 위 사이트를 참고해서 토큰을 기억할 수 있게끔 진행하려함. 1. credential-osxkeychain 이 설치되어있는지 확인하고 설치되어있지 않다면 설치하기. (homebrew 설치까지) git credential-osxkeychain #credential-os..
Android Studio 와 Flutter 설치 1. android Studio 설치 한다. 2. plugins 에서 flutter 를 추가한다. 3. Sdk manager 에 들어가서 sdk tools > Android SDK command-line tools 를 추가 및 apply Homebrew 설치 및 openjdk 설치 자바 개발도구를 설치하기 위해 Homebrew 를 사용하기 위해 설치해보도록 하자. https://brew.sh/index_ko Homebrew The Missing Package Manager for macOS (or Linux). brew.sh 1. 위 사이트에 들어가면 homebrew를 설치할 수 있는 명령어가 나오는데, 터미널에서 그대로 입력해주면 된다. 2. 설치가 완..
깃 레포지토리 연결하기 우선 깃허브에서 레포지토리를 생성한다. 로컬컴퓨터 내 업로드를 원하는 폴더에 가서 gitbash 를 오픈한다. 최초 커밋 시 git init git remote add origin git add . #현재 디렉토리에서 변경된 것 모두 적용 git commit -m "first commit" git branch -M main #main 이라는 branch 생성 (이건 맨최초만) git push -u origin main #main 브랜치로 푸쉬함. git push -u origin main 에서 -u 옵션은 **-set-upstream**의 약어입니다. 이 옵션은 로컬 브랜치를 원격 브랜치에 연결하는 역할을 합니다. 만약 로컬 브랜치에서 처음으로 push를 실행하는 경우, -u 옵션..