일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- java#왕초보
- 왕초보
- FIle
- 버전일치
- 미니게임
- 안드로이드
- 스타일보험
- kotlin
- snowpack
- 게시판
- parcel
- 코틀린
- 답글
- 상속
- 오버라이드
- webpack
- java
- Android
- sub query
- SQL
- 숫자
- Spinner
- 스프링
- Spring
- 함수
- git
- 쿠키
- 시큐어코딩
- React
- degit
- Today
- Total
목록Coding (130)
YSHUSH
바벨 설치 npm i -D @babel/core @babel/preset-env @babel/plugin-transform-runtime .babelrc.js파일 생성 후 // 이렇게 하면 작성하는 모든 문법은 ES5문법으로 변경되어 적용된다. module.exports = { presets: ['@babel/preset-env'], plugins: [ ['@babel/plugin-transform-runtime'] ] } package.json 끝부분에 내용 추가 , "browserslist": [ "> 1%", "last 2 versions" ]
https://www.icoconverter.com/ ICO Converter Converts images to the ICO format for your websites or applications. www.icoconverter.com
1. 아무이름.http 파일을 생성 2. 중간 부분 주소 넣는 자리에 원하는 주소를 입력하면 (GET과 HTTP/1.1 사이) ### GET https://api.hnpwa.com/v0/news/1.json HTTP/1.1 ### GET https://api.hnpwa.com/v0/item/32593996.json HTTP/1.1 주소 윗부분에 Send Request 버튼이 생성되는데 클릭하면 객체로 반환된 json파일을 손쉽에 에디터에서 읽을 수 있다!
padding-top: 56.25%
1. google에 loadash cdn 검색 2. https://cdnjs.com/libraries/lodash.js lodash.js - Libraries - cdnjs - The #1 free and open source CDN built to make life easier for developers A utility library delivering consistency, customization, performance, & extras. - Simple. Fast. Reliable. Content delivery at its finest. cdnjs is a free and open-source CDN service trusted by over 12.5% of all websites, servi..

Scroll View or Nested Scroll View에 추가 android:fillViewport="true"

TextInputLayout 부분에 추가 app:boxBackgroundMode="filled" app:boxStrokeWidth="0dp"

Sample01Application @SpringBootApplication @MapperScan(basePackages = "mul.camp.a") public class Sample01Application { public static void main(String[] args) { SpringApplication.run(Sample01Application.class, args); } } WebConfig @Configuration public class WebConfig implements WebMvcConfigurer{ @Override public void addCorsMappings(CorsRegistry registry) { // WebMvcConfigurer.super.addCorsMappi..

메이븐 프로젝트로 진행했다. 1. Spring Starter Project로 프로젝트 생성 2. pom.xml 내에 dependencies내에 추가 org.springframework.boot spring-boot-starter-web org.springframework.boot spring-boot-starter-tomcat com.fasterxml.jackson.core jackson-core 2.10.1 com.fasterxml.jackson.core jackson-databind 2.10.1 org.springframework.boot spring-boot-starter-jdbc org.mybatis.spring.boot mybatis-spring-boot-starter 2.2.0 org.myba..