일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 러닝스칼라
- c
- hackerschool
- 백엔드
- c++
- hacking
- 경제
- backend
- Scala
- BOF 원정대
- php
- 챗GPT
- 딥러닝
- 파이썬
- Linux
- Shellcode
- 리눅스
- 인공지능
- Web
- 웹해킹
- webhacking
- Javascript
- flask
- Python
- hackthissite
- deep learning
- mysql
- BOF
- ChatGPT
- 러닝 스칼라
- Today
- Total
목록개발 및 관련 자료/HTML&CSS&Javascript (14)
jam 블로그
If your mp4 video file upload in amazon s3, that file's Content-type is "application/octet-stream".So, you have to change from "application/octet-stream" to "video/mp4". (There is option in meta data category.) If there are a few video file in amazon s3, you just delete and add content-type, but if there are too many video file, this site link of under can be help for you. https://foliovision.co..
form data를 json으로 변경해주는 소스 예제파일입니다. /* form data to json */ $.fn.serializeObject = function() { var o = {}; var a = this.serializeArray(); $.each(a, function() { if (o[this.name] !== undefined) { if (!o[this.name].push) { o[this.name] = [o[this.name]]; } o[this.name].push(this.value || ''); } else { o[this.name] = this.value || ''; } }); return o; }; var json_val = JSON.stringify($("Formdata").s..
안드로이드 앱을 개발 중에 업데이트 되면 자동으로 팝업을 띄워줘야 하는데 서버쪽에서 항상 바꿔주기 그래서 앱에서 특정 주소를 부르면 서버에서 마켓에 등록된 앱의 버전을 들고오는 소스입니다. url에 앱 마켓 주소를 넣으면 그 앱의 버전이 나옵니다. 출력 결과는 1.1.0 이런식으로 나옵니다.
ie에서는 한글을 줄바꿈할 때 css에서 word-wrap:keep-all이 가능하나, 다른 브라우저에서는 동작하지 않습니다. 따라서 다음과 같이 하시면 됩니다. 예제 나는 자랑스런 태극기 앞에 조국과 민족의 이런식으로 있을 시에 나는 자랑스런 태극기 앞에 조국과 민족의 위와같이 바꾸어 주시고 title 클래스에 width를 지정해주시면 됩니다.