'Programming > web 관련' 카테고리의 다른 글
웹페이지 탭메뉴 만들기 (0) | 2018.08.22 |
---|---|
시맨틱 코드 (2) | 2018.08.21 |
jquey dom (0) | 2018.08.10 |
eclipse php sftp (0) | 2017.10.03 |
aptana studio 설치 (0) | 2017.10.03 |
웹페이지 탭메뉴 만들기 (0) | 2018.08.22 |
---|---|
시맨틱 코드 (2) | 2018.08.21 |
jquey dom (0) | 2018.08.10 |
eclipse php sftp (0) | 2017.10.03 |
aptana studio 설치 (0) | 2017.10.03 |
document.getElementById(id).onclick = function(){code}
[링크 : https://www.w3schools.com/js/js_htmldom_document.asp]
$(document).ready(function(){
$("p").dblclick(function(){
$(this).hide();
});
});
시맨틱 코드 (2) | 2018.08.21 |
---|---|
sketch 플러그인 (0) | 2018.08.13 |
eclipse php sftp (0) | 2017.10.03 |
aptana studio 설치 (0) | 2017.10.03 |
HTML fieldset / legend (0) | 2017.05.26 |
Remote System Explorer
[링크 : http://mine7.tistory.com/139]
[링크 : http://arisu1000.tistory.com/27705]
[링크 : http://jos39.tistory.com/56]
[링크 : https://blog.naver.com/hnb0102/30182584695]
[링크 : http://bedbugs.tistory.com/50]
[링크 : http://www.jcraft.com/eclipse-sftp/]
sketch 플러그인 (0) | 2018.08.13 |
---|---|
jquey dom (0) | 2018.08.10 |
aptana studio 설치 (0) | 2017.10.03 |
HTML fieldset / legend (0) | 2017.05.26 |
웹 페이지용 이미지 DB에 저장하기 (0) | 2017.04.21 |
JRE를 인스톨러에서 받아서 설치하고
내부적으로 nodejs 와 git를 받는데
nodejs는 링크가 깨졌는지 구버전을 설치해야 넘어간다.
nodejs 사이트에서 받아도 x86버전을 해줘도 안되는 이머병 스러운 사태가.. -_-
node-v0.10.13-x86.msi 는 아래의 티스토리에서 받으면 된다.
[링크 : http://www.aptana.com/index.html]
[링크 : http://taejusoul.tistory.com/627]
[링크 : https://github.com/aptana/studio3/issues/402]
일단.. sftp나 연결해서 해보려고 했으나..
안되네?! 검색해보니 구버전의 SFTP 프로토콜만 지원하고
요즘 sftp는 보안상의 문제로 그걸 막아놔서 못쓴다는데
[링크 : https://nikinuryadin.wordpress.com/2015/05/19/aptana-studio-3-sftp-key-exchange/]
[링크 : https://github.com/aptana/studio3/issues/367]
앱타나 자체도 2015년 이후로 업데이트 없는것 같고
다른 방법이나 eclipse 자체에서 사용할 수 있는법을 찾는게 나을 듯 하다
jquey dom (0) | 2018.08.10 |
---|---|
eclipse php sftp (0) | 2017.10.03 |
HTML fieldset / legend (0) | 2017.05.26 |
웹 페이지용 이미지 DB에 저장하기 (0) | 2017.04.21 |
http digest (0) | 2017.03.03 |
html에서 form을 쓰려니 table이 기본인데 너무 귀찮아서 찾다 보니 이런게 있네?!
대충이라도 이제 만들어 봐야지 ㅠㅠ
그런데.. IE9에서 IE5로 해도 뜨는거 보니.. 원래 있던 기능인듯?
HTML5에서 추가된게 아닌가 보네..(하위 속성만 추가된 듯?)
fieldset은 박스를 쳐주고
legend 는 박스의 제목
<!DOCTYPE html> <html> <body> <form> <fieldset> <legend>Personalia:</legend> Name: <input type="text"><br> Email: <input type="text"><br> Date of birth: <input type="text"> </fieldset> </form> </body> </html> |
eclipse php sftp (0) | 2017.10.03 |
---|---|
aptana studio 설치 (0) | 2017.10.03 |
웹 페이지용 이미지 DB에 저장하기 (0) | 2017.04.21 |
http digest (0) | 2017.03.03 |
http header (0) | 2017.03.02 |
db에 blob으로 저장하고
echo나 print로 (php) 출력하고
html header에서 content 타입을 image/jpeg 식으로 지정해주면
받는 쪽에서 이미지로 해석을 해서 뿌려준다... 라는 개념
[링크 : http://blog.naver.com/oralol/220389355544] PHP
[링크 : http://xx707xx.tistory.com/47] JSP
multi-part html
어디서 본건가 했더니 smtp 관련해서 메일 보낼때 헤더 멀티파트 헤더 붙여서
인코딩 바꾸거나 이미지 삽입하는거 였네..
물론 HTML을 보여주는 웹 브라우저에서는 지원이 많지 않고
메일 클라이언트쪽에서는 지원 하는 듯?
[링크 : http://stackoverflow.com/...multiple-php-header-content-types-on-the-same-page-is-this-possib]
예전에 구글에서 검색을 POST가 아닌 GET으로 받는 이유가
캐시에 유리하기 때문이라고 했는데.. 이 방식이 얼마나 유용한진 모르겠다.(cpu 성능이 낮을때)
그리고 저사양일때 이런 방식을 사용하면 오히려 더 cpu에 부하가 걸릴려나?
DB에서 받아오는 대용량 데이터는 포인터나 직접 접근이 아니니
일일이 cpu가 메모리에서 메모리로 복사해서 넘겨줘야 할테니?
aptana studio 설치 (0) | 2017.10.03 |
---|---|
HTML fieldset / legend (0) | 2017.05.26 |
http digest (0) | 2017.03.03 |
http header (0) | 2017.03.02 |
HTTP GET / POST 차이 (telnet) (0) | 2017.02.06 |
회사에서 쓸일이 있어서 정리했었는데
어라.. 블로그에는 안써놨었나 -ㅁ-?
[링크 : https://en.wikipedia.org/wiki/Digest_access_authentication]
[링크 : https://support.microsoft.com/ko-kr/help/195650/how-to-handle-proxy-authorization-with-wininet]
[링크 : http://blog.naver.com/bcknightt/220006031922]
[링크 : http://x68000.q-e-d.net/~68user/net/http-auth-2.html]
[링크 : http://blog.csdn.net/menglongbor/article/details/43713215]
HTML fieldset / legend (0) | 2017.05.26 |
---|---|
웹 페이지용 이미지 DB에 저장하기 (0) | 2017.04.21 |
http header (0) | 2017.03.02 |
HTTP GET / POST 차이 (telnet) (0) | 2017.02.06 |
해싱 salt (0) | 2017.01.27 |
http/1.0은 get만 보내도 됨
http/1.1은 host 필요
[링크 : http://serverfault.com/.../what-is-the-mandatory-information-a-http-request-header-must-contain]
[링크 : http://stackoverflow.com/questions/4726515/what-http-response-headers-are-required]
[링크 : http://stackoverflow.com/questions/6686261/what-at-the-bare-minimum-is-required-for-an-http-request]
웹 페이지용 이미지 DB에 저장하기 (0) | 2017.04.21 |
---|---|
http digest (0) | 2017.03.03 |
HTTP GET / POST 차이 (telnet) (0) | 2017.02.06 |
해싱 salt (0) | 2017.01.27 |
NPAPI / PPAPI - VLC ... (0) | 2016.01.14 |
서버 마다 다른건가... lighttpd에서는 GET만 하면 400 에러가 발생하고
GET 다음 Host까지 해주어야 응답을 해준다.
+
GET /bin/login?User=Peter+Lee&pw=123456&action=login HTTP/1.1 Host: 127.0.0.1:8000 |
POST /bin/login HTTP/1.1 Host: 127.0.0.1:8000 Accept: image/gif, image/jpeg, */* Referer: http://127.0.0.1:8000/login.html Accept-Language: en-us Content-Type: application/x-www-form-urlencoded Accept-Encoding: gzip, deflate User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1) Content-Length: 37 Connection: Keep-Alive Cache-Control: no-cache
User=Peter+Lee&pw=123456&action=login |
[링크 : https://www.ntu.edu.sg/home/ehchua/programming/webprogramming/HTTP_Basics.html]
GET
/test/demo_form.asp?name1=value1&name2=value2 |
POST
POST /test/demo_form.asp HTTP/1.1 Host: w3schools.com name1=value1&name2=value2 |
[링크 : http://www.w3schools.com/Tags/ref_httpmethods.asp]
[링크 : https://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html]
S.N. | Method and Description |
---|---|
1 | GET The GET method is used to retrieve information from the given server using a given URI. Requests using GET should only retrieve data and should have no other effect on the data. |
2 | HEAD Same as GET, but transfers the status line and header section only. |
3 | POST A POST request is used to send data to the server, for example, customer information, file upload, etc. using HTML forms. |
4 | PUT Replaces all current representations of the target resource with the uploaded content. |
5 | DELETE Removes all current representations of the target resource given by a URI. |
6 | CONNECT Establishes a tunnel to the server identified by a given URI. |
7 | OPTIONS Describes the communication options for the target resource. |
8 | TRACE Performs a message loop-back test along the path to the target resource. |
[링크 : https://www.tutorialspoint.com/http/http_methods.htm]
[링크 : https://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods]
http digest (0) | 2017.03.03 |
---|---|
http header (0) | 2017.03.02 |
해싱 salt (0) | 2017.01.27 |
NPAPI / PPAPI - VLC ... (0) | 2016.01.14 |
HTML5 video player 720p/1080p 재생여부 (0) | 2016.01.13 |
salt도 대충 치면 안되는구나..
적당한 길이와 적당한 순서?
[링크 : http://starplatina.tistory.com/entry/비밀번호-해시에-소금치기-바르게-쓰기]
[링크 : http://www.mimul.com/pebble/default/2013/02/18/1361189648941.html]
http header (0) | 2017.03.02 |
---|---|
HTTP GET / POST 차이 (telnet) (0) | 2017.02.06 |
NPAPI / PPAPI - VLC ... (0) | 2016.01.14 |
HTML5 video player 720p/1080p 재생여부 (0) | 2016.01.13 |
ssi(Server Side Includes) (0) | 2015.12.09 |