일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 자바스크립트
- 유니티
- Unity
- SQL
- 쿠키런킹덤크리스마스
- Java
- 쿠킹덤공략
- MySQL
- 쿠킹덤
- 개발자
- 자바
- 홀리데이익스프레스
- 티스토리챌린지
- 노마드코더
- 프로그래머스
- edwith
- 쿠키런킹덤공략
- 딥러닝
- 이클립스
- Spring
- programmers
- JavaScript
- dart
- 오블완
- 웹개발
- 쿠키런킹덤
- Eclipse
- 크리스마스
- HTML
- oracle
- Today
- Total
목록분류 전체보기 (254)
Dev study and notes
void main() { late final String name; // print(name); // Error Alert // Do something, Go to API name = 'lunch'; // name = 123; // Error print(name); // Good }
void main() { final String name = 'lunch'; name = 'lunch'; // Error }
void main() { String? lunch = 'lunch'; print(lunch?.isNotEmpty); lunch = null; print(lunch?.isNotEmpty); }
void main() { String? lunch = 'lunch'; lunch = null; if (lunch != null) { lunch.isNotEmpty; print('not null'); } else{ print('null'); } }
void main() { var name = 'devlunch4'; print(name); String name = 'devlunch4'; print(name); dynamic name; name = 123; if (name is String) { print(name.trim()); } if (name is int) { print('name:'); print(name); print('name.bitLength:'); print(name.bitLength); } }
void main() { for (int i = 0; i < 5; i++) { print('hello ${i + 1}'); } print('Hello World'); }
I wrote dart code and ran from this link. (https://dartpad.dev) 아래 링크에서 dart 코드 작성 및 실행 했습니다. DartPad dartpad.dev Logined and Created GIthub repository. 로그인 그리고 깃헙 레포지토리를 만들었습니다. a Class end -> updated gist and commited/pushed github(Code copy) -> next Class study 클래스가 끝나면 -> gist를 갱신하였고, github(코드복사) 커밋/푸시 하였습니다. -> 다음 클래스 공부 I followed the lecture web link (https://nomadcoders.co/dart-for-beg..
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/tj178/btrXwjAVqiy/gPmAMm0RQQnZHPkTBBNcEK/img.png)
macOS 업데이트후 오랜만에 pyCharm을 실행해 보았다. 프로젝트내 프로그램을 실행하였으나 실행 오류, 에러가 발생하였다. 에러 문구는 아래와 같다; xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools), missing xcrun at: /Library/Developer/CommandLineTools/usr/bin/xcrun Apple 2022 맥북 에어 COUPANG www.coupang.com 해당 문구를 확인하였으니 해결방법을 찾아보았다. **************** 해결방법: 터미널 실행 2. xcode-select --instal **************** 해결방법대로 터미널 ..
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/cQDxZC/btrQ9arWqWI/8QILUubj0MMd9sB5GxsxWK/img.png)
[pycharm] [mac] 맥북 파이참 설치 install PyCharm for MacOs 맥북에 파이참 설치 기록을 남겨둔다. 바쁘다보니.. 이제서야 맥북에 파이참 설치 기록을 적는다. 1. 파이참 공식 사이트에 접속하여 본인 PC, OS에 따른 설치 파일을 다운로드 받는다. https://www.jetbrains.com/pycharm/download/#section=mac Download PyCharm: Python IDE for Professional Developers by JetBrains Download the latest version of PyCharm for Windows, macOS or Linux. www.jetbrains.com 맥의 경우 인텔버전과 애플실리콘 버전이 있는데 다운로..
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/dLOuoS/btrFImhDDy4/LlMy7SX3nkFCRTQhmIy3m1/img.png)
사용하는 IDE로는 eclipse, vscode, intellij, pycharm을 사용하고 있습니다. 이클립스의 경우 일부 프로젝트와의 안정성 때문에 각 프로젝트에 맞추어 이클립스를 설치하여 사용하고 있습니다. vscode의 경우 항상 최신 업데이트 버전을 사용하고 있습니다. intellij의 경우 최신 업데이트 버전을 사용하고 있습니다. 가끔 알려주는 업데이트 갱신, 버전 알림을 확인하여 업데이트를 하고 있습니다. pycharm 의 경우도 최신 버전을 사용하고 있습니다. 1.3 버전 업데이트시 새로운 인스톨파일을 받아서 업데이트를 진행해야했습니다. 따라서 기존 이전버전의 파이참을 삭제한후 설치를 진행하였습니다. 이어서 따로 사용하던 ANACONDA 도 업데이트를..