분류 전체보기
-
Wanted New Start Package 후기자유글 2020. 2. 16. 12:22
원티드에서 취업후 재직한지 3개월이 지나면 50만원의 채용보상금과 함께 원티드 스타트 페키지(Wanted New Start Package) 를 보내줍니다. 박스가 생각보다 큽니다. 축하의 말과 기타 등등이 적혀 있습니다. 원티드에서 신경쓴 점이 보입니다. 위의 종이를 치우면 아래 축하선물들 이 있습니다. 위의 선물을 치우고 나면 아래 이렇게 문구와 가방이 들어 있더군요. 상단에 선물로는 필통과 펜 공책 3개 파우치 1개 포스트 카드 (상태표시) 1세트 공책은 원티드 색상의 표지로 3권 그리고 검정색 볼펜과 필통입니다. 포스트 카드는 자신의 지금상태를 표시하도록 여러장이 있습니다. 가방은 맥북13인치정도는 가볍개 들어갈정도의 크기입니다. 다만 흰색이다 보니 때가 잘탈것 같습니다. p.s 저는 현재 딜리셔스..
-
Go2Shell (Finder 현재경로에서 바로 터미널 창 열기)Tools/Mac Tools 2020. 2. 11. 10:06
https://zipzapmac.com/Go2Shell Go2Shell - ZipZapMac Go2Shell Instant Terminal Window Opens a terminal window to the current directory in Finder. Over 100K Happy Users. Built for Power Terminal Users Go2Shell opens a terminal window to the current directory in Finder. First - Launch Go2Shell. Then - Select y zipzapmac.com Go2Shell 이라는 프로그램으로 Mac 의 Finder 에서 현재경로로 터미널을 열어 주는 기능을 제공합니다. 설치시 >_< 모양의..
-
Android APK 파일 서명 (with. Apk Sign)Android 2020. 2. 10. 14:34
https://github.com/appium/sign appium/sign Sign.jar automatically signs an apk with the Android test certificate. - appium/sign github.com 위의 apk Sign 을 사용하여 APK 서명을 할 수 있습니다. java -jar ex> java -jar signing/signapk.jar signing/testkey.x509.pem signing/testkey.pk8 no_sign.apk a_sign.apk https://developer.android.com/studio/publish/app-signing 앱 서명 | Android 개발자 | Android Developers 앱 서명 및 보안과 관련..
-
APKTOOL 설치 방법Android 2020. 2. 8. 00:10
https://ibotpeaches.github.io/Apktool/install/ Apktool - How to Install Install Instructions Quick Check Is at least Java 1.8 installed? Does executing java -version on command line / command prompt return 1.8 or greater? If not, please install Java 8+ and make it the default. (Java 7 will also work at this time) Windows: Down ibotpeaches.github.io Apktool의 설치방법은 위의 링크에도 나와 있지만 자세하게 내용을 남깁니다. Ja..
-
Android .gitignore 내용Android 2020. 1. 27. 16:21
안드로이드 프로젝트에서 git에 commit시 예외처리를 위해서 .gitignore 을 작성하게 되는데 기본적으로 작성시 아래와 같은 내용으로 작성됩니다. *.iml .gradle /local.properties /.idea/caches /.idea/libraries /.idea/modules.xml /.idea/workspace.xml /.idea/navEditor.xml /.idea/assetWizardSettings.xml .DS_Store /build /captures .externalNativeBuild .cxx 위와 같이 작성시 일부 불필요한 부분도 포함하게 되어서 내부 내용을 변경합니다. *.apk *.iml .gradle local.properties .idea .DS_Store build..
-
Android KeyStore 정보를 환경 변수로 저장/사용 (for.Mac)Android 2020. 1. 23. 23:43
Android KeyStore의 Password 나 Alias 정보를 git에 그대로 올려버릴경우 보안상 문제가 발생할수도 있읍니다. 이럴경우 환경변수에 정보를 저장하여 소스상에서 노출하지 않고 필요한 정보를 입력 할 수 있습니다. 1. mac 터미널을 열어서 아래의 명령어를 입력 (파일이 없다면 생성하시면 됩니다.) vim .bash_profile 2. vi 에서 아래의 내용을 작성하시고 :wq 입력하여 저장 PATH=$PATH:/Users/(자신의 맥이름)/Library/Android/sdk/platform-tools/ export KEYSTORE_PASSWORD=xxxxx export KEY_ALIAS=xxxxx export KEY_PASSWORD=xxxxx 3. 아래 명령어를 입력하여 적용 sou..
-
클린 아키텍처(Clean Architecture)Domain knowledge 2020. 1. 18. 01:25
현재 클린 아키텍처에 대해서 공부중... 로버트.C.마틴이 쓴 "클린 아키텍처"라는 책을 추천 드립니다. 원서명은 아래와 같습니다. Clean Architecture: A Craftsman’s Guide to Software Structure and Design https://fernandocejas.com/2014/09/03/architecting-android-the-clean-way/ Architecting Android...The clean way? | Fernando Cejas Fernando Cejas Welcome! I'm Fernando Cejas, @SoundCloud Alumni, former @IBM Developer Advocate @IBM and @Tuenti Alumni. I'm..
-
Vanilla - Hide menu bar icons on your Mac.Tools/Mac Tools 2020. 1. 10. 10:26
https://matthewpalmer.net/vanilla/ Vanilla - hide Mac menu bar icons for free Vanilla Pro Vanilla will never nag you to upgrade, but if you’d like, you can unlock the Pro version to reach peak Mac minimalism. Perfect your menu bar by completely hiding icons Hide any app icon from your Mac’s menu bar Compatible with light and dark me matthewpalmer.net 바닐라(Vanilla)라는 mac 의 상태표시줄의 아이콘을 숨겨주는 기능을 추가해..
-
Cannot inline bytecode built with JVM target 1.8 into bytecode that is being built with JVM target 1.6Android/Error 2020. 1. 9. 00:05
Cannot inline bytecode built with JVM target 1.8 into bytecode that is being built with JVM target 1.6 위와 같은 에러가 발생시 App build.gradle 에 아래의 부분을 추가합니다. android { ... compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8 } kotlinOptions { jvmTarget = JavaVersion.VERSION_1_8.toString() } } 또는 preferences... -> kotlin Compier -> Kotlin to JVM -> Tar..