일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 29 | 30 | 31 |
- dart
- HTML
- 쿠킹덤
- 홀리데이익스프레스
- JavaScript
- MySQL
- 노마드코더
- 이클립스
- 쿠키런킹덤
- 딥러닝
- 쿠키런킹덤공략
- 유니티
- 쿠키런킹덤크리스마스
- 크리스마스
- 자바스크립트
- 웹개발
- programmers
- SQL
- Unity
- 쿠킹덤공략
- edwith
- 프로그래머스
- Eclipse
- 오블완
- Spring
- oracle
- 티스토리챌린지
- 자바
- 개발자
- Java
- Today
- Total
목록StudyAndDev (159)
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..
[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 맥의 경우 인텔버전과 애플실리콘 버전이 있는데 다운로..
https://devlunch4.tistory.com/123 [VMware] VMware 설치 다운로드 가상머신 workstation 16 player 로컬 내에서 서버, 서비스 운영 또는 테스트 환경 구축을 위해서 가상환경이 필요한 경우가 있습니다. 이럴 때 가상 머신을 사용하게 됩니다. vmware. virtual machine, docker, kubernetes 등의 프로그램을 devlunch4.tistory.com 앞서 설치된 VMware를 실행해 보겠습니다. 바탕화면의 아이콘을 클릭하여 프로그램을 실행합니다. 첫 실행시 확인되는 창입니다. 무료 사용자 이므로 free 부분을 선택한뒤 Continue를 선택합니다. VMware 실행이 잘 되었습니다. CentOS 설치를 위해 CentOS를 다운로드..
로컬 내에서 서버, 서비스 운영 또는 테스트 환경 구축을 위해서 가상환경이 필요한 경우가 있습니다. 이럴 때 가상 머신을 사용하게 됩니다. vmware. virtual machine, docker, kubernetes 등의 프로그램을 사용하는하는데요 이번에 vmware를 사용하고자 설치 방법을 기록해 봅니다. 우선 아래 공식 사이트에 접속하여 설치파일을 받습니다(무료버전) https://www.vmware.com/kr/products/workstation-player.html 다운받은 설치파일 실행합니다. 설치파일이 실행 됩니다. 향상된 키보드 드라이버를 위해 위에 체크를 했습니다. Install을 클릭합니다. 설치 완료가 되었습니다. 재부팅을 시작합니다. 재부팅을 하고나면 바탕화면에 설치된 실행 아이콘..