분류 전체보기
-
협업툴 - notion / slack / Jandi / FlowMac 2021. 2. 5. 22:11
팀으로 작업을 할 때 사용하는 협업툴들이 있습니다. notion - 팀 멤버 1인달 $8/월 www.notion.so/pricing Notion – The all-in-one workspace for your notes, tasks, wikis, and databases. A new tool that blends your everyday work apps into one. It's the all-in-one workspace for you and your team www.notion.so slack - 무료 플랜으로 사용이 가능하고, 월 $6.67로 중소 규모 회사들의 사용도 가능 slack.com/intl/ko-kr/pricing 요금 귀사에 가장 잘 맞는 Slack 플랜을 찾아보세요. 플랜에는 메시징..
-
mail server - smtpLaravel 2021. 2. 2. 23:53
서비스를 위해서 필요한 메일서버를 자체 구축하는 것은 쉽지 않기에 외부의 mail server를 쓰는 것이 좋으며 라라벨은 mailgun 등을 위해서 기능을 제공 하고 있습니다. laravel.com/docs/8.x/mail Mail - Laravel - The PHP Framework For Web Artisans Mail Introduction Sending email doesn't have to be complicated. Laravel provides a clean, simple email API powered by the popular SwiftMailer library. Laravel and SwiftMailer provide drivers for sending email via SMTP, M..
-
mac에서 프로그램을 강제로 종료하기Mac 2021. 2. 1. 20:17
mac을 reboot 하기 위해서, 사과 메뉴의 재기동...을 눌렀더니 android studio가 종료 되지 않아서 reboot을 할 수 없다고 합니다. android studio를 더블 클릭해도 화면이 안나오고 메뉴에서 Quit를 시켜도 Quit도 안되는. 그래서 mac을 reboot 할 수 없는 황당한 상황이...ㅠㅠ 그래서 검색을 했더니 윈도의 ctrl + alt + del에 해당하는 키가 option + command + esc support.apple.com/ko-kr/HT201276 Mac에서 앱을 강제로 종료하는 방법 Mac에서 반응하지 않는 앱을 정상적으로 종료할 수 없는 경우 강제 종료를 사용하여 앱을 닫습니다. support.apple.com mac에서도 이런 일이 생기네요. 강제 p..
-
mac + vs code로 flutter 개발하기flutter 2021. 1. 31. 23:14
flutter 개발을 android studio가 아닌 vs code에서도 가능하게 하려면 flutter extension을 설치해야 하며 vs code의 flutter sdk path는 $PWD/flutter 입니다. stackoverflow.com/questions/50236128/how-to-find-the-path-of-flutter-sdk How to find the path of Flutter SDK How to configure Flutter SDK? How to locate the Flutter SDK? I don't know the location of the SDK file. stackoverflow.com CDM + Shift + P를 눌러서, flutte: New Applicatio..
-
flutter 개발 도구 설치flutter 2021. 1. 31. 20:28
flutter 설치법은 공식 방법과 비공식 방법을 섞어서 아래처럼 하는데 xcode는 이미 설치 되어 있어서 생략 합니다. oneboard@oneboarcBookPro ~ % git clone -b beta https://github.com/flutter/flutter.git 'flutter'에 복제합니다... remote: Enumerating objects: 289848, done. remote: Total 289848 (delta 0), reused 0 (delta 0), pack-reused 289848 오브젝트를 받는 중: 100% (289848/289848), 128.27 MiB | 14.19 MiB/s, 완료. 델타를 알아내는 중: 100% (224295/224295), 완료. Updatin..
-
mac에서 brew를 자동으로 업데이트 하기Mac 2021. 1. 29. 23:52
brew를 통해서 설치한 프로그램들이나 brew repo를 업데이트 하는 것을 매번 터미널을 열어서 하기는 귀챦다고 느낌다면 automatic update를 하면 됩니다. brew update brew upgrade brew install terminal-notifier brew tap domt4/autoupdate brew autoupdate –start –upgrade –enable-notification 이렇게 하면, update the brew repository, upgrade all the existing apps, install the terminal notifier incase you don’t have it yet install the autoupdate script start the a..