🔻Download, Tool

https://sourceforge.net/projects/orwelldevcpp/ Dev-C++ Download Dev-C++ for free. A free, portable, fast and simple C/C++ IDE. A new and improved fork of Bloodshed Dev-C++ sourceforge.net
기존에 사용하던 DB를 없애고 새로운 DB로 현재 테이블과 데이터 전부를 수작업으로 옮기는 것은 힘들다. 그래서 DataGrip에서 제공하는 DDL과 DML 자동 생성 기능을 이용해 보고자 한다! ❗DDL 생성하기 원하는 스키마에서 SQL Script를 누른 후 Generator를 누르면 하단에 이 스키마에 있는 테이블의 create문이 자동으로 생성된다. 오른쪽 아래쪽에 저장 버튼을 누르게 되면 해당 프로젝트 하위에 DDL을 sql 파일로 저장도 가능하다! ❗DML 자동 생성 추출하고 싶은 테이블에서 오른쪽 위를 보면 Export 버튼을 누른다 데이터 추출 창에서 추출한 sql 파일을 어디에 저장할지 선택하고 추출 버튼을 누른다! 저장된 추출 파일을 열어보면 제대로 데이터가 추출된 것을 볼 수 있다
솔루션 안에 여러 프로젝트를 만들었을 때 실행하는 방법을 적고자 한다 현재 DataStructure_Study라는 한 솔루션 안에 pointer, recursion, time_complexity 3개의 프로젝트가 정의되어 있다 하지만 재귀.c 파일을 빌드하려고 하면 이런 오류가 발생했다! 솔루션을 클릭 후 오른쪽 키를 눌러 시작 프로젝트 설정을 누른다 시작 프로젝트를 자신이 빌드하고 싶은 프로젝트로 선택하고 확인을 누른다! recursion프로젝트명에 볼드된 것을 체크할 수 있다 위의 상태에서 다시 ctrl+F5를 눌러주면 빌드된 것을 볼 수 있다
비주얼 스튜디오에서 한 솔루션에서 여러 프로젝트를 관리하기 위해 폴더(디렉토리) 형태로 만들고자 하는 방법이다!! 현재 DataStructure_Study 아래에 pointer라는 폴더가 생성되어 있다. 여기에 다른 새로운 폴더를 생성하고자 한다 ❗폴더 생성하기 DataStructure_Study 아래에 time_complexity라는 폴더가 생성되었다!! 위의 내용 그대로 커밋하면 똑같이 디렉토리 형태로 반영된다!
❗MinGW 설치 https://sourceforge.net/projects/mingw-w64/files/mingw-w64/ MinGW-w64 - for 32 and 64 bit Windows - Browse /mingw-w64 at SourceForge.net Trusted by thousands of teams, Jira offers access to a wide range of tools for planning, tracking, and releasing world-class software, capturing and organizing issues, assigning work, and following team activity. It also integrates with leading develo..
CLion은 JetBrain사에서 나온 C/C++ IDE다 https://www.jetbrains.com/clion/ CLion: A Cross-Platform IDE for C and C++ by JetBrains A powerful IDE from JetBrains helps you develop in C and C++ on Linux, macOS and Windows. www.jetbrains.com
인텔리제이를 갱신할 때가 되었다!(1년마다 갱신해야 한다) 갱신하기 위해서 갱신 안내 메일을 누른 후 그 안에 있는 링크를 눌러야 한다! 링크를 타고 들어가면 이미 기존에 입력했던 정보들이 있기 때문에 바로 신청 버튼을 누른다 학교 메일로 안내문에 발송되었다 학교 메일로 들어와 열고 해당 링크를 클릭한다 여기까지 한다면 학생 계정 갱신이 완료되었다!
MobaXterm은 FileZilla와 Putty를 합쳐둔 형태로 우리 눈에 익숙한 UI 환경으로 되어 있다! ❗MobaXterm 설치 https://mobaxterm.mobatek.net/ MobaXterm free Xserver and tabbed SSH client for Windows The ultimate toolbox for remote computing - includes X server, enhanced SSH client and much more! mobaxterm.mobatek.net ❗MobaXterm 설정 ✏️한국어 설정 ✏️세션 열기
❗build.gradle에 swagger 설정 추가 implementation "io.springfox:springfox-swagger2:3.0.0" implementation "io.springfox:springfox-swagger-ui:3.0.0" implementation "io.springfox:springfox-spring-web:3.0.0" implementation "io.springfox:springfox-oas:3.0.0" implementation "io.swagger:swagger-annotations:1.5.21" implementation "io.swagger:swagger-models:1.5.21" ❗SwaggerConfig 작성 ✏️SwaggerConfig 클래스를 만들고 아래..
❗build.gradle에 swagger 설정 추가 implementation 'io.springfox:springfox-swagger2:2.9.2' implementation 'io.springfox:springfox-swagger-ui:2.9.2' ❗SwaggerConfig 작성 SwaggerConfig라는 설정클래스를 만들고 아래처럼 적어주면 된다 @Configuration @EnableSwagger2 public class SwaggerConfig { @Bean public Docket apiV1() { return new Docket(DocumentationType.SWAGGER_2) .useDefaultResponseMessages(false) .groupName("[그룹이름]") .selec..
❗GET GET방식으로 선택하고 주소를 입력 후 SEND만 하면 결과물을 볼 수 있다 ❗POST POST 방식으로 선택 후 주소를 넣은 다음 @RequestBody가 있을 경우 Body>raw>JSON을 선택한 후에 아래에 백엔드로 보내고자하는 정보를 입력하고 SEND하면 결과를 볼 수 있다 ❗PATCH PATCH 방식으로 선택 후 주소를 넣은 다음 @RequestBody가 있을 경우 Body>raw>JSON을 선택한 후에 변경하고 싶은 정보를 JSON방식으로 입력 후 SEND하면 결과를 볼 수 있다
❗Postman 설치 https://www.postman.com/ Postman API Platform | Sign Up for Free Postman is an API platform for building and using APIs. Postman simplifies each step of the API lifecycle and streamlines collaboration so you can create better APIs—faster. www.postman.com 위의 링크에서 어플리케이션 다운로드 ❗Postman 사용법
따로 sql관련 프로그램 설치 없이 인터넷 상에서 바로 사용할 수 있는 SQL 사이트 http://sqlfiddle.com/ SQL Fiddle | A tool for easy online testing and sharing of database problems and their solutions. Query Panel Use this panel to try to solve the problem with other SQL statements (SELECTs, etc...). Results will be displayed below. Share your queries by copying and pasting the URL that is generated after each run. sqlfiddle.com..
❗ERDCloud 프로젝트 생성 https://www.erdcloud.com/ ERDCloud Draw ERD with your team members. All states are shared in real time. And it's FREE. Database modeling tool. www.erdcloud.com https://inpa.tistory.com/entry/ERD-CLOUD-%E2%98%81%EF%B8%8F-ERD-%EB%8B%A4%EC%9D%B4%EC%96%B4%EA%B7%B8%EB%9E%A8%EC%9D%84-%EC%98%A8%EB%9D%BC%EC%9D%B8%EC%97%90%EC%84%9C-%EA%B7%B8%EB%A0%A4%EB%B3%B4%EC%9E%90 [ERD CLOUD] ☁️ ERD..
https://www.oracle.com/java/technologies/downloads/ Download the Latest Java LTS Free Subscribe to Java SE and get the most comprehensive Java support available, with 24/7 global access to the experts. www.oracle.com javac -version / java -> 명령어 실행된다면 제대로 셋팅 완료! 만약 명령어가 없다고 뜬다면 환경변수 설정이 제대로 되지 않은 것이나 명령창을 다시 껐다가 켜보면 된다!
https://www.eclipse.org/ The Community for Open Innovation and Collaboration | The Eclipse Foundation The Eclipse Foundation provides our global community of individuals and organizations with a mature, scalable, and business-friendly environment for open source … www.eclipse.org
https://www.jetbrains.com/datagrip/download/#section=windows Download DataGrip: Cross-Platform IDE for Databases & SQL Download the latest version of DataGrip for Windows, macOS or Linux. www.jetbrains.com
https://www.chiark.greenend.org.uk/~sgtatham/putty/ PuTTY: a free SSH and Telnet client PuTTY: a free SSH and Telnet client Home | FAQ | Feedback | Licence | Updates | Mirrors | Keys | Links | Team Download: Stable · Pre-release · Snapshot | Docs | Changes | Wishlist PuTTY is a free implementation of SSH and Telnet for Windows and Unix plat www.chiark.greenend.org.uk
https://winscp.net/eng/download.php WinSCP :: Official Site :: Download WinSCP 5.21 Download WinSCP 5.21 is a major application update. New features and enhancements include: SSH core upgraded to PuTTY 0.77. That includes support for rsa-sha2-256 and rsa-sha2-512 SSH public key algorithms and improved support for HTTP proxies winscp.net
_니지
'🔻Download, Tool' 카테고리의 글 목록