목록분류 전체보기 (245)
일상 코딩
https://wooiljeong.github.io/server/gce-vscode/ VS Code로 GCP Compute Engine 원격 접속하기 VS Code로 GCE 원격 접속하기 wooiljeong.github.io
https://gre-eny.tistory.com/344 [AWS] VSCode에서 AWS EC2 instance 원격 접속하기(Remote) Windows 환경의 VSCode에서 AWS EC2에 원격접속을 해보자. 이 포스팅은 EC2 와 접속에 필요한 .pem 키는 이미 있다고 가정하고 진행한다. vscode extension: Remote Development 설치하기 ctrl + shift + X 단축키.. gre-eny.tistory.com
https://kamang-it.tistory.com/entry/VisualStudioCode%EC%BB%A4%EC%8A%A4%ED%85%80-%EC%9E%90%EB%8F%99%EC%99%84%EC%84%B1-%EB%A7%8C%EB%93%A4%EA%B8%B0Snippet-ex-LiveTemplate [VisualStudioCode]커스텀 자동완성 만들기,Snippet (ex: LiveTemplate) 코딩을 하다보면 자기만의 자동완성을 만들고 싶을 때가 있다. 필자의 예시를 들자면 필자는 $을 dd로 매핑해 놓는다. shift를 누르는 작업이 귀찮아서 그렇다. 그리고 console.log는 cl로 매핑을 해놓 kamang-it.tistory.com VSCODE 사이트 https://code.visuals..
https://dev.to/this-is-learning/file-nesting-in-vs-code-46l5 File nesting in VS Code VS Code v1.64 was released a few days ago and it’s once again packaged with nice new features and... dev.to
https://stephencharlesweiss.com/vscode-explorer-tree-resize VS Code: Making The Explorer Tree More Readable notes on life and software. stephencharlesweiss.com
https://changjoopark.medium.com/vscode%EC%97%90%EC%84%9C-flutter-%EC%9C%84%EC%A0%AF-ui-%EA%B0%80%EC%9D%B4%EB%93%9C-%EC%84%A4%EC%A0%95%ED%95%98%EB%8A%94%EB%B0%A9%EB%B2%95-6e41bf6fe86 vscode에서 Flutter 위젯 UI 가이드 설정하는방법 Visual Studio Code에서 Flutter를 개발하면 Flutter 확장프로그램을 필수적으로 설치해야합니다. 위젯이 어떻게 구성되어있는지 더 확실하게 보여줄 수 있는 기능을 활성화하는 방법을 알아봅니다. changjoopark.medium.com
https://stackoverflow.com/questions/56222962/how-to-change-from-stateless-widget-to-stateful-widget How to change from Stateless Widget to Stateful Widget? I have an app screen that uses Checkboxes and a Drop down Menu. However, I have realised I'd coded it inside a StatelessWidget so I am unable to change the state when an option is selected. How do ... stackoverflow.com
C++ 온라인 컴파일러 사이트 https://replit.com/~ https://www.onlinegdb.com/online_c++_compiler https://cpp.sh/ https://www.tutorialspoint.com/compile_cpp_online.php #include #include #include #include #include #include #include using namespace std; bool prime(int num) { bool bprime = true; for (int i = 2; i < num ; i++) { if (num % i == 0) { bprime = false; break; } } return bprime; } int main() { ios_base..
C++ 온라인 컴파일러 사이트 https://replit.com/~ https://www.onlinegdb.com/online_c++_compiler https://cpp.sh/ https://www.tutorialspoint.com/compile_cpp_online.php 25. 석차 구하기 N명의 학생의 수학점수가 입력되면 각 학생의 석차를 입려된 순서대로 출력하는 프로그램을 작성하세요. 입력설명 첫 줄에 N(1 > rank; // 등수 리스트 cin >> N; for (int i = 0; i > a; score.push_back(make_pair(i+1, a)); } auto desc = [](pair a, pair b) { return a.second > b.seco..
https://blogshine.tistory.com/101 코딩테스트 효과적인 C++ 코드 작성 팁 해당 본문의 원문의 출처는 Geeks for Geeks 입니다. 이과생이 공부겸 번역한 딱딱한 어투의 글 입니다. 문제가 될시 삭제하겠습니다. Writing C/C++ code efficiently in Competitive programming - GeeksforGee.. blogshine.tistory.com