분류 전체보기
-
앱의 미래 : 선언적 UI 와 Kotlin MultiPlatform (Daniele Baroncelli)Kotlin 2020. 12. 15. 10:36
Daniele Baroncelli 라는 분이 작성한 블로그글입니다. 앞으로 앱개발은 Declarative UI 와 Kotlin MultiPlatform 을 이용하여 개발 되는 구조이고 공통적인 비즈리스 로직을 Kotlin MultiPlatform을 이용해 개발하고 각 플렛폼에 맞는 UI 를 DeclarativeUI 을 이용하여 개발한다는 큰 틀인것 같습니다. 아직 실무에서 적용된 사례는 없는것 같지만 앞으로 점차 이렇게 변화될 것으로 예상됩니다. 저도 요즘 관심있는 주제가 Kotlin MultiPlatform 와 JetPack Compose 입니다. 아래 블로그 링크는 영문 작성이나 설명을 위한 그림과 코드가 있으니 이해하는데 아주 어렵지는 않습니다. 관심있다면 한번 보시는걸 추천 드립니다. daniel..
-
Github Actions 소개DevOps/Github 2020. 11. 23. 11:10
github.com/features/actions Features • GitHub Actions Easily build, package, release, update, and deploy your project in any language—on GitHub or any external system—without having to run code yourself. github.com Github Actions 는 Github에서 제공하는 CI/CD 도구로 workflow 자동화를 지원해주는 기능입니다. github 저장소에 있는 프로젝트 내 .github/workflows 안에 작성된 yml 파일로 구동됩니다. 기본적으로 제공하는 가상머신의 하드웨어 사양은 아래와 같습니다. 2-core CPU 7 GB o..
-
AWS Game Day (with.Dealicious)Conference 2020. 11. 11. 00:15
현재 재직중인 Dealicious(딜리셔스) 에서 AWS Game Day 개최 하였습니다. 저는 참가하지 않았지만 관전자로 행사를 관람하였습니다. aws.amazon.com/ko/gameday/ AWS GameDay At AWS, security is job zero, and it should be for you too. An advantage of the AWS cloud is that you can scale and innovate, all the while maintaining a secure environment. In GameDay, paying attention to security can be the difference between winning and aws.amazon.com AWS G..
-
핸드셰이킹 (handshake)Domain knowledge 2020. 11. 10. 12:36
ko.wikipedia.org/wiki/%ED%95%B8%EB%93%9C%EC%85%B0%EC%9D%B4%ED%82%B9 핸드셰이킹 - 위키백과, 우리 모두의 백과사전 위키백과, 우리 모두의 백과사전. 핸드셰이크는 본래 악수를 뜻합니다. 핸드셰이킹(handshaking), 주고받기[1]는 정보기술과 전기통신 및 관련 분야에서 채널에 대한 정상적인 통신이 시작되기 전에 ko.wikipedia.org en.wikipedia.org/wiki/Handshaking\
-
ADB Idea(with Android studio plugin)Tools/plugin 2020. 10. 16. 10:22
plugins.jetbrains.com/plugin/7380-adb-idea ADB Idea - Plugins | JetBrains Adds the following ADB commands to Android Studio and Intellij:. plugins.jetbrains.com 안드로이드 스튜디오에서 adb 명령을 바로 내릴수 있게하는 플러그 인 입니다. 지원하는 기능은 아래와 같습니다. ADB Uninstall App ADB Kill App ADB Start App ADB Restart App ADB Clear App Data ADB Clear App Data and Restart ADB Start App With Debugger ADB Restart App With Debugger ADB G..
-
[Android Studio] Design editor is unavailable until next project sync 해결Android/Error 2020. 10. 12. 10:48
안드로이드 스튜디오에서 xml 파일로 화면 디자인 확인시 Design editor is unavailable until next project sync 가 출력 되는 문제가 발생합니다. 이럴경우 File -> Invalidate Cashes / Restart 를 선택합니다. 선택창에서 Invalidate and restart 를 선택합니다. 다시 정상적으로 디자인이 ㅍ시되는것을 확인 할 수 있습니다.
-
FLOPS (Floating point operations per second)Domain knowledge 2020. 10. 5. 11:21
en.wikipedia.org/wiki/FLOPS FLOPS - Wikipedia From Wikipedia, the free encyclopedia Jump to navigation Jump to search For other uses, see Flop. Measure of computer performance Computer performance Name Unit Value kiloFLOPS kFLOPS 103 megaFLOPS MFLOPS 106 gigaFLOPS GFLOPS 109 teraFLOPS TFLOPS 1012 peta en.wikipedia.org 플롭스는 컴퓨터의 성능을 수치로 나타낼 때 주로 사용되는 단위이다. 초당 부동소수점 연산이라는 의미로 컴퓨터가 1초동안 수행할 수 있는 부동..
-
Fork 에서 Jira issue 링크 걸기DevOps/Git 2020. 9. 28. 15:54
Fork 에서 Jira issue 번호로 하이퍼링크 거는 방법입니다. 1. 상단 Repository > Settings for this Repository... 클릭 2. 표시된 창에서 Issue Tracker 탭 선택 3. Bug Tracker Rules 하단 + 버튼 클릭 하여 Add Sample Jira Rule 선택 4. Bug Tracker Rules 에 새로운 Rules 가 추가되며 Name 에 규칙 이름 Local 은 자신만 사용 / Shared 다른 사람과 공유 Parsing Regular Expression 에 Jira project key 의 생성 규칙을 입력 Result Url 에 링크하는 url 규칙을 입력 Test Message 에서 만들어진 규칙을 태스트 해볼 수 있습니다. 5...