일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- flutter button
- Listview filtering
- flutter
- debugShowCheckedModeBanner
- flutter tcpip server
- debug banner
- array
- dart:io
- c
- Server
- showDialog
- AlertDialog
- peaks
- flutter tcpip client
- ListView.build
- TCPIP
- ubuntu 19 한글 입력
- Properties.Settings.Default
- Today
- Total
목록Utils (34)
Louie De Janeiru
VS code 에서 user snippet 추가하기 1. File -> Preference -> User Snippet 2. 저장하고자 하는 이름.json 을 입력 후 엔터 3. json file 에서 아래처럼 필요한 snippet 을 설정하여 입력 4, 저장 후 사용하면 추가된 snippet 이 동작한다. { // Place your global snippets here. Each snippet is defined under a snippet name and has a scope, prefix, body and // description. Add comma separated ids of the languages where the snippet is applicable in the scope field...
write code, test.py git init git config --global user.email "louiey@naver.com" git config --global user.name "louiey" git commit -m 'python dojang' git log git remote add origin https://github.com/louiey/python_dojang.git git remote -v git push --set-upstream origin master
louiey@LOUIEY-LT:$ git init Initialized empty Git repository in /mnt/d/GIT/GIT_HUB/git_test/.git/ louiey@LOUIEY-LT:$ git config user.name 'louiey' louiey@LOUIEY-LT:$ git config user.email 'louiey@naver.com' louiey@LOUIEY-LT:$ git status On branch master No commits yet nothing to commit (create/copy files and use "git add" to track) louiey@LOUIEY-LT:$ ls louiey@LOUIEY-LT:$ ls -al total 0 drwxrwxr..
환경변수 -> 시스템 변수 -> 새로만들기 -> 변수이름 : JAVA_HOME, 변수값 : C:\Program Files\Java\jdk-14.0.1 -> 확인 환경변수 -> 시스템 변수 -> Path -> 편집 -> 새로만들기 -> %JAVA_HOME%\bin 추가 -> 확인 cmd -> javac 확인
#include int getPeaksFromArray(int* nums, int len, int *peaks) { int pi = 0; for (int i = 0; i nums[i - 1] && nums[i] > nums[i + 1])/* elements in the middle */ ) { peaks[pi++] = nums[i]; } } return pi; } int main() { int arr[] = { 1, 3, 20, 4, 9, 10, 16, ..