일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- i18n
- LastModified
- cross parameter
- 스프링
- 지수반등
- Kotlin
- brotli
- 알게뭐냐
- HTTP
- 개미수열
- cache-control
- 지뢰찾기
- Spring
- 알고리즘
- 워드프레스
- jsr380
- 코드스피츠
- 랜선아미안해
- etag
- 리얼월드HTTP
- kotliln
- 클래스레벨밸리데이션
- 이렇게살아야되나자괴감이
- jsr303
- 브로틀리
- Today
- Total
목록Language (80)
취미개발 블로그와 마음수양
nircmd라는 녀석이 있습니다. 윈도우 콘솔 명령어로 모니터를 끈다던가 하는 식으로 콘솔 명령어를 잔뜩 지원해주는 녀석입니다. 콘솔창에서 "nircmd.exe monitor off" 하면 모니터가 꺼지고 그러죠... 그리고 뭐 다들 아시는 node.js 이 두녀석을 조합해서 달랑 15줄을 코딩했습니다! --------------------------------------------------------------------var http = require('http'), exec = require('child_process').exec; http.createServer(function (req, res) {res.writeHead(200, {'Content-Type': 'text/plain'}); sw..
app.get('/messages', function (request, response) { response.header("Access-Control-Allow-Origin", "*"); response.header("Access-Control-Allow-Headers", "X-Requested-With"); response.send(messages);}); 이런식으로 요청 설정을 주면 된다. * 에서 일부 도메인만 지정할 수 있다
여기서 LOGINLEFT가 원하는 함수다.해당 태그에 인라인 액션을주면 된다~ onKeyPress="if (event.keyCode==13){ loginLeft();event.returnValue=false}"
Click! 참고하세요. 중요한건 obj.scrollTop = obj.scrollHeight; 이 부분입니다. phpschoo 퍼옴.
address_ip 가 일단 변수라고 치면. String array_data[]; array_data = address_ip.split("\\."); // split 함수사용.. address_ip = array_data[0] + ".♡." + array_data[2] +"." + array_data[3];
하도 잘 바뀌어서..;; 날짜를 적었다.음..암튼.. //add module //add module var http = require('http'); var express = require('express'); var bodyParser = require('body-parser'); var multiparty = require('connect-multiparty'); var mysql = require('mysql'); var router = express.Router(); //create Server var app = express(); app.use(multiparty()); app.use(bodyParser()); app.use(router); app.use(express.static('public..
var multiparty = require('connect-multiparty'); var app = express(); app.use(multiparty()); router 를 app.use하기 전에 다음과 같이 해보자. ....이거때문에 2~3시간 삽질한거..생각하면 ㅡ3ㅡ... http://rintiantta.blog.me/memo/40211421980?from=memoPostView 앞으로는 하나의 블로그에서만 정보를 얻지말고 버그 발생시 1. 다양한 경로에서 정보 습득 2. 철저한 유닛테스트!! 잊지말자 !!
//add module var http = require('http'); var express = require('express'); //create Web Server var app = express(); app.use(function (request, response, next) { console.log('first'); next(); }); app.use(function (request, response, next) { console.log('second'); next(); }); app.use(function (request, response) { response.send('Hello Middelware'); }) //Execute Web Server http.createServer(app).li..
//네이버에서 제공하는 이미지와 위의 사이즈를 이용하여 아이콘 생성 var markerPoint = new nhn.api.map.LatLng(37.552675, 126.937725); //거구장 좌표 var bigTurtleMarker= new nhn.api.map.Marker(oIcon, {title:'마커:'+markerPoint.toString()}); //위에서 만든 아이콘과 포인트 정보를 이용해 마커 생성 bigTurtleMarker.setPoint(markerPoint); oMap.addOverlay(bigTurtleMarker); oMap.setVisible(true);
//고전 이벤트 연결 window.onload = function () { var header = document.getElementById('header'); //connect event header.onclick = function () { alert('clicked'); //이벤트 제거까지 header.onclick = null; } }; //인라인연결, 온클릭시 함수 연결할 수도 있다. click 표준연결 window.onload = function () { var header = document.getElementById('my-header'); //이벤트 연결하는 dom level2 표준 방식 // 익스 전용 dom level2는 addEventListener 가 아니라 //attachEven..