본문 바로가기

학교 & 학원 이론 수업/FPT 회사에서 배운 내용

(14)
git 1) 깃 브랜치 확인 git branch 후 브랜치 옮기기 git checkout ~ 2) 깃 올리고 싶은 폴더 경로로 이동 3) git reset 과 git pull 이후 git reset --hard lampauto/ext_ccic_t 4) 파일 수정 5) git add . 6) git commit -m "커밋룰에따라작성" 7) git push lampauto HEAD:refs/for/ext_ccic_t cf. git remote -v git commit -amend 로 커밋 메시지 푸시 전에 수정 가능 git diff 바뀐 부분 확인 가능 git status git log 참고로 모바엑스텀 말고 온라인IDE에서 해야 커밋 메시지 쓸 때 편리함
안드로이드(코틀린) 프로젝트 1달차 정리 Software Engineer 로 첫 한 달 을 보내고 있는 나는 역시나 신입답게 매우 헤매면서 한걸음씩 내딛고 있다. 많이 혼나면서 멘탈도 깨져가면서 진행중이다. 정리 해놓고 싶은 사항들이 있고, 다른 사람들에게도 도움이 될지도 모르겠어서, 또 나 자신에게도 나중에 기억하기 좋을 것 같아 정리해둔다. 우선 지금 하는 업무는, CloudService 라는 서비스를 기존의 안드로이드 서비스들 및 어플리케이션들과 연결하는 작업이다. CloudService 코드를 기존 레포지토리에 이식해서 빌드를 하고 이미지 릴리즈를 하면, 에뮬레이터 이미지 산출물이 나오고, cloudService 기능이 잘 돌아가는지 테스트 앱으로 확인하는 작업을 하고 있다. 이번주에 삽질을 한 부분이 세 부분 있어서 정리하자면, 1) ..
AWS Basics (4) 🔥AWS Full Course 2023 | AWS Tutorial For Beginners 2023 | AWS Training For Beginners | Simplilearn - YouTube -AWS Data Transfer -Amazon SNS : notification service -KMS : encryption -AWS Lambda -Route 53 : DNS service HOW does AWS make lives easier ? IAM : Identity and Access Manaement -allowing certain action - - - [Hands On Lab - IAM] 1)create s3 folder 2)IAM > Users > create 2 users 3) Use..
Embedded Programming TI LaunchPad with SimpleLink Wireless MCU 1) 다운로드 SDK와 IDE 2) ti > sdk > docs > drivers > APIs 확인 가능 3) Data Sheet , User Guide , 등을 통해서 사용법 확인 가능 4) IDE 에서 example 프로젝트 import 해서 보드에 테스트 가능 5) import한 예제 프로젝트의 main() 함수에서 시작되는 로직을 분석해볼 수 있다. register, compiler , RAM , 과 어떻게 연결되는지 (cf. Memory Map) MCU 및 pin 들과 어떻게 연결되는지
Android - intent package com.example.homework1; import androidx.appcompat.app.AppCompatActivity; import androidx.recyclerview.widget.LinearLayoutManager; import androidx.recyclerview.widget.RecyclerView; import android.annotation.SuppressLint; import android.content.Intent; import android.graphics.PorterDuff; import android.os.Bundle; import android.view.View; import android.widget.Button; import android.widget...
Android - RecycleView layout>activity.xml layout>item.xml MainActivity.java package com.example.homework1; import androidx.appcompat.app.AppCompatActivity; import androidx.recyclerview.widget.LinearLayoutManager; import androidx.recyclerview.widget.RecyclerView; import android.graphics.PorterDuff; import android.os.Bundle; import android.widget.Button; import java.util.ArrayList; import java.util.List; import android..
Android(3)
Android(2)- 231024 Linear Layout : 배열을 위에서 아래로 차례로 할 떄 Relative Layout : 배열을 옆 위 아래 섞어서 할 때 Constraint Layout : 배열을 곂쳐서 할 때